Revert to stable version 3.5.4
[friendica-addons.git] / notifyall / notifyall.php
1 <?php
2
3 /**
4  *
5  * Name: Notifyall
6  * Description: Send admin email message to all account holders. <b>-><a href=/notifyall TARGET = "_blank">send now!</a><-</b>
7  * Version: 1.0
8  * Author: Mike Macgirvin (Inital Author of the hubbwall Addon for the Hubzilla Project)
9  * Author: Rabuzarus <https://friendica.kommune4.de/profile/rabuzarus> (Port to Friendica)
10  */
11
12 require_once('include/Emailer.php');
13
14 function notifyall_install() {
15         logger("installed notifyall");
16 }
17
18 function notifyall_uninstall() {
19         logger("removed notifyall");
20 }
21
22 function notifyall_module() {}
23
24 function notifyall_plugin_admin(&$a, &$o) {
25
26         $o = '<div></div>&nbsp;&nbsp;&nbsp;&nbsp;<a href="' . z_root() . '/notifyall">' . t('Send email to all members') . '</a></br/>';
27
28 }
29
30
31 function notifyall_post(&$a) {
32         if(! is_site_admin())
33                 return;
34
35         $text = trim($_REQUEST['text']);
36         if(! $text)
37                 return;
38
39         $sitename = $a->config['sitename'];
40
41         if (!x($a->config['admin_name']))
42                 $sender_name = sprintf(t('%s Administrator'), $sitename);
43         else
44                 $sender_name = sprintf(t('%1$s, %2$s Administrator'), $a->config['admin_name'], $sitename);
45         
46         if (! x($a->config['sender_email']))
47                 $sender_email = 'noreply@' . $a->get_hostname();
48         else
49                 $sender_email = $a->config['sender_email'];
50
51         $subject = $_REQUEST['subject'];
52
53
54         $textversion = strip_tags(html_entity_decode(bbcode(stripslashes(str_replace(array("\\r", "\\n"),array( "", "\n"), $text))),ENT_QUOTES,'UTF-8'));
55
56         $htmlversion = bbcode(stripslashes(str_replace(array("\\r","\\n"), array("","<br />\n"),$text)));
57         
58         // if this is a test, send it only to the admin(s)
59         // admin_email might be a comma separated list, but we need "a@b','c@d','e@f
60         if ( intval($_REQUEST['test'])) {
61                 $email = $a->config['admin_email'];
62                 $email = "'" . str_replace(array(" ",","), array("","','"), $email) . "'";
63         }
64         $sql_extra = ((intval($_REQUEST['test'])) ? sprintf(" AND `email` in ( %s )", $email) : '');
65
66         $recips = q("SELECT DISTINCT `email` FROM `user` WHERE `verified` AND NOT `account_removed` AND NOT `account_expired` $sql_extra");
67
68         if(! $recips) {
69                 notice( t('No recipients found.') . EOL);
70                 return;
71         }
72
73         foreach($recips as $recip) {
74
75
76                 Emailer::send(array(
77                         'fromName'             => $sender_name,
78                         'fromEmail'            => $sender_email,
79                         'replyTo'              => $sender_email,
80                         'toEmail'              => $recip['email'],
81                         'messageSubject'       => $subject,
82                         'htmlVersion'          => $htmlversion,
83                         'textVersion'          => $textversion
84                 ));
85         }
86
87         notice( t('Emails sent'));
88         goaway('admin');
89 }
90
91 function notifyall_content(&$a) {
92         if(! is_site_admin())
93                 return;
94
95         $title = t('Send email to all members of this Friendica instance.');
96
97         $o = replace_macros(get_markup_template('notifyall_form.tpl','addon/notifyall/'),array(
98                 '$title' => $title,
99                 '$text' => htmlspecialchars($_REQUEST['text']),
100                 '$subject' => array('subject',t('Message subject'),$_REQUEST['subject'],''),
101                 '$test' => array('test',t('Test mode (only send to administrator)'), 0,''),
102                 '$submit' => t('Submit')
103         ));
104
105         return $o;
106
107 }