Add option to send email to --all users on sendemail.php script

This commit is contained in:
Diogo Cordeiro 2018-08-23 23:48:38 +01:00
parent b3c3af1ef6
commit 45479c90a3
1 changed files with 42 additions and 21 deletions

View File

@ -1,10 +1,9 @@
#!/usr/bin/env php #!/usr/bin/env php
<?php <?php
/* /**
* StatusNet - a distributed open-source microblogging tool * GNU social - a federating social network
* Copyright (C) 2008, 2009, StatusNet, Inc.
* *
* This program is free software: you can redistribute it and/or modify * LICENCE: This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by * it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or * the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version. * (at your option) any later version.
@ -16,18 +15,25 @@
* *
* You should have received a copy of the GNU Affero General Public License * You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @category Plugin
* @package GNUsocial
* @copyright 2008 Free Software Foundation http://fsf.org
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link https://www.gnu.org/software/social/
*/ */
define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); define('INSTALLDIR', realpath(dirname(__DIR__)));
$shortoptions = 'i:n:'; $shortoptions = 'i:n:a:';
$longoptions = array('id=', 'nickname=', 'subject='); $longoptions = ['id=', 'nickname=', 'subject=', 'all='];
$helptext = <<<END_OF_USEREMAIL_HELP $helptext = <<<END_OF_USEREMAIL_HELP
sendemail.php [options] < <message body> sendemail.php [options] < <message body>
Sends given email text to user. Sends given email text to user.
-i --id id of the user to query -i --id id of the user to query
-a --all send to all users
-n --nickname nickname of the user to query -n --nickname nickname of the user to query
--subject mail subject line (required) --subject mail subject line (required)
@ -35,28 +41,29 @@ END_OF_USEREMAIL_HELP;
require_once INSTALLDIR.'/scripts/commandline.inc'; require_once INSTALLDIR.'/scripts/commandline.inc';
if (have_option('i', 'id')) { $all = have_option('a', 'all');
if ($all) {
$user = new User();
$user->find();
} else if (have_option('i', 'id')) {
$id = get_option_value('i', 'id'); $id = get_option_value('i', 'id');
$user = User::getKV('id', $id); $user = User::getKV('id', $id);
if (empty($user)) { if (empty($user)) {
print "Can't find user with ID $id\n"; print "Can't find user with ID $id\n";
exit(1); exit(1);
} }
unset ($id);
} else if (have_option('n', 'nickname')) { } else if (have_option('n', 'nickname')) {
$nickname = get_option_value('n', 'nickname'); $nickname = get_option_value('n', 'nickname');
$user = User::getKV('nickname', $nickname); $user = User::getKV('nickname', $nickname);
if (empty($user)) { if (empty($user)) {
print "Can't find user with nickname '$nickname'\n"; print "Can't find user with nickname '$nickname'.\n";
exit(1); exit(1);
} }
unset($nickname);
} else { } else {
print "You must provide a user by --id or --nickname\n"; print "You must provide a user by --id, --nickname or just send something to --all\n";
exit(1);
}
if (empty($user->email)) {
// @fixme unconfirmed address?
print "No email registered for user '$user->nickname'\n";
exit(1); exit(1);
} }
@ -72,11 +79,25 @@ if (posix_isatty(STDIN)) {
} }
$body = file_get_contents('php://stdin'); $body = file_get_contents('php://stdin');
print "Sending to $user->email..."; if ($all) {
if (mail_to_user($user, $subject, $body)) { while ($user->fetch()) {
print " done\n"; _send($user, $subject, $body);
}
} else { } else {
print " failed.\n"; _send($user, $subject, $body);
exit(1);
} }
function _send($user, $subject, $body) {
if (empty($user->email)) {
// @fixme unconfirmed address?
print "No email registered for user '$user->nickname'.\n";
return;
}
print "Sending to $user->email... ";
if (mail_to_user($user, $subject, $body)) {
print "done.\n";
} else {
print "failed.\n";
return;
}
}