2010-01-27 18:08:24 +00:00
|
|
|
#!/usr/bin/env php
|
|
|
|
<?php
|
2018-08-23 23:48:38 +01:00
|
|
|
/**
|
|
|
|
* GNU social - a federating social network
|
2010-01-27 18:08:24 +00:00
|
|
|
*
|
2018-08-23 23:48:38 +01:00
|
|
|
* LICENCE: This program is free software: you can redistribute it and/or modify
|
2010-01-27 18:08:24 +00:00
|
|
|
* 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
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* 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/>.
|
2018-08-23 23:48:38 +01:00
|
|
|
*
|
|
|
|
* @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/
|
2010-01-27 18:08:24 +00:00
|
|
|
*/
|
|
|
|
|
2019-07-15 04:10:29 +01:00
|
|
|
define('INSTALLDIR', dirname(__DIR__));
|
|
|
|
define('PUBLICDIR', INSTALLDIR . DIRECTORY_SEPARATOR . 'public');
|
2010-01-27 18:08:24 +00:00
|
|
|
|
2018-08-23 23:48:38 +01:00
|
|
|
$shortoptions = 'i:n:a:';
|
|
|
|
$longoptions = ['id=', 'nickname=', 'subject=', 'all='];
|
2010-01-27 18:08:24 +00:00
|
|
|
|
|
|
|
$helptext = <<<END_OF_USEREMAIL_HELP
|
|
|
|
sendemail.php [options] < <message body>
|
|
|
|
Sends given email text to user.
|
|
|
|
|
|
|
|
-i --id id of the user to query
|
2018-08-23 23:48:38 +01:00
|
|
|
-a --all send to all users
|
2010-01-27 18:08:24 +00:00
|
|
|
-n --nickname nickname of the user to query
|
|
|
|
--subject mail subject line (required)
|
|
|
|
|
|
|
|
END_OF_USEREMAIL_HELP;
|
|
|
|
|
|
|
|
require_once INSTALLDIR.'/scripts/commandline.inc';
|
|
|
|
|
2018-08-23 23:48:38 +01:00
|
|
|
$all = have_option('a', 'all');
|
|
|
|
|
|
|
|
if ($all) {
|
|
|
|
$user = new User();
|
|
|
|
$user->find();
|
|
|
|
} else if (have_option('i', 'id')) {
|
2010-01-27 18:08:24 +00:00
|
|
|
$id = get_option_value('i', 'id');
|
2013-08-18 12:04:58 +01:00
|
|
|
$user = User::getKV('id', $id);
|
2010-01-27 18:08:24 +00:00
|
|
|
if (empty($user)) {
|
|
|
|
print "Can't find user with ID $id\n";
|
|
|
|
exit(1);
|
|
|
|
}
|
2018-08-23 23:48:38 +01:00
|
|
|
unset ($id);
|
2010-01-27 18:08:24 +00:00
|
|
|
} else if (have_option('n', 'nickname')) {
|
|
|
|
$nickname = get_option_value('n', 'nickname');
|
2013-08-18 12:04:58 +01:00
|
|
|
$user = User::getKV('nickname', $nickname);
|
2010-01-27 18:08:24 +00:00
|
|
|
if (empty($user)) {
|
2018-08-23 23:48:38 +01:00
|
|
|
print "Can't find user with nickname '$nickname'.\n";
|
2010-01-27 18:08:24 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
2018-08-23 23:48:38 +01:00
|
|
|
unset($nickname);
|
2010-01-27 18:08:24 +00:00
|
|
|
} else {
|
2018-08-23 23:48:38 +01:00
|
|
|
print "You must provide a user by --id, --nickname or just send something to --all\n";
|
2010-01-27 18:08:24 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!have_option('subject')) {
|
|
|
|
echo "You must provide a subject line for the mail in --subject='...' param.\n";
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
$subject = get_option_value('subject');
|
|
|
|
|
|
|
|
if (posix_isatty(STDIN)) {
|
|
|
|
print "You must provide message input on stdin!\n";
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
$body = file_get_contents('php://stdin');
|
|
|
|
|
2018-08-23 23:48:38 +01:00
|
|
|
if ($all) {
|
|
|
|
while ($user->fetch()) {
|
|
|
|
_send($user, $subject, $body);
|
|
|
|
}
|
2010-01-27 18:08:24 +00:00
|
|
|
} else {
|
2018-08-23 23:48:38 +01:00
|
|
|
_send($user, $subject, $body);
|
2010-01-27 18:08:24 +00:00
|
|
|
}
|
|
|
|
|
2018-08-23 23:48:38 +01:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|