2008-06-20 06:15:36 +01:00
|
|
|
<?php
|
2009-01-18 18:41:41 +00:00
|
|
|
/**
|
2009-08-25 23:12:20 +01:00
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
2008-06-20 06:15:36 +01:00
|
|
|
*
|
2009-01-18 18:41:41 +00:00
|
|
|
* Confirm an address
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* LICENCE: This program is free software: you can redistribute it and/or modify
|
2008-06-20 06:15:36 +01:00
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2009-01-18 18:41:41 +00:00
|
|
|
*
|
|
|
|
* @category Confirm
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
2009-08-25 23:12:20 +01:00
|
|
|
* @copyright 2008-2009 StatusNet, Inc.
|
2009-01-18 18:41:41 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
2009-08-25 23:16:46 +01:00
|
|
|
* @link http://status.net/
|
2008-06-20 06:15:36 +01:00
|
|
|
*/
|
|
|
|
|
2009-08-26 15:41:36 +01:00
|
|
|
if (!defined('STATUSNET') && !defined('LACONICA')) {
|
2009-01-18 18:41:41 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Confirm an address
|
|
|
|
*
|
|
|
|
* When users change their SMS, email, Jabber, or other addresses, we send out
|
|
|
|
* a confirmation code to make sure the owner of that address approves. This class
|
|
|
|
* accepts those codes.
|
|
|
|
*
|
|
|
|
* @category Confirm
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
2009-01-18 18:41:41 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
2009-08-25 23:16:46 +01:00
|
|
|
* @link http://status.net/
|
2009-01-18 18:41:41 +00:00
|
|
|
*/
|
2008-12-23 19:49:23 +00:00
|
|
|
class ConfirmaddressAction extends Action
|
|
|
|
{
|
2009-01-18 18:41:41 +00:00
|
|
|
/** type of confirmation. */
|
|
|
|
|
2010-01-23 06:25:27 +00:00
|
|
|
var $address;
|
2009-01-18 18:41:41 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Accept a confirmation code
|
|
|
|
*
|
|
|
|
* Checks the code and confirms the address in the
|
|
|
|
* user record
|
|
|
|
*
|
|
|
|
* @param args $args $_REQUEST array
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-12-23 19:33:23 +00:00
|
|
|
function handle($args)
|
|
|
|
{
|
2008-06-20 07:48:24 +01:00
|
|
|
parent::handle($args);
|
|
|
|
if (!common_logged_in()) {
|
2009-01-18 17:11:18 +00:00
|
|
|
common_set_returnto($this->selfUrl());
|
2009-08-21 21:45:42 +01:00
|
|
|
common_redirect(common_local_url('login'));
|
2008-06-20 07:48:24 +01:00
|
|
|
}
|
|
|
|
$code = $this->trimmed('code');
|
|
|
|
if (!$code) {
|
2010-10-30 23:58:35 +01:00
|
|
|
// TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action.
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->clientError(_('No confirmation code.'));
|
2008-06-20 07:48:24 +01:00
|
|
|
}
|
2013-08-18 12:04:58 +01:00
|
|
|
$confirm = Confirm_address::getKV('code', $code);
|
2008-06-22 17:16:07 +01:00
|
|
|
if (!$confirm) {
|
2010-10-30 23:58:35 +01:00
|
|
|
// TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action.
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->clientError(_('Confirmation code not found.'));
|
2008-06-20 07:48:24 +01:00
|
|
|
}
|
|
|
|
$cur = common_current_user();
|
2008-06-22 17:16:07 +01:00
|
|
|
if ($cur->id != $confirm->user_id) {
|
2010-10-30 23:58:35 +01:00
|
|
|
// TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action.
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->clientError(_('That confirmation code is not for you!'));
|
2008-06-20 07:48:24 +01:00
|
|
|
}
|
2008-12-23 19:19:07 +00:00
|
|
|
$type = $confirm->address_type;
|
2010-01-23 06:25:27 +00:00
|
|
|
$transports = array();
|
|
|
|
Event::handle('GetImTransports', array(&$transports));
|
|
|
|
if (!in_array($type, array('email', 'sms')) && !in_array($type, array_keys($transports))) {
|
2010-04-19 00:21:15 +01:00
|
|
|
// 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')
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->serverError(sprintf(_('Unrecognized address type %s'), $type));
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2010-01-23 06:25:27 +00:00
|
|
|
$this->address = $confirm->address;
|
2008-06-20 07:48:24 +01:00
|
|
|
$cur->query('BEGIN');
|
2010-01-23 06:25:27 +00:00
|
|
|
if (in_array($type, array('email', 'sms')))
|
|
|
|
{
|
|
|
|
if ($cur->$type == $confirm->address) {
|
2011-03-18 12:48:47 +00:00
|
|
|
// TRANS: Client error for an already confirmed email/jabber/sms address.
|
2010-01-23 06:25:27 +00:00
|
|
|
$this->clientError(_('That address has already been confirmed.'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$orig_user = clone($cur);
|
|
|
|
|
|
|
|
$cur->$type = $confirm->address;
|
|
|
|
|
|
|
|
if ($type == 'sms') {
|
|
|
|
$cur->carrier = ($confirm->address_extra)+0;
|
2013-08-18 12:04:58 +01:00
|
|
|
$carrier = Sms_carrier::getKV($cur->carrier);
|
2010-01-23 06:25:27 +00:00
|
|
|
$cur->smsemail = $carrier->toEmailAddress($cur->sms);
|
|
|
|
}
|
|
|
|
|
2015-01-25 11:45:26 +00:00
|
|
|
// Throws exception on failure.
|
|
|
|
$cur->updateWithKeys($orig_user);
|
2010-01-23 06:25:27 +00:00
|
|
|
|
|
|
|
if ($type == 'email') {
|
|
|
|
$cur->emailChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
$user_im_prefs = new User_im_prefs();
|
|
|
|
$user_im_prefs->transport = $confirm->address_type;
|
|
|
|
$user_im_prefs->user_id = $cur->id;
|
|
|
|
if ($user_im_prefs->find() && $user_im_prefs->fetch()) {
|
|
|
|
if($user_im_prefs->screenname == $confirm->address){
|
2011-03-18 12:48:47 +00:00
|
|
|
// TRANS: Client error for an already confirmed IM address.
|
2010-01-23 06:25:27 +00:00
|
|
|
$this->clientError(_('That address has already been confirmed.'));
|
|
|
|
}
|
|
|
|
$user_im_prefs->screenname = $confirm->address;
|
|
|
|
$result = $user_im_prefs->update();
|
|
|
|
|
|
|
|
if (!$result) {
|
|
|
|
common_log_db_error($user_im_prefs, 'UPDATE', __FILE__);
|
2011-03-18 12:48:47 +00:00
|
|
|
// TRANS: Server error displayed when updating IM preferences fails.
|
|
|
|
$this->serverError(_('Could not update user IM preferences.'));
|
2010-01-23 06:25:27 +00:00
|
|
|
}
|
|
|
|
}else{
|
|
|
|
$user_im_prefs = new User_im_prefs();
|
|
|
|
$user_im_prefs->screenname = $confirm->address;
|
|
|
|
$user_im_prefs->transport = $confirm->address_type;
|
|
|
|
$user_im_prefs->user_id = $cur->id;
|
|
|
|
$result = $user_im_prefs->insert();
|
|
|
|
|
|
|
|
if (!$result) {
|
|
|
|
common_log_db_error($user_im_prefs, 'INSERT', __FILE__);
|
2011-03-18 12:48:47 +00:00
|
|
|
// TRANS: Server error displayed when adding IM preferences fails.
|
|
|
|
$this->serverError(_('Could not insert user IM preferences.'));
|
2010-01-23 06:25:27 +00:00
|
|
|
}
|
|
|
|
}
|
2008-06-26 08:21:59 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2008-08-27 01:19:27 +01:00
|
|
|
|
2008-06-22 17:16:07 +01:00
|
|
|
$result = $confirm->delete();
|
2008-06-26 08:21:59 +01:00
|
|
|
|
2008-06-20 07:48:24 +01:00
|
|
|
if (!$result) {
|
2008-12-23 19:19:07 +00:00
|
|
|
common_log_db_error($confirm, 'DELETE', __FILE__);
|
2010-10-30 23:58:35 +01:00
|
|
|
// TRANS: Server error displayed when an address confirmation code deletion from the
|
|
|
|
// TRANS: database fails in the contact address confirmation action.
|
|
|
|
$this->serverError(_('Could not delete address confirmation.'));
|
2008-06-20 07:48:24 +01:00
|
|
|
}
|
2008-06-26 08:21:59 +01:00
|
|
|
|
2008-06-20 07:48:24 +01:00
|
|
|
$cur->query('COMMIT');
|
2009-01-18 18:41:41 +00:00
|
|
|
$this->showPage();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Title of the page
|
|
|
|
*
|
|
|
|
* @return string title
|
|
|
|
*/
|
|
|
|
function title()
|
|
|
|
{
|
2010-10-30 23:58:35 +01:00
|
|
|
// TRANS: Title for the contact address confirmation action.
|
2010-01-14 22:32:40 +00:00
|
|
|
return _('Confirm address');
|
2009-01-18 18:41:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show a confirmation message.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function showContent()
|
|
|
|
{
|
|
|
|
$cur = common_current_user();
|
|
|
|
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->element('p', null,
|
2010-10-30 23:58:35 +01:00
|
|
|
// TRANS: Success message for the contact address confirmation action.
|
|
|
|
// TRANS: %s can be 'email', 'jabber', or 'sms'.
|
2009-01-18 18:41:41 +00:00
|
|
|
sprintf(_('The address "%s" has been '.
|
|
|
|
'confirmed for your account.'),
|
2010-01-23 06:25:27 +00:00
|
|
|
$this->address));
|
2008-06-20 07:48:24 +01:00
|
|
|
}
|
2008-06-20 06:15:36 +01:00
|
|
|
}
|