X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=include%2Fmassmailer.inc.php;h=269a570f5c2893892008d3b6a88df33ece0307d7;hb=39b72c43639bdfa09c391acb42b7d16744e574c3;hp=a9269bd79d8c1539134bfb42d4a5466618c5db84;hpb=fb813fb52d5ab65ca9a5b92b5cb9089523380d79;p=platal.git diff --git a/include/massmailer.inc.php b/include/massmailer.inc.php index a9269bd..269a570 100644 --- a/include/massmailer.inc.php +++ b/include/massmailer.inc.php @@ -165,7 +165,7 @@ abstract class MassMailer if (is_null($hash)) { $hash = XDB::fetchOneCell("SELECT hash FROM {$this->_subscriptionTable} - WHERE user_id = {?}", $user->id()); + WHERE uid = {?}", $user->id()); } if (is_null($hash)) { $hash = $this->createHash(array($user->displayName(), $user->fullName(), @@ -173,7 +173,7 @@ abstract class MassMailer rand(), "X.org rulez")); XDB::execute("UPDATE {$this->_subscriptionTable} as ni SET ni.hash = {?} - WHERE ni.user_id != {?}", + WHERE ni.uid = {?}", $hash, $user->id()); } @@ -192,7 +192,7 @@ abstract class MassMailer global $globals; return "SELECT a.uid FROM {$this->_subscriptionTable} AS ni - INNER JOIN accounts AS a ON (ni.user_id = a.uid) + INNER JOIN accounts AS a ON (ni.uid = a.uid) LEFT JOIN email_options AS eo ON (eo.uid = a.uid) LEFT JOIN emails AS e ON (e.uid = a.uid AND e.flags='active') WHERE ni.last < {?} AND ({$this->subscriptionWhere()}) AND @@ -203,15 +203,18 @@ abstract class MassMailer public function sendToAll() { $this->setSent(); - $query = XDB::format($this->getAllRecipients(), $this->id()) . ' LIMIT 60'; + $query = XDB::format($this->getAllRecipients(), $this->_id) . ' LIMIT 60'; + $emailsCount = 0; + while (true) { $users = User::getBulkUsersWithUIDs(XDB::fetchColumn($query)); if (count($users) == 0) { - return; + return $emailsCount; } foreach ($users as $user) { - $sent[] = XDB::format('user_id = {?}', $user->id()); + $sent[] = XDB::format('uid = {?}', $user->id()); $this->sendTo($user, $hash); + ++$emailsCount; } XDB::execute("UPDATE {$this->_subscriptionTable} SET last = {?} @@ -219,6 +222,7 @@ abstract class MassMailer sleep(60); } + return $emailsCount; } abstract protected function assignData(&$smarty);