friendica-addons/notifyall/notifyall.php

81 lines
2.3 KiB
PHP
Raw Normal View History

<?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)
*/
use Friendica\Addon\notifyall\NotifyAllEmail;
use Friendica\App;
use Friendica\Database\DBA;
use Friendica\Core\Logger;
use Friendica\Core\Renderer;
use Friendica\DI;
function notifyall_module() {}
function notifyall_addon_admin(App $a, &$o)
{
$o = '<div></div>&nbsp;&nbsp;&nbsp;&nbsp;<a href="' . DI::baseUrl()->get() . '/notifyall">' . DI::l10n()->t('Send email to all members') . '</a></br/>';
}
function notifyall_post(App $a)
{
2018-05-14 07:02:31 +02:00
if(!is_site_admin()) {
return;
}
$text = trim($_REQUEST['text']);
2018-05-14 07:02:31 +02:00
if(! $text) {
return;
}
2016-09-06 15:00:07 +02: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 07:02:31 +02:00
if (intval($_REQUEST['test'])) {
$email = DI::config()->get('config', 'admin_email');
2018-01-15 14:15:33 +01:00
$email = "'" . str_replace([" ",","], ["","','"], $email) . "'";
2016-09-06 15:00:07 +02:00
}
$sql_extra = ((intval($_REQUEST['test'])) ? sprintf(" AND `email` in ( %s )", $email) : '');
$recipients = DBA::p("SELECT DISTINCT `email` FROM `user` WHERE `verified` AND NOT `account_removed` AND NOT `account_expired` $sql_extra");
if (! $recipients) {
notice(DI::l10n()->t('No recipients found.') . EOL);
return;
}
$notifyEmail = new NotifyAllEmail(DI::l10n(), DI::config(), DI::baseUrl(), $text);
foreach ($recipients as $recipient) {
DI::emailer()->send($notifyEmail->withRecipient($recipient['email']));
}
2020-07-23 05:48:52 +02:00
info(DI::l10n()->t('Emails sent'));
DI::baseUrl()->redirect('admin');
}
2018-01-22 20:03:11 +01:00
function notifyall_content(&$a)
{
if (! is_site_admin()) {
return '';
2018-01-22 20:03:11 +01:00
}
$title = DI::l10n()->t('Send email to all members of this Friendica instance.');
$o = Renderer::replaceMacros(Renderer::getMarkupTemplate('notifyall_form.tpl', 'addon/notifyall/'), [
'$title' => $title,
'$text' => htmlspecialchars($_REQUEST['text'] ?? ''),
'$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 14:15:33 +01:00
]);
return $o;
}