update inboxed flag in fixup inboxes
darcs-hash:20081113220335-84dde-27009ae22f0994709046b6681d3139455a4e9c22.gz
This commit is contained in:
parent
5409bd6a5d
commit
7ac5b61814
|
@ -41,15 +41,25 @@ $cnt = $user->find();
|
|||
|
||||
while ($user->fetch()) {
|
||||
common_log(LOG_INFO, 'Updating inbox for user ' . $user->id);
|
||||
$user->query('BEGIN');
|
||||
$inbox = new Notice_inbox();
|
||||
$result = $inbox->query('INSERT LOW_PRIORITY IGNORE 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');
|
||||
if (!$result) {
|
||||
if (is_null($result) || $result === false) {
|
||||
common_log_db_error($inbox, 'INSERT', __FILE__);
|
||||
continue;
|
||||
}
|
||||
$orig = clone($user);
|
||||
$user->inboxed = 1;
|
||||
$result = $user->update($orig);
|
||||
if (!$result) {
|
||||
common_log_db_error($user, 'UPDATE', __FILE__);
|
||||
continue;
|
||||
}
|
||||
$user->query('COMMIT');
|
||||
$inbox->free();
|
||||
unset($inbox);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user