]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/confirmemail.php
fix url for redirect
[quix0rs-gnu-social.git] / actions / confirmemail.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 class ConfirmemailAction extends Action {
23
24     function handle($args) {
25         parent::handle($args);
26         if (!common_logged_in()) {
27             common_set_returnto($this->self_url());
28             common_redirect(common_local_url('login'));
29             return;
30         }
31         $code = $this->trimmed('code');
32         if (!$code) {
33             $this->client_error(_t('No confirmation code.'));
34             return;
35         }
36         $confirm_email = Confirm_email::staticGet('code', $code);
37         if (!$confirm_email) {
38             $this->client_error(_t('Confirmation code not found.'));
39             return;
40         }
41         $cur = common_current_user();
42         if ($cur->id != $confirm_email->user_id) {
43             $this->client_error(_t('That confirmation code is not for you!'));
44             return;
45         }
46         if ($cur->email == $confirm_email->email) {
47             $this->client_error(_t('That email address is already confirmed.'));
48             return;
49         }
50         $cur->query('BEGIN');
51         $orig_user = clone($cur);
52         $cur->email = $confirm_email->email;
53         common_debug('cur email = "' . $cur->email . '"', __FILE__);
54         $result = $cur->update($orig_user);
55         if (!$result) {
56             $this->server_error(_t('Error setting email address.'));
57             return;
58         }
59         $result = $confirm_email->delete();
60         if (!$result) {
61             $this->server_error(_t('Error deleting code.'));
62             return;
63         }
64         $cur->query('COMMIT');
65         common_show_header(_t('Confirm E-mail Address'));
66         common_element('p', NULL,
67                        _t('The email address "') . $cur->email . 
68                        _t('" has been confirmed for your account.'));
69         common_show_footer(_t('Confirm E-mail Address'));
70     }
71 }