]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/mail.php
change sms broadcast to use a join
[quix0rs-gnu-social.git] / lib / mail.php
1 <?php
2 /*
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2008, Controlez-Vous, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 if (!defined('LACONICA')) { exit(1); }
21
22 require_once('Mail.php');
23
24 function mail_backend() {
25         static $backend = NULL;
26
27         if (!$backend) {
28                 global $config;
29                 $backend = Mail::factory($config['mail']['backend'],
30                                                                  ($config['mail']['params']) ? $config['mail']['params'] : array());
31                 if (PEAR::isError($backend)) {
32                         common_server_error($backend->getMessage(), 500);
33                 }
34         }
35         return $backend;
36 }
37
38 # XXX: use Mail_Queue... maybe
39
40 function mail_send($recipients, $headers, $body) {
41         $backend = mail_backend();
42         assert($backend); # throws an error if it's bad
43         $sent = $backend->send($recipients, $headers, $body);
44         if (PEAR::isError($sent)) {
45                 common_log(LOG_ERR, 'Email error: ' . $sent->getMessage());
46                 return false;
47         }
48         return true;
49 }
50
51 function mail_domain() {
52         $maildomain = common_config('mail', 'domain');
53         if (!$maildomain) {
54                 $maildomain = common_config('site', 'server');
55         }
56         return $maildomain;
57 }
58
59 function mail_notify_from() {
60         $notifyfrom = common_config('mail', 'notifyfrom');
61         if (!$notifyfrom) {
62                 $domain = mail_domain();
63                 $notifyfrom = common_config('site', 'name') .' <noreply@'.$domain.'>';
64         }
65         return $notifyfrom;
66 }
67
68 function mail_to_user(&$user, $subject, $body, $address=NULL) {
69         if (!$address) {
70                 $address = $user->email;
71         }
72
73         $recipients = $address;
74         $profile = $user->getProfile();
75
76         $headers['From'] = mail_notify_from();
77         $headers['To'] = $profile->getBestName() . ' <' . $address . '>';
78         $headers['Subject'] = $subject;
79
80         return mail_send($recipients, $headers, $body);
81 }
82
83 # For confirming a Jabber address
84 # XXX: change to use mail_to_user() above
85
86 function mail_confirm_address($code, $nickname, $address) {
87         $recipients = $address;
88         $headers['From'] = mail_notify_from();
89         $headers['To'] = $nickname . ' <' . $address . '>';
90         $headers['Subject'] = _('Email address confirmation');
91
92         $body = "Hey, $nickname.";
93         $body .= "\n\n";
94         $body .= 'Someone just entered this email address on ' . common_config('site', 'name') . '.';
95         $body .= "\n\n";
96         $body .= 'If it was you, and you want to confirm your entry, use the URL below:';
97         $body .= "\n\n";
98         $body .= "\t".common_local_url('confirmaddress',
99                                                                    array('code' => $code));
100         $body .= "\n\n";
101         $body .= 'If not, just ignore this message.';
102         $body .= "\n\n";
103         $body .= 'Thanks for your time, ';
104         $body .= "\n";
105         $body .= common_config('site', 'name');
106         $body .= "\n";
107
108         mail_send($recipients, $headers, $body);
109 }
110
111 function mail_subscribe_notify($listenee, $listener) {
112         $other = $listener->getProfile();
113         mail_subscribe_notify_profile($listenee, $other);
114 }
115
116 function mail_subscribe_notify_profile($listenee, $other) {
117         if ($listenee->email && $listenee->emailnotifysub) {
118                 $profile = $listenee->getProfile();
119                 $name = $profile->getBestName();
120                 $long_name = ($other->fullname) ? ($other->fullname . ' (' . $other->nickname . ')') : $other->nickname;
121                 $recipients = $listenee->email;
122                 $headers['From'] = mail_notify_from();
123                 $headers['To'] = $name . ' <' . $listenee->email . '>';
124                 $headers['Subject'] = sprintf(_('%1$s is now listening to your notices on %2$s.'), $other->getBestName(),
125                                                                           common_config('site', 'name'));
126                 $body  = sprintf(_('%1$s is now listening to your notices on %2$s.'."\n\n".
127                                                    "\t".'%3$s'."\n\n".
128                                                    'Faithfully yours,'."\n".'%4$s.'."\n"),
129                                                  $long_name,
130                                                  common_config('site', 'name'),
131                                                  $other->profileurl,
132                                                  common_config('site', 'name'));
133                 mail_send($recipients, $headers, $body);
134         }
135 }
136
137 function mail_new_incoming_notify($user) {
138
139         $profile = $user->getProfile();
140         $name = $profile->getBestName();
141
142         $headers['From'] = $user->incomingemail;
143         $headers['To'] = $name . ' <' . $user->email . '>';
144         $headers['Subject'] = sprintf(_('New email address for posting to %s'),
145                                                                   common_config('site', 'name'));
146
147         $body  = sprintf(_("You have a new posting address on %1\$s.\n\n".
148                                            "Send email to %2\$s to post new messages.\n\n".
149                                            "More email instructions at %3\$s.\n\n".
150                                            "Faithfully yours,\n%4\$s"),
151                                          common_config('site', 'name'),
152                                          $user->incomingemail,
153                                          common_local_url('doc', array('title' => 'email')),
154                                          common_config('site', 'name'));
155
156         mail_send($user->email, $headers, $body);
157 }
158
159 function mail_new_incoming_address() {
160         $prefix = common_good_rand(8);
161         $suffix = mail_domain();
162         return $prefix . '@' . $suffix;
163 }
164
165 function mail_broadcast_notice_sms($notice) {
166
167     # Now, get users subscribed to this profile
168
169         $user = new User();
170
171         $user->query('SELECT nickname, smsemail, incomingemail ' .
172                                  'FROM user JOIN subscription ' .
173                                  'ON user.id = subscription.subscriber ' .
174                                  'WHERE subscription.subscribed = ' . $notice->profile_id . ' ' .
175                                  'AND user.smsemail IS NOT NULL ' .
176                                  'AND user.smsnotify = 1');
177
178         while ($user->fetch()) {
179                 common_log(LOG_INFO,
180                                    'Sending notice ' . $notice->id . ' to ' . $user->smsemail,
181                                    __FILE__);
182                 $success = mail_send_sms_notice_address($notice, $user->smsemail, $user->incomingemail);
183                 if (!$success) {
184                         # XXX: Not sure, but I think that's the right thing to do
185                         common_log(LOG_WARNING,
186                                            'Sending notice ' . $notice->id . ' to ' . $user->smsemail . ' FAILED, cancelling.',
187                                            __FILE__);
188                         return false;
189                 }
190         }
191
192         return true;
193 }
194
195 function mail_send_sms_notice($notice, $user) {
196         return mail_send_sms_notice_address($notice, $user->smsemail, $user->incomingemail);
197 }
198
199 function mail_send_sms_notice_address($notice, $smsemail, $incomingemail) {
200
201         $to = $nickname . ' <' . $smsemail . '>';
202         $other = $notice->getProfile();
203
204         common_log(LOG_INFO, "Sending notice " . $notice->id . " to " . $smsemail, __FILE__);
205
206         $headers = array();
207         $headers['From'] = (isset($incomingemail)) ? $incomingemail : mail_notify_from();
208         $headers['To'] = $to;
209         $headers['Subject'] = sprintf(_('%s status'),
210                                                                   $other->getBestName());
211         $body = $notice->content;
212
213         return mail_send($smsemail, $headers, $body);
214 }
215
216 function mail_confirm_sms($code, $nickname, $address) {
217
218         $recipients = $address;
219
220         $headers['From'] = mail_notify_from();
221         $headers['To'] = $nickname . ' <' . $address . '>';
222         $headers['Subject'] = _('SMS confirmation');
223
224         $body = "$nickname: confirm you own this phone number with this code:";
225         $body .= "\n\n";
226         $body .= $code;
227         $body .= "\n\n";
228
229         mail_send($recipients, $headers, $body);
230 }