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/
47 class ConfirmaddressAction extends Action
49 /** type of confirmation. */
54 * Accept a confirmation code
56 * Checks the code and confirms the address in the
59 * @param args $args $_REQUEST array
63 function handle($args)
65 parent::handle($args);
66 if (!common_logged_in()) {
67 common_set_returnto($this->selfUrl());
68 common_redirect(common_local_url('login'));
70 $code = $this->trimmed('code');
72 // TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action.
73 $this->clientError(_('No confirmation code.'));
75 $confirm = Confirm_address::getKV('code', $code);
77 // TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action.
78 $this->clientError(_('Confirmation code not found.'));
80 $cur = common_current_user();
81 if ($cur->id != $confirm->user_id) {
82 // TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action.
83 $this->clientError(_('That confirmation code is not for you!'));
85 $type = $confirm->address_type;
86 $transports = array();
87 Event::handle('GetImTransports', array(&$transports));
88 if (!in_array($type, array('email', 'sms')) && !in_array($type, array_keys($transports))) {
89 // 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')
90 $this->serverError(sprintf(_('Unrecognized address type %s'), $type));
92 $this->address = $confirm->address;
94 if (in_array($type, array('email', 'sms')))
96 if ($cur->$type == $confirm->address) {
97 // TRANS: Client error for an already confirmed email/jabber/sms address.
98 $this->clientError(_('That address has already been confirmed.'));
101 $orig_user = clone($cur);
103 $cur->$type = $confirm->address;
105 if ($type == 'sms') {
106 $cur->carrier = ($confirm->address_extra)+0;
107 $carrier = Sms_carrier::getKV($cur->carrier);
108 $cur->smsemail = $carrier->toEmailAddress($cur->sms);
111 // Throws exception on failure.
112 $cur->updateWithKeys($orig_user);
114 if ($type == 'email') {
115 $cur->emailChanged();
120 $user_im_prefs = new User_im_prefs();
121 $user_im_prefs->transport = $confirm->address_type;
122 $user_im_prefs->user_id = $cur->id;
123 if ($user_im_prefs->find() && $user_im_prefs->fetch()) {
124 if($user_im_prefs->screenname == $confirm->address){
125 // TRANS: Client error for an already confirmed IM address.
126 $this->clientError(_('That address has already been confirmed.'));
128 $user_im_prefs->screenname = $confirm->address;
129 $result = $user_im_prefs->update();
132 common_log_db_error($user_im_prefs, 'UPDATE', __FILE__);
133 // TRANS: Server error displayed when updating IM preferences fails.
134 $this->serverError(_('Could not update user IM preferences.'));
137 $user_im_prefs = new User_im_prefs();
138 $user_im_prefs->screenname = $confirm->address;
139 $user_im_prefs->transport = $confirm->address_type;
140 $user_im_prefs->user_id = $cur->id;
141 $result = $user_im_prefs->insert();
144 common_log_db_error($user_im_prefs, 'INSERT', __FILE__);
145 // TRANS: Server error displayed when adding IM preferences fails.
146 $this->serverError(_('Could not insert user IM preferences.'));
152 $result = $confirm->delete();
155 common_log_db_error($confirm, 'DELETE', __FILE__);
156 // TRANS: Server error displayed when an address confirmation code deletion from the
157 // TRANS: database fails in the contact address confirmation action.
158 $this->serverError(_('Could not delete address confirmation.'));
161 $cur->query('COMMIT');
168 * @return string title
172 // TRANS: Title for the contact address confirmation action.
173 return _('Confirm address');
177 * Show a confirmation message.
181 function showContent()
183 $cur = common_current_user();
185 $this->element('p', null,
186 // TRANS: Success message for the contact address confirmation action.
187 // TRANS: %s can be 'email', 'jabber', or 'sms'.
188 sprintf(_('The address "%s" has been '.
189 'confirmed for your account.'),