#!/usr/bin/env php . */ define('INSTALLDIR', realpath(dirname(__FILE__) . '/../../..')); $shortoptions = 't:e:au'; $longoptions = array('type=', 'email=', 'all', 'universe'); $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; 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); } $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(); if ($sn->find()) { while ($sn->fetch()) { $server = $sn->getServerName(); StatusNet::init($server); // Different queue manager, maybe! $qm = QueueManager::get(); foreach ($reminders as $reminder) { extract($reminder); $qm->enqueue($type, 'siterem'); if (!$quiet) { print "Sent pending {$type} reminders to all unconfirmed addresses in the known universe.\n"; } } } } } 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($confirm, $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($type, '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); } }