]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/emailsettings.php
Merge branch 'twitter-oauth' into 0.8.x
[quix0rs-gnu-social.git] / actions / emailsettings.php
1 <?php
2 /**
3  * Laconica, the distributed open-source microblogging tool
4  *
5  * Settings for email
6  *
7  * PHP version 5
8  *
9  * LICENCE: This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  Settings
23  * @package   Laconica
24  * @author    Evan Prodromou <evan@controlyourself.ca>
25  * @author    Zach Copley <zach@controlyourself.ca>
26  * @copyright 2008-2009 Control Yourself, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28  * @link      http://laconi.ca/
29  */
30
31 if (!defined('LACONICA')) {
32     exit(1);
33 }
34
35 require_once INSTALLDIR.'/lib/accountsettingsaction.php';
36
37 /**
38  * Settings for email
39  *
40  * @category Settings
41  * @package  Laconica
42  * @author   Evan Prodromou <evan@controlyourself.ca>
43  * @author   Zach Copley <zach@controlyourself.ca>
44  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
45  * @link     http://laconi.ca/
46  *
47  * @see      Widget
48  */
49
50 class EmailsettingsAction extends AccountSettingsAction
51 {
52     /**
53      * Title of the page
54      *
55      * @return string Title of the page
56      */
57
58     function title()
59     {
60         return _('Email Settings');
61     }
62
63     /**
64      * Instructions for use
65      *
66      * @return instructions for use
67      */
68
69     function getInstructions()
70     {
71         return _('Manage how you get email from %%site.name%%.');
72     }
73
74     /**
75      * Content area of the page
76      *
77      * Shows a form for adding and removing email addresses and setting
78      * email preferences.
79      *
80      * @return void
81      */
82
83     function showContent()
84     {
85         $user = common_current_user();
86
87         $this->elementStart('form', array('method' => 'post',
88                                           'id' => 'form_settings_email',
89                                           'class' => 'form_settings',
90                                           'action' =>
91                                           common_local_url('emailsettings')));
92
93         $this->elementStart('fieldset', array('id' => 'settings_email_address'));
94         $this->element('legend', null, _('Address'));
95         $this->hidden('token', common_session_token());
96
97         if ($user->email) {
98             $this->element('p', array('id' => 'form_confirmed'), $user->email);
99             $this->element('p', array('class' => 'form_note'), _('Current confirmed email address.'));
100             $this->hidden('email', $user->email);
101             $this->submit('remove', _('Remove'));
102         } else {
103             $confirm = $this->getConfirmation();
104             if ($confirm) {
105                 $this->element('p', array('id' => 'form_unconfirmed'), $confirm->address);
106                 $this->element('p', array('class' => 'form_note'),
107                                         _('Awaiting confirmation on this address. '.
108                                         'Check your inbox (and spam box!) for a message '.
109                                         'with further instructions.'));
110                 $this->hidden('email', $confirm->address);
111                 $this->submit('cancel', _('Cancel'));
112             } else {
113                 $this->elementStart('ul', 'form_data');
114                 $this->elementStart('li');
115                 $this->input('email', _('Email Address'),
116                              ($this->arg('email')) ? $this->arg('email') : null,
117                              _('Email address, like "UserName@example.org"'));
118                 $this->elementEnd('li');
119                 $this->elementEnd('ul');
120                 $this->submit('add', _('Add'));
121             }
122         }
123         $this->elementEnd('fieldset');
124
125        if (common_config('emailpost', 'enabled') && $user->email) {
126             $this->elementStart('fieldset', array('id' => 'settings_email_incoming'));
127             $this->element('legend',_('Incoming email'));
128             if ($user->incomingemail) {
129                 $this->elementStart('p');
130                 $this->element('span', 'address', $user->incomingemail);
131                 $this->element('span', 'input_instructions',
132                                _('Send email to this address to post new notices.'));
133                 $this->elementEnd('p');
134                 $this->submit('removeincoming', _('Remove'));
135             }
136
137             $this->elementStart('p');
138             $this->element('span', 'input_instructions',
139                            _('Make a new email address for posting to; '.
140                              'cancels the old one.'));
141             $this->elementEnd('p');
142             $this->submit('newincoming', _('New'));
143             $this->elementEnd('fieldset');
144         }
145
146         $this->elementStart('fieldset', array('id' => 'settings_email_preferences'));
147         $this->element('legend', null, _('Preferences'));
148
149         $this->elementStart('ul', 'form_data');
150         $this->elementStart('li');
151         $this->checkbox('emailnotifysub',
152                         _('Send me notices of new subscriptions through email.'),
153                         $user->emailnotifysub);
154         $this->elementEnd('li');
155         $this->elementStart('li');
156         $this->checkbox('emailnotifyfav',
157                         _('Send me email when someone '.
158                           'adds my notice as a favorite.'),
159                         $user->emailnotifyfav);
160         $this->elementEnd('li');
161         $this->elementStart('li');
162         $this->checkbox('emailnotifymsg',
163                         _('Send me email when someone sends me a private message.'),
164                         $user->emailnotifymsg);
165         $this->elementEnd('li');
166         $this->elementStart('li');
167         $this->checkbox('emailnotifyattn',
168                         _('Send me email when someone sends me an "@-reply".'),
169                         $user->emailnotifyattn);
170         $this->elementEnd('li');
171         $this->elementStart('li');
172         $this->checkbox('emailnotifynudge',
173                         _('Allow friends to nudge me and send me an email.'),
174                         $user->emailnotifynudge);
175         $this->elementEnd('li');
176         if (common_config('emailpost', 'enabled')) {
177             $this->elementStart('li');
178             $this->checkbox('emailpost',
179                             _('I want to post notices by email.'),
180                             $user->emailpost);
181             $this->elementEnd('li');
182         }
183         $this->elementStart('li');
184         $this->checkbox('emailmicroid',
185                         _('Publish a MicroID for my email address.'),
186                         $user->emailmicroid);
187         $this->elementEnd('li');
188         $this->elementEnd('ul');
189         $this->submit('save', _('Save'));
190         $this->elementEnd('fieldset');
191         $this->elementEnd('form');
192     }
193
194     /**
195      * Gets any existing email address confirmations we're waiting for
196      *
197      * @return Confirm_address Email address confirmation for user, or null
198      */
199
200     function getConfirmation()
201     {
202         $user = common_current_user();
203
204         $confirm = new Confirm_address();
205
206         $confirm->user_id      = $user->id;
207         $confirm->address_type = 'email';
208
209         if ($confirm->find(true)) {
210             return $confirm;
211         } else {
212             return null;
213         }
214     }
215
216     /**
217      * Handle posts
218      *
219      * Since there are a lot of different options on the page, we
220      * figure out what we're supposed to do based on which button was
221      * pushed
222      *
223      * @return void
224      */
225
226     function handlePost()
227     {
228         // CSRF protection
229         $token = $this->trimmed('token');
230         if (!$token || $token != common_session_token()) {
231             $this->show_form(_('There was a problem with your session token. '.
232                                'Try again, please.'));
233             return;
234         }
235
236         if ($this->arg('save')) {
237             $this->savePreferences();
238         } else if ($this->arg('add')) {
239             $this->addAddress();
240         } else if ($this->arg('cancel')) {
241             $this->cancelConfirmation();
242         } else if ($this->arg('remove')) {
243             $this->removeAddress();
244         } else if ($this->arg('removeincoming')) {
245             $this->removeIncoming();
246         } else if ($this->arg('newincoming')) {
247             $this->newIncoming();
248         } else {
249             $this->showForm(_('Unexpected form submission.'));
250         }
251     }
252
253     /**
254      * Save email preferences
255      *
256      * @return void
257      */
258
259     function savePreferences()
260     {
261         $emailnotifysub   = $this->boolean('emailnotifysub');
262         $emailnotifyfav   = $this->boolean('emailnotifyfav');
263         $emailnotifymsg   = $this->boolean('emailnotifymsg');
264         $emailnotifynudge = $this->boolean('emailnotifynudge');
265         $emailnotifyattn  = $this->boolean('emailnotifyattn');
266         $emailmicroid     = $this->boolean('emailmicroid');
267         $emailpost        = $this->boolean('emailpost');
268
269         $user = common_current_user();
270
271         assert(!is_null($user)); // should already be checked
272
273         $user->query('BEGIN');
274
275         $original = clone($user);
276
277         $user->emailnotifysub   = $emailnotifysub;
278         $user->emailnotifyfav   = $emailnotifyfav;
279         $user->emailnotifymsg   = $emailnotifymsg;
280         $user->emailnotifynudge = $emailnotifynudge;
281         $user->emailnotifyattn  = $emailnotifyattn;
282         $user->emailmicroid     = $emailmicroid;
283         $user->emailpost        = $emailpost;
284
285         $result = $user->update($original);
286
287         if ($result === false) {
288             common_log_db_error($user, 'UPDATE', __FILE__);
289             $this->serverError(_('Couldn\'t update user.'));
290             return;
291         }
292
293         $user->query('COMMIT');
294
295         $this->showForm(_('Preferences saved.'), true);
296     }
297
298     /**
299      * Add the address passed in by the user
300      *
301      * @return void
302      */
303
304     function addAddress()
305     {
306         $user = common_current_user();
307
308         $email = $this->trimmed('email');
309
310         // Some validation
311
312         if (!$email) {
313             $this->showForm(_('No email address.'));
314             return;
315         }
316
317         $email = common_canonical_email($email);
318
319         if (!$email) {
320             $this->showForm(_('Cannot normalize that email address'));
321             return;
322         }
323         if (!Validate::email($email, true)) {
324             $this->showForm(_('Not a valid email address'));
325             return;
326         } else if ($user->email == $email) {
327             $this->showForm(_('That is already your email address.'));
328             return;
329         } else if ($this->emailExists($email)) {
330             $this->showForm(_('That email address already belongs '.
331                               'to another user.'));
332             return;
333         }
334
335         $confirm = new Confirm_address();
336
337         $confirm->address      = $email;
338         $confirm->address_type = 'email';
339         $confirm->user_id      = $user->id;
340         $confirm->code         = common_confirmation_code(64);
341
342         $result = $confirm->insert();
343
344         if ($result === false) {
345             common_log_db_error($confirm, 'INSERT', __FILE__);
346             $this->serverError(_('Couldn\'t insert confirmation code.'));
347             return;
348         }
349
350         mail_confirm_address($user, $confirm->code, $user->nickname, $email);
351
352         $msg = _('A confirmation code was sent to the email address you added. '.
353                  'Check your inbox (and spam box!) for the code and instructions '.
354                  'on how to use it.');
355
356         $this->showForm($msg, true);
357     }
358
359     /**
360      * Handle a request to cancel email confirmation
361      *
362      * @return void
363      */
364
365     function cancelConfirmation()
366     {
367         $email = $this->arg('email');
368
369         $confirm = $this->getConfirmation();
370
371         if (!$confirm) {
372             $this->showForm(_('No pending confirmation to cancel.'));
373             return;
374         }
375         if ($confirm->address != $email) {
376             $this->showForm(_('That is the wrong IM address.'));
377             return;
378         }
379
380         $result = $confirm->delete();
381
382         if (!$result) {
383             common_log_db_error($confirm, 'DELETE', __FILE__);
384             $this->serverError(_('Couldn\'t delete email confirmation.'));
385             return;
386         }
387
388         $this->showForm(_('Confirmation cancelled.'), true);
389     }
390
391     /**
392      * Handle a request to remove an address from the user's account
393      *
394      * @return void
395      */
396
397     function removeAddress()
398     {
399         $user = common_current_user();
400
401         $email = $this->arg('email');
402
403         // Maybe an old tab open...?
404
405         if ($user->email != $email) {
406             $this->showForm(_('That is not your email address.'));
407             return;
408         }
409
410         $user->query('BEGIN');
411
412         $original = clone($user);
413
414         $user->email = null;
415
416         $result = $user->updateKeys($original);
417
418         if (!$result) {
419             common_log_db_error($user, 'UPDATE', __FILE__);
420             $this->serverError(_('Couldn\'t update user.'));
421             return;
422         }
423         $user->query('COMMIT');
424
425         $this->showForm(_('The address was removed.'), true);
426     }
427
428     /**
429      * Handle a request to remove an incoming email address
430      *
431      * @return void
432      */
433
434     function removeIncoming()
435     {
436         $user = common_current_user();
437
438         if (!$user->incomingemail) {
439             $this->showForm(_('No incoming email address.'));
440             return;
441         }
442
443         $orig = clone($user);
444
445         $user->incomingemail = null;
446
447         if (!$user->updateKeys($orig)) {
448             common_log_db_error($user, 'UPDATE', __FILE__);
449             $this->serverError(_("Couldn't update user record."));
450         }
451
452         $this->showForm(_('Incoming email address removed.'), true);
453     }
454
455     /**
456      * Generate a new incoming email address
457      *
458      * @return void
459      */
460
461     function newIncoming()
462     {
463         $user = common_current_user();
464
465         $orig = clone($user);
466
467         $user->incomingemail = mail_new_incoming_address();
468
469         if (!$user->updateKeys($orig)) {
470             common_log_db_error($user, 'UPDATE', __FILE__);
471             $this->serverError(_("Couldn't update user record."));
472         }
473
474         $this->showForm(_('New incoming email address added.'), true);
475     }
476
477     /**
478      * Does another user already have this email address?
479      *
480      * Email addresses are unique for users.
481      *
482      * @param string $email Address to check
483      *
484      * @return boolean Whether the email already exists.
485      */
486
487     function emailExists($email)
488     {
489         $user = common_current_user();
490
491         $other = User::staticGet('email', $email);
492
493         if (!$other) {
494             return false;
495         } else {
496             return $other->id != $user->id;
497         }
498     }
499 }