#!/usr/bin/env php . */ define('INSTALLDIR', realpath(dirname(__FILE__) . '/../../..')); $shortoptions = 't:e:auo'; $longoptions = array('type=', 'email=', 'all', 'universe', 'onetime'); $helptext = << array( 'type' => 'register', 'className' => 'Confirm_address', 'utransport' => 'uregrem' ), // invitation confirmation reminder 'invite' => array( 'type' => 'invite', 'className' => 'Invitation', 'utransport' => 'uinvrem' ) // ... add more here ); $type = null; $opts = array(); // special options like "onetime" if (have_option('t', 'type')) { $type = trim(get_option_value('t', 'type')); if (!in_array($type, array_keys($types)) && $type !== 'all') { print _m("Unknown reminder type: {$type}.\n"); exit(1); } } else { show_help(); exit(1); } if (have_option('o', 'onetime')) { $opts['onetime'] = true; if (!$quiet) { print "Special one-time reminder mode.\n"; } } $reminders = array(); switch($type) { case 'register': $reminders[] = $types['register']; break; case 'invite': $reminders[] = $types['invite']; break; case 'all': $reminders = $types; break; } if (have_option('u', 'universe')) { $sn = new Status_network(); try { if ($sn->find()) { while ($sn->fetch()) { try { $server = $sn->getServerName(); StatusNet::init($server); // Different queue manager, maybe! $qm = QueueManager::get(); foreach ($reminders as $reminder) { extract($reminder); $qm->enqueue(array($type, $opts), 'siterem'); if (!$quiet) { print "Sent pending {$type} reminders for {$server}.\n"; } } } catch (Exception $e) { // keep going common_log(LOG_ERR, "Couldn't init {$server}.\n", __FILE__); if (!$quiet) { print "Couldn't init {$server}.\n"; } continue; } } if (!$quiet) { print "Done! Reminders sent to all unconfirmed addresses in the known universe.\n"; } } } catch (Exception $e) { if (!$quiet) { print $e->getMessage() . "\n"; } common_log(LOG_ERR, $e->getMessage(), __FILE__); exit(1); } } else { $qm = QueueManager::get(); try { // enqueue reminder for specific email address or all unconfirmed addresses if (have_option('e', 'email')) { $address = trim(get_option_value('e', 'email')); foreach ($reminders as $reminder) { // real bad voodoo here extract($reminder); $confirm = new $className; $confirm->address = $address; $result = $confirm->find(true); if (empty($result)) { throw new Exception("No confirmation code found for {$address}."); } $qm->enqueue(array($confirm, $opts), $utransport); if (!$quiet) { print "Sent all pending {$type} reminder to {$address}.\n"; } } } else if (have_option('a', 'all')) { foreach ($reminders as $reminder) { extract($reminder); $qm->enqueue(array($type, $opts), 'siterem'); if (!$quiet) { print "Sent pending {$type} reminders to all unconfirmed addresses on the site.\n"; } } } else { show_help(); exit(1); } } catch (Exception $e) { if (!$quiet) { print $e->getMessage() . "\n"; } common_log(LOG_ERR, $e->getMessage(), __FILE__); exit(1); } }