]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/mail.php
notify user of remote subscriptions
[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         # XXX: use a join here rather than looping through results
169         
170         $sub = new Subscription();
171         $sub->subscribed = $notice->profile_id;
172         
173         if ($sub->find()) {
174                 while ($sub->fetch()) {
175                         $user = User::staticGet($sub->subscriber);
176                         if ($user && $user->smsemail && $user->smsnotify) {
177                                 common_log(LOG_INFO,
178                                                    'Sending notice ' . $notice->id . ' to ' . $user->smsemail,
179                                                    __FILE__);
180                                 $success = mail_send_sms_notice($notice, $user);
181                                 if (!$success) {
182                                         # XXX: Not sure, but I think that's the right thing to do
183                                         common_log(LOG_WARNING,
184                                                            'Sending notice ' . $notice->id . ' to ' . $user->smsemail . ' FAILED, cancelling.',
185                                                            __FILE__);
186                                         return false;
187                                 }
188                         }
189                 }
190         }
191         
192         return true;
193 }
194
195 function mail_send_sms_notice($notice, $user) {
196         $profile = $user->getProfile();
197         $name = $profile->getBestName();
198         $to = $name . ' <' . $user->smsemail . '>';
199         $other = $notice->getProfile();
200
201         common_log(LOG_INFO, "Sending notice " . $notice->id . " to " . $user->smsemail, __FILE__);
202         
203         $headers = array();
204         $headers['From'] = (isset($user->incomingemail)) ? $user->incomingemail : mail_notify_from();
205         $headers['To'] = $to;
206         $headers['Subject'] = sprintf(_('%s status'),
207                                                                   $other->getBestName());
208         $body = $notice->content;
209         
210         return mail_send($user->smsemail, $headers, $body);
211 }
212
213 function mail_confirm_sms($code, $nickname, $address) {
214
215         $recipients = $address;
216
217         $headers['From'] = mail_notify_from();
218         $headers['To'] = $nickname . ' <' . $address . '>';
219         $headers['Subject'] = _('SMS confirmation');
220
221         $body = "$nickname: confirm you own this phone number with this code:";
222         $body .= "\n\n";
223         $body .= $code;
224         $body .= "\n\n";
225
226         mail_send($recipients, $headers, $body);
227 }