. * * @category Email * @package StatusNet * @author Zach Copley * @copyright 2011 StatusNet, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ if (!defined('STATUSNET')) { exit(1); } /** * Handler for queue items of type 'uinvrem' (user invite reminder) * * @category Email * @package StatusNet * @author Zach Copley * @copyright 2011 StatusNet, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ class UserInviteReminderHandler extends UserReminderHandler { const INVITE_REMINDER = 'invite'; /** * Return transport keyword which identifies items this queue handler * services; must be defined for all subclasses. * * Must be 8 characters or less to fit in the queue_item database. * ex "email", "jabber", "sms", "irc", ... * * @return string */ function transport() { return 'uinvrem'; } /** * Send an invitation reminder. We'll send one after one day, and then * one after three days. * * @todo Abstract this stuff further * * @param Invitation $invitation * @return boolean success value */ function sendNextReminder($invitation) { $invDate = strtotime($invitation->created); $now = strtotime('now'); // Days since first invitation was sent $days = ($now - $invDate) / 86499; // 60*60*24 = 86499 $siteName = common_config('site', 'name'); switch($days) { case ($days > 1 && $days < 2): if (Email_reminder::needsReminder(self::INVITE_REMINDER, $invitation, 1)) { common_log(LOG_INFO, "Sending one day invitation reminder to {$invitation->address}", __FILE__); $subject = _m("Reminder - You have been invited to join {$siteName}!"); return EmailReminderPlugin::sendReminder( self::INVITE_REMINDER, $invitation, $subject, 1); } else { return true; } break; case ($days > 3 && $days < 4): if (Email_reminder::needsReminder(self::INVITE_REMINDER, $invitation, 3)) { common_log(LOG_INFO, "Sending three day invitation reminder to {$invitation->address}", __FILE__); $subject = _m("Final reminder - you have been invited to join {$siteName}!"); return EmailReminderPlugin::sendReminder( self::INVITE_REMINDER, $invitation, $subject, 3 ); } else { return true; } break; } return true; } }