]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/confirmaddress.php
Merge branch '1.0.x' into people_tags_rebase
[quix0rs-gnu-social.git] / actions / confirmaddress.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Confirm an address
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  Confirm
23  * @package   StatusNet
24  * @author    Evan Prodromou <evan@status.net>
25  * @copyright 2008-2009 StatusNet, Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27  * @link      http://status.net/
28  */
29
30 if (!defined('STATUSNET') && !defined('LACONICA')) {
31     exit(1);
32 }
33
34 /**
35  * Confirm an address
36  *
37  * When users change their SMS, email, Jabber, or other addresses, we send out
38  * a confirmation code to make sure the owner of that address approves. This class
39  * accepts those codes.
40  *
41  * @category Confirm
42  * @package  StatusNet
43  * @author   Evan Prodromou <evan@status.net>
44  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
45  * @link     http://status.net/
46  */
47 class ConfirmaddressAction extends Action
48 {
49     /** type of confirmation. */
50
51     var $address;
52
53     /**
54      * Accept a confirmation code
55      *
56      * Checks the code and confirms the address in the
57      * user record
58      *
59      * @param args $args $_REQUEST array
60      *
61      * @return void
62      */
63     function handle($args)
64     {
65         parent::handle($args);
66         if (!common_logged_in()) {
67             common_set_returnto($this->selfUrl());
68             common_redirect(common_local_url('login'));
69             return;
70         }
71         $code = $this->trimmed('code');
72         if (!$code) {
73             // TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action.
74             $this->clientError(_('No confirmation code.'));
75             return;
76         }
77         $confirm = Confirm_address::staticGet('code', $code);
78         if (!$confirm) {
79             // TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action.
80             $this->clientError(_('Confirmation code not found.'));
81             return;
82         }
83         $cur = common_current_user();
84         if ($cur->id != $confirm->user_id) {
85             // TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action.
86             $this->clientError(_('That confirmation code is not for you!'));
87             return;
88         }
89         $type = $confirm->address_type;
90         $transports = array();
91         Event::handle('GetImTransports', array(&$transports));
92         if (!in_array($type, array('email', 'sms')) && !in_array($type, array_keys($transports))) {
93             // TRANS: Server error for an unknown address type, which can be 'email', 'sms', or the name of an IM network (such as 'xmpp' or 'aim')
94             $this->serverError(sprintf(_('Unrecognized address type %s'), $type));
95             return;
96         }
97         $this->address = $confirm->address;
98         $cur->query('BEGIN');
99         if (in_array($type, array('email', 'sms')))
100         {
101             if ($cur->$type == $confirm->address) {
102                 // TRANS: Client error for an already confirmed email/jabber/sms address.
103                 $this->clientError(_('That address has already been confirmed.'));
104                 return;
105             }
106
107             $orig_user = clone($cur);
108
109             $cur->$type = $confirm->address;
110
111             if ($type == 'sms') {
112                 $cur->carrier  = ($confirm->address_extra)+0;
113                 $carrier       = Sms_carrier::staticGet($cur->carrier);
114                 $cur->smsemail = $carrier->toEmailAddress($cur->sms);
115             }
116
117             $result = $cur->updateKeys($orig_user);
118
119             if (!$result) {
120                 common_log_db_error($cur, 'UPDATE', __FILE__);
121                 // TRANS: Server error displayed when confirming an e-mail address or IM address fails.
122                 $this->serverError(_('Could not update user.'));
123                 return;
124             }
125
126             if ($type == 'email') {
127                 $cur->emailChanged();
128             }
129
130         } else {
131
132             $user_im_prefs = new User_im_prefs();
133             $user_im_prefs->transport = $confirm->address_type;
134             $user_im_prefs->user_id = $cur->id;
135             if ($user_im_prefs->find() && $user_im_prefs->fetch()) {
136                 if($user_im_prefs->screenname == $confirm->address){
137                     // TRANS: Client error for an already confirmed IM address.
138                     $this->clientError(_('That address has already been confirmed.'));
139                     return;
140                 }
141                 $user_im_prefs->screenname = $confirm->address;
142                 $result = $user_im_prefs->update();
143
144                 if (!$result) {
145                     common_log_db_error($user_im_prefs, 'UPDATE', __FILE__);
146                     // TRANS: Server error displayed when updating IM preferences fails.
147                     $this->serverError(_('Could not update user IM preferences.'));
148                     return;
149                 }
150             }else{
151                 $user_im_prefs = new User_im_prefs();
152                 $user_im_prefs->screenname = $confirm->address;
153                 $user_im_prefs->transport = $confirm->address_type;
154                 $user_im_prefs->user_id = $cur->id;
155                 $result = $user_im_prefs->insert();
156
157                 if (!$result) {
158                     common_log_db_error($user_im_prefs, 'INSERT', __FILE__);
159                     // TRANS: Server error displayed when adding IM preferences fails.
160                     $this->serverError(_('Could not insert user IM preferences.'));
161                     return;
162                 }
163             }
164
165         }
166
167         $result = $confirm->delete();
168
169         if (!$result) {
170             common_log_db_error($confirm, 'DELETE', __FILE__);
171             // TRANS: Server error displayed when an address confirmation code deletion from the
172             // TRANS: database fails in the contact address confirmation action.
173             $this->serverError(_('Could not delete address confirmation.'));
174             return;
175         }
176
177         $cur->query('COMMIT');
178         $this->showPage();
179     }
180
181     /**
182      * Title of the page
183      *
184      * @return string title
185      */
186     function title()
187     {
188         // TRANS: Title for the contact address confirmation action.
189         return _('Confirm address');
190     }
191
192     /**
193      * Show a confirmation message.
194      *
195      * @return void
196      */
197     function showContent()
198     {
199         $cur  = common_current_user();
200
201         $this->element('p', null,
202                        // TRANS: Success message for the contact address confirmation action.
203                        // TRANS: %s can be 'email', 'jabber', or 'sms'.
204                        sprintf(_('The address "%s" has been '.
205                                  'confirmed for your account.'),
206                                $this->address));
207     }
208 }