2016-08-13 13:42:32 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Name: Notifyall
|
|
|
|
* Description: Send admin email message to all account holders. <b>-><a href=/notifyall TARGET = "_blank">send now!</a><-</b>
|
|
|
|
* Version: 1.0
|
|
|
|
* Author: Mike Macgirvin (Inital Author of the hubbwall Addon for the Hubzilla Project)
|
|
|
|
* Author: Rabuzarus <https://friendica.kommune4.de/profile/rabuzarus> (Port to Friendica)
|
|
|
|
*/
|
2018-02-15 02:43:40 +00:00
|
|
|
|
2020-01-26 22:47:15 +00:00
|
|
|
use Friendica\Addon\notifyall\NotifyAllEmail;
|
2018-07-10 12:38:36 +00:00
|
|
|
use Friendica\App;
|
2020-01-26 19:23:58 +00:00
|
|
|
use Friendica\Database\DBA;
|
2018-10-29 23:40:18 +00:00
|
|
|
use Friendica\Core\Logger;
|
2018-10-31 14:55:15 +00:00
|
|
|
use Friendica\Core\Renderer;
|
2019-12-15 23:28:30 +00:00
|
|
|
use Friendica\DI;
|
2016-08-13 13:42:32 +00:00
|
|
|
|
2022-06-24 21:27:58 +00:00
|
|
|
/**
|
|
|
|
* This is a statement rather than an actual function definition. The simple
|
|
|
|
* existence of this method is checked to figure out if the addon offers a
|
|
|
|
* module.
|
|
|
|
*/
|
2016-08-13 13:42:32 +00:00
|
|
|
function notifyall_module() {}
|
|
|
|
|
2023-01-14 02:16:09 +00:00
|
|
|
function notifyall_addon_admin(string &$o)
|
2018-05-13 12:22:45 +00:00
|
|
|
{
|
2023-02-18 19:57:09 +00:00
|
|
|
$o = '<div></div> <a href="' . DI::baseUrl() . '/notifyall">' . DI::l10n()->t('Send email to all members') . '</a></br/>';
|
2016-08-13 13:42:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-01-14 02:16:09 +00:00
|
|
|
function notifyall_post()
|
2018-05-13 12:22:45 +00:00
|
|
|
{
|
2023-01-14 02:16:09 +00:00
|
|
|
if (!DI::userSession()->isSiteAdmin()) {
|
2016-08-13 13:42:32 +00:00
|
|
|
return;
|
2018-05-13 12:22:45 +00:00
|
|
|
}
|
2016-08-13 13:42:32 +00:00
|
|
|
|
|
|
|
$text = trim($_REQUEST['text']);
|
2018-07-10 12:38:36 +00:00
|
|
|
|
2018-05-14 05:02:31 +00:00
|
|
|
if(! $text) {
|
2016-08-13 13:42:32 +00:00
|
|
|
return;
|
2018-05-13 12:22:45 +00:00
|
|
|
}
|
2016-08-13 13:42:32 +00:00
|
|
|
|
2022-11-18 17:00:03 +00:00
|
|
|
$condition = ['account_removed' => false, 'account_expired' => false];
|
|
|
|
|
2016-09-06 13:00:07 +00:00
|
|
|
// if this is a test, send it only to the admin(s)
|
|
|
|
// admin_email might be a comma separated list, but we need "a@b','c@d','e@f
|
2018-05-14 05:02:31 +00:00
|
|
|
if (intval($_REQUEST['test'])) {
|
2022-11-18 17:00:03 +00:00
|
|
|
$adminEmails = \Friendica\Model\User::getAdminListForEmailing(['email']);
|
|
|
|
|
|
|
|
$condition['email'] = array_column($adminEmails, 'email');
|
2016-09-06 13:00:07 +00:00
|
|
|
}
|
2016-08-13 13:42:32 +00:00
|
|
|
|
2023-01-03 13:01:45 +00:00
|
|
|
$recipients = DBA::p("SELECT DISTINCT `email` FROM `user`" . DBA::buildCondition($condition), $condition);
|
2016-08-13 13:42:32 +00:00
|
|
|
|
2020-01-26 19:23:58 +00:00
|
|
|
if (! $recipients) {
|
2022-10-17 21:00:03 +00:00
|
|
|
DI::sysmsg()->addNotice(DI::l10n()->t('No recipients found.'));
|
2016-08-13 13:42:32 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-01-26 22:47:15 +00:00
|
|
|
$notifyEmail = new NotifyAllEmail(DI::l10n(), DI::config(), DI::baseUrl(), $text);
|
2020-01-26 19:23:58 +00:00
|
|
|
|
|
|
|
foreach ($recipients as $recipient) {
|
|
|
|
DI::emailer()->send($notifyEmail->withRecipient($recipient['email']));
|
2016-08-13 13:42:32 +00:00
|
|
|
}
|
|
|
|
|
2022-10-17 20:17:25 +00:00
|
|
|
DI::sysmsg()->addInfo(DI::l10n()->t('Emails sent'));
|
2019-12-15 23:28:30 +00:00
|
|
|
DI::baseUrl()->redirect('admin');
|
2016-08-13 13:42:32 +00:00
|
|
|
}
|
|
|
|
|
2023-01-14 02:16:09 +00:00
|
|
|
function notifyall_content()
|
2018-01-22 19:03:11 +00:00
|
|
|
{
|
2023-01-14 02:16:09 +00:00
|
|
|
if (!DI::userSession()->isSiteAdmin()) {
|
2020-01-26 19:23:58 +00:00
|
|
|
return '';
|
2018-01-22 19:03:11 +00:00
|
|
|
}
|
2016-08-13 13:42:32 +00:00
|
|
|
|
2020-01-18 19:52:33 +00:00
|
|
|
$title = DI::l10n()->t('Send email to all members of this Friendica instance.');
|
2016-08-13 13:42:32 +00:00
|
|
|
|
2018-10-31 14:55:15 +00:00
|
|
|
$o = Renderer::replaceMacros(Renderer::getMarkupTemplate('notifyall_form.tpl', 'addon/notifyall/'), [
|
2016-08-13 13:42:32 +00:00
|
|
|
'$title' => $title,
|
2019-10-13 16:07:27 +00:00
|
|
|
'$text' => htmlspecialchars($_REQUEST['text'] ?? ''),
|
2020-01-18 19:52:33 +00:00
|
|
|
'$subject' => ['subject', DI::l10n()->t('Message subject'), $_REQUEST['subject'] ?? '',''],
|
|
|
|
'$test' => ['test',DI::l10n()->t('Test mode (only send to administrator)'), 0,''],
|
|
|
|
'$submit' => DI::l10n()->t('Submit')
|
2018-01-15 13:15:33 +00:00
|
|
|
]);
|
2016-08-13 13:42:32 +00:00
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|