3 * StatusNet, the distributed open-source microblogging tool
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.
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.
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/>.
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/
30 if (!defined('STATUSNET') && !defined('LACONICA')) {
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.
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/
48 class ConfirmaddressAction extends Action
50 /** type of confirmation. */
55 * Accept a confirmation code
57 * Checks the code and confirms the address in the
60 * @param args $args $_REQUEST array
65 function handle($args)
67 parent::handle($args);
68 if (!common_logged_in()) {
69 common_set_returnto($this->selfUrl());
70 common_redirect(common_local_url('login'));
73 $code = $this->trimmed('code');
75 $this->clientError(_('No confirmation code.'));
78 $confirm = Confirm_address::staticGet('code', $code);
80 $this->clientError(_('Confirmation code not found.'));
83 $cur = common_current_user();
84 if ($cur->id != $confirm->user_id) {
85 $this->clientError(_('That confirmation code is not for you!'));
88 $type = $confirm->address_type;
89 $transports = array();
90 Event::handle('GetImTransports', array(&$transports));
91 if (!in_array($type, array('email', 'sms')) && !in_array($type, array_keys($transports))) {
92 // 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')
93 $this->serverError(sprintf(_('Unrecognized address type %s'), $type));
96 $this->address = $confirm->address;
98 if (in_array($type, array('email', 'sms')))
100 if ($cur->$type == $confirm->address) {
101 $this->clientError(_('That address has already been confirmed.'));
105 $orig_user = clone($cur);
107 $cur->$type = $confirm->address;
109 if ($type == 'sms') {
110 $cur->carrier = ($confirm->address_extra)+0;
111 $carrier = Sms_carrier::staticGet($cur->carrier);
112 $cur->smsemail = $carrier->toEmailAddress($cur->sms);
115 $result = $cur->updateKeys($orig_user);
118 common_log_db_error($cur, 'UPDATE', __FILE__);
119 $this->serverError(_('Couldn\'t update user.'));
123 if ($type == 'email') {
124 $cur->emailChanged();
129 $user_im_prefs = new User_im_prefs();
130 $user_im_prefs->transport = $confirm->address_type;
131 $user_im_prefs->user_id = $cur->id;
132 if ($user_im_prefs->find() && $user_im_prefs->fetch()) {
133 if($user_im_prefs->screenname == $confirm->address){
134 $this->clientError(_('That address has already been confirmed.'));
137 $user_im_prefs->screenname = $confirm->address;
138 $result = $user_im_prefs->update();
141 common_log_db_error($user_im_prefs, 'UPDATE', __FILE__);
142 $this->serverError(_('Couldn\'t update user im preferences.'));
146 $user_im_prefs = new User_im_prefs();
147 $user_im_prefs->screenname = $confirm->address;
148 $user_im_prefs->transport = $confirm->address_type;
149 $user_im_prefs->user_id = $cur->id;
150 $result = $user_im_prefs->insert();
153 common_log_db_error($user_im_prefs, 'INSERT', __FILE__);
154 $this->serverError(_('Couldn\'t insert user im preferences.'));
161 $result = $confirm->delete();
164 common_log_db_error($confirm, 'DELETE', __FILE__);
165 $this->serverError(_('Couldn\'t delete email confirmation.'));
169 $cur->query('COMMIT');
176 * @return string title
181 return _('Confirm address');
185 * Show a confirmation message.
190 function showContent()
192 $cur = common_current_user();
194 $this->element('p', null,
195 sprintf(_('The address "%s" has been '.
196 'confirmed for your account.'),