summaryrefslogtreecommitdiff
path: root/scripts/fixup_inboxes.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-11-14 02:45:11 -0500
committerEvan Prodromou <evan@prodromou.name>2008-11-14 02:45:11 -0500
commit761d4eeaaf52ad12582b3406e11fa7ec37e4530e (patch)
tree4fb8e1289e8fabd51e850dd07d8dc1fd8392d31c /scripts/fixup_inboxes.php
parent6b6c966369f180c43a1044eb1f445a367493cda8 (diff)
better code for only inserting inboxes that don't already exist
darcs-hash:20081114074511-84dde-af2b2e5deee20bdf1ea72559411716cb756d2866.gz
Diffstat (limited to 'scripts/fixup_inboxes.php')
-rwxr-xr-xscripts/fixup_inboxes.php13
1 files changed, 5 insertions, 8 deletions
diff --git a/scripts/fixup_inboxes.php b/scripts/fixup_inboxes.php
index 79cca5c7c..7bee347a4 100755
--- a/scripts/fixup_inboxes.php
+++ b/scripts/fixup_inboxes.php
@@ -50,18 +50,15 @@ $cache = common_memcache();
while ($user->fetch()) {
common_log(LOG_INFO, 'Updating inbox for user ' . $user->id);
$user->query('BEGIN');
- $inbox = new Notice_inbox();
- $inbox->user_id = $user->id;
- $result = $inbox->delete();
- if (is_null($result) || $result === false) {
- common_log_db_error($inbox, 'DELETE', __FILE__);
- continue;
- }
$result = $inbox->query('INSERT LOW_PRIORITY INTO notice_inbox (user_id, notice_id, created) ' .
'SELECT ' . $user->id . ', notice.id, notice.created ' .
'FROM subscription JOIN notice ON subscription.subscribed = notice.profile_id ' .
'WHERE subscription.subscriber = ' . $user->id . ' ' .
- 'AND notice.created >= subscription.created');
+ 'AND notice.created >= subscription.created ' .
+ 'AND NOT EXISTS (SELECT user_id, notice_id ' .
+ 'FROM notice_inbox ' .
+ 'WHERE user_id = ' . $user->id . ' ' .
+ 'AND notice_id = notice.id)');
if (is_null($result) || $result === false) {
common_log_db_error($inbox, 'INSERT', __FILE__);
continue;