1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- #!/usr/bin/env php
- <?php
- define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
- $shortoptions = 'e::ay';
- $longoptions = array('email=', 'all', 'yes');
- $self = basename($_SERVER['PHP_SELF']);
- $helptext = <<<END_OF_HELP
- {$self} [options]
- resends confirmation email either for a specific email (if found) or for
- all lingering confirmations.
- NOTE: You probably want to do something like this to your database first so
- only relatively fresh accounts get resent this:
- DELETE FROM confirm_address WHERE modified < DATE_SUB(NOW(), INTERVAL 1 month);
- Options:
- -e --email e-mail address to send for
- -a --all send for all emails in confirm_address table
- -y --yes skip interactive verification
- END_OF_HELP;
- require_once INSTALLDIR.'/scripts/commandline.inc';
- $all = false;
- $ca = null;
- if (have_option('e', 'email')) {
- $email = get_option_value('e', 'email');
- try {
- $ca = Confirm_address::getByAddress($email, 'email');
- } catch (NoResultException $e) {
- print sprintf("Can't find %s address %s in %s table.\n", $e->obj->address_type, $e->obj->address, $e->obj->tableName());
- exit(1);
- }
- } elseif (have_option('a', 'all')) {
- $all = true;
- $ca = new Confirm_address();
- $ca->address_type = 'email';
- if (!$ca->find()) {
- print "confirm_address table contains no lingering email addresses\n";
- exit(0);
- }
- } else {
- print "You must provide an email (or --all).\n";
- exit(1);
- }
- if (!have_option('y', 'yes')) {
- print "About to resend confirm_address email to {$ca->N} recipients. Are you sure? [y/N] ";
- $response = fgets(STDIN);
- if (strtolower(trim($response)) != 'y') {
- print "Aborting.\n";
- exit(0);
- }
- }
- function mailConfirmAddress(Confirm_address $ca)
- {
- try {
- $user = User::getByID($ca->user_id);
- $profile = $user->getProfile();
- if ($profile->isSilenced()) {
- $ca->delete();
- return;
- }
- if ($user->email === $ca->address) {
- throw new AlreadyFulfilledException('User already has identical confirmed email address.');
- }
- } catch (AlreadyFulfilledException $e) {
- print "\n User already had verified email: "._ve($ca->address);
- $ca->delete();
- } catch (Exception $e) {
- print "\n Failed to get user with ID "._ve($user_id).', deleting confirm_address entry: '._ve($e->getMessage());
- $ca->delete();
- return;
- }
- mail_confirm_address($user, $ca->code, $user->getNickname(), $ca->address);
- }
- require_once(INSTALLDIR . '/lib/mail.php');
- if (!$all) {
- mailConfirmAddress($ca);
- } else {
- while ($ca->fetch()) {
- mailConfirmAddress($ca);
- }
- }
- print "\nDONE.\n";
|