]> git.mxchange.org Git - friendica-addons.git/blobdiff - notifyall/notifyall.php
[saml] Replace $_SESSION with DI::session()
[friendica-addons.git] / notifyall / notifyall.php
index 6519a2431800fc50b5702b7cf435d60aee976c3a..270557c4bec24748f72af292d0bf0bd23c21f82e 100644 (file)
@@ -8,26 +8,21 @@
  * Author: Rabuzarus <https://friendica.kommune4.de/profile/rabuzarus> (Port to Friendica)
  */
 
+use Friendica\Addon\notifyall\NotifyAllEmail;
 use Friendica\App;
-use Friendica\Content\Text\BBCode;
+use Friendica\Database\DBA;
 use Friendica\Core\Logger;
 use Friendica\Core\Renderer;
 use Friendica\DI;
-use Friendica\Util\Emailer;
-
-function notifyall_install()
-{
-       Logger::log("installed notifyall");
-}
-
-function notifyall_uninstall()
-{
-       Logger::log("removed notifyall");
-}
 
+/**
+ * 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.
+ */
 function notifyall_module() {}
 
-function notifyall_addon_admin(App $a, &$o)
+function notifyall_addon_admin(App $a, string &$o)
 {
        $o = '<div></div>&nbsp;&nbsp;&nbsp;&nbsp;<a href="' . DI::baseUrl()->get() . '/notifyall">' . DI::l10n()->t('Send email to all members') . '</a></br/>';
 }
@@ -35,7 +30,7 @@ function notifyall_addon_admin(App $a, &$o)
 
 function notifyall_post(App $a)
 {
-       if(!is_site_admin()) {
+       if (!$a->isSiteAdmin()) {
                return;
        }
 
@@ -45,27 +40,6 @@ function notifyall_post(App $a)
                return;
        }
 
-       $sitename = DI::config()->get('config', 'sitename');
-
-       if (empty(DI::config()->get('config', 'admin_name'))) {
-               $sender_name = '"' . DI::l10n()->t('%s Administrator', $sitename) . '"';
-       } else {
-               $sender_name = '"' . DI::l10n()->t('%1$s, %2$s Administrator', DI::config()->get('config', 'admin_name'), $sitename) . '"';
-       }
-
-       if (!DI::config()->get('config', 'sender_email')) {
-               $sender_email = 'noreply@' . DI::baseUrl()->getHostname();
-       } else {
-               $sender_email = DI::config()->get('config', 'sender_email');
-       }
-
-       $subject = $_REQUEST['subject'];
-
-
-       $textversion = strip_tags(html_entity_decode(BBCode::convert(stripslashes(str_replace(["\\r", "\\n"], ["", "\n"], $text))), ENT_QUOTES, 'UTF-8'));
-
-       $htmlversion = BBCode::convert(stripslashes(str_replace(["\\r", "\\n"], ["", "<br />\n"], $text)));
-
        // 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
        if (intval($_REQUEST['test'])) {
@@ -74,33 +48,27 @@ function notifyall_post(App $a)
        }
        $sql_extra = ((intval($_REQUEST['test'])) ? sprintf(" AND `email` in ( %s )", $email) : '');
 
-       $recips = q("SELECT DISTINCT `email` FROM `user` WHERE `verified` AND NOT `account_removed` AND NOT `account_expired` $sql_extra");
+       $recipients = DBA::p("SELECT DISTINCT `email` FROM `user` WHERE `verified` AND NOT `account_removed` AND NOT `account_expired` $sql_extra");
 
-       if (! $recips) {
-               notice(DI::l10n()->t('No recipients found.') . EOL);
+       if (! $recipients) {
+               DI::sysmsg()->addNotice(DI::l10n()->t('No recipients found.'));
                return;
        }
 
-       foreach ($recips as $recip) {
-               Emailer::send([
-                       'fromName'             => $sender_name,
-                       'fromEmail'            => $sender_email,
-                       'replyTo'              => $sender_email,
-                       'toEmail'              => $recip['email'],
-                       'messageSubject'       => $subject,
-                       'htmlVersion'          => $htmlversion,
-                       'textVersion'          => $textversion
-               ]);
+       $notifyEmail = new NotifyAllEmail(DI::l10n(), DI::config(), DI::baseUrl(), $text);
+
+       foreach ($recipients as $recipient) {
+               DI::emailer()->send($notifyEmail->withRecipient($recipient['email']));
        }
 
-       notice(DI::l10n()->t('Emails sent'));
+       DI::sysmsg()->addInfo(DI::l10n()->t('Emails sent'));
        DI::baseUrl()->redirect('admin');
 }
 
-function notifyall_content(&$a)
+function notifyall_content(App $a)
 {
-       if (! is_site_admin()) {
-               return;
+       if (!$a->isSiteAdmin()) {
+               return '';
        }
 
        $title = DI::l10n()->t('Send email to all members of this Friendica instance.');