2008-06-20 06:15:36 +01:00
|
|
|
<?php
|
2020-06-08 10:25:01 +01:00
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/social
|
|
|
|
//
|
|
|
|
// GNU social is free software: you can redistribute it and/or modify
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
// GNU social 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 GNU social. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2009-01-18 18:41:41 +00:00
|
|
|
/**
|
|
|
|
* Confirm an address
|
|
|
|
*
|
|
|
|
* @category Confirm
|
2020-06-08 10:25:01 +01:00
|
|
|
* @package GNUsocial
|
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.
|
2020-06-08 10:25:01 +01:00
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2008-06-20 06:15:36 +01:00
|
|
|
*/
|
|
|
|
|
2020-06-08 10:25:01 +01:00
|
|
|
defined('GNUSOCIAL') || die();
|
2009-01-18 18:41:41 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*
|
2020-06-08 10:25:01 +01:00
|
|
|
* @category Confirm
|
|
|
|
* @package GNUsocial
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2009-01-18 18:41:41 +00:00
|
|
|
*/
|
2016-03-02 14:31:48 +00:00
|
|
|
class ConfirmaddressAction extends ManagedAction
|
2008-12-23 19:49:23 +00:00
|
|
|
{
|
2009-01-18 18:41:41 +00:00
|
|
|
/** type of confirmation. */
|
|
|
|
|
2016-03-02 14:31:48 +00:00
|
|
|
protected $address;
|
2009-01-18 18:41:41 +00:00
|
|
|
|
2016-03-02 14:31:48 +00:00
|
|
|
protected function doPreparation()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2008-06-20 07:48:24 +01:00
|
|
|
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.
|
2016-03-02 14:31:48 +00:00
|
|
|
throw new ClientException(_('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);
|
2016-03-02 14:31:48 +00:00
|
|
|
if (!$confirm instanceof Confirm_address) {
|
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.
|
2016-03-02 14:31:48 +00:00
|
|
|
throw new ClientException(_('Confirmation code not found.'), 404);
|
2008-06-20 07:48:24 +01:00
|
|
|
}
|
2016-03-02 14:31:48 +00:00
|
|
|
|
|
|
|
try {
|
|
|
|
$profile = Profile::getByID($confirm->user_id);
|
|
|
|
} catch (NoResultException $e) {
|
|
|
|
common_log(LOG_INFO, 'Tried to confirm the email for a deleted profile: '._ve(['id'=>$confirm->user_id, 'email'=>$confirm->address]));
|
|
|
|
$confirm->delete();
|
|
|
|
throw $e;
|
|
|
|
}
|
|
|
|
if (!$profile->sameAs($this->scoped)) {
|
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.
|
2016-03-02 14:31:48 +00:00
|
|
|
throw new AuthorizationException(_('That confirmation code is not for you!'));
|
2008-06-20 07:48:24 +01:00
|
|
|
}
|
2016-03-02 14:31:48 +00: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')
|
2016-03-02 14:31:48 +00:00
|
|
|
throw new ServerException(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;
|
2016-03-02 14:31:48 +00:00
|
|
|
|
|
|
|
$cur = $this->scoped->getUser();
|
|
|
|
|
2020-06-08 10:25:01 +01:00
|
|
|
$cur->query('START TRANSACTION');
|
2016-03-02 14:31:48 +00:00
|
|
|
if (in_array($type, array('email', 'sms'))) {
|
|
|
|
common_debug("Confirming {$type} address for user {$this->scoped->getID()}");
|
2010-01-23 06:25:27 +00:00
|
|
|
if ($cur->$type == $confirm->address) {
|
2016-03-02 14:31:48 +00:00
|
|
|
// Already verified, so delete the confirm_address entry
|
|
|
|
$confirm->delete();
|
2011-03-18 12:48:47 +00:00
|
|
|
// TRANS: Client error for an already confirmed email/jabber/sms address.
|
2016-03-02 14:31:48 +00:00
|
|
|
throw new AlreadyFulfilledException(_('That address has already been confirmed.'));
|
2010-01-23 06:25:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$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()) {
|
2020-06-08 10:25:01 +01:00
|
|
|
if ($user_im_prefs->screenname === $confirm->address) {
|
2016-03-02 14:31:48 +00:00
|
|
|
// Already verified, so delete the confirm_address entry
|
|
|
|
$confirm->delete();
|
2011-03-18 12:48:47 +00:00
|
|
|
// TRANS: Client error for an already confirmed IM address.
|
2016-03-02 14:31:48 +00:00
|
|
|
throw new AlreadyFulfilledException(_('That address has already been confirmed.'));
|
2010-01-23 06:25:27 +00:00
|
|
|
}
|
|
|
|
$user_im_prefs->screenname = $confirm->address;
|
|
|
|
$result = $user_im_prefs->update();
|
|
|
|
|
2016-03-02 14:31:48 +00:00
|
|
|
if ($result === false) {
|
2010-01-23 06:25:27 +00:00
|
|
|
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.
|
2016-03-02 14:31:48 +00:00
|
|
|
throw new ServerException(_('Could not update user IM preferences.'));
|
2010-01-23 06:25:27 +00:00
|
|
|
}
|
2020-06-08 10:25:01 +01:00
|
|
|
} else {
|
2010-01-23 06:25:27 +00:00
|
|
|
$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;
|
2019-07-24 22:28:03 +01:00
|
|
|
$user_im_prefs->created = common_sql_now();
|
2010-01-23 06:25:27 +00:00
|
|
|
$result = $user_im_prefs->insert();
|
|
|
|
|
2016-03-02 14:31:48 +00:00
|
|
|
if ($result === false) {
|
2010-01-23 06:25:27 +00:00
|
|
|
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.
|
2016-03-02 14:31:48 +00:00
|
|
|
throw new ServerException(_('Could not insert user IM preferences.'));
|
2010-01-23 06:25:27 +00:00
|
|
|
}
|
|
|
|
}
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2008-08-27 01:19:27 +01:00
|
|
|
|
2016-03-02 14:31:48 +00:00
|
|
|
$confirm->delete();
|
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
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Title of the page
|
|
|
|
*
|
|
|
|
* @return string title
|
|
|
|
*/
|
2020-06-08 10:25:01 +01:00
|
|
|
public function title()
|
2009-01-18 18:41:41 +00:00
|
|
|
{
|
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
|
|
|
|
*/
|
2020-06-08 10:25:01 +01:00
|
|
|
public function showContent()
|
2009-01-18 18:41:41 +00:00
|
|
|
{
|
2020-06-08 10:25:01 +01:00
|
|
|
$this->element(
|
|
|
|
'p',
|
|
|
|
null,
|
|
|
|
// TRANS: Success message for the contact address confirmation action.
|
|
|
|
// TRANS: %s can be 'email', 'jabber', or 'sms'.
|
|
|
|
sprintf(
|
|
|
|
_('The address "%s" has been confirmed for your account.'),
|
|
|
|
$this->address
|
|
|
|
)
|
|
|
|
);
|
2008-06-20 07:48:24 +01:00
|
|
|
}
|
2008-06-20 06:15:36 +01:00
|
|
|
}
|