2008-07-20 20:30:05 +01:00
|
|
|
<?php
|
2019-09-11 06:32:19 +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-16 20:56:39 +00:00
|
|
|
/**
|
2019-09-11 06:32:19 +01:00
|
|
|
* Settings for SMS.
|
2008-07-20 20:30:05 +01:00
|
|
|
*
|
2019-09-11 06:32:19 +01:00
|
|
|
* @category Setting
|
|
|
|
* @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.
|
2019-09-11 06:32:19 +01:00
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2008-07-20 20:30:05 +01:00
|
|
|
*/
|
|
|
|
|
2019-09-11 06:32:19 +01:00
|
|
|
defined('GNUSOCIAL') || die();
|
2008-07-20 20:30:05 +01:00
|
|
|
|
2009-01-16 20:56:39 +00:00
|
|
|
/**
|
|
|
|
* Settings for SMS
|
|
|
|
*
|
2019-09-11 06:32:19 +01:00
|
|
|
* @copyright 2008-2009 StatusNet, Inc.
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2009-01-16 20:56:39 +00:00
|
|
|
*
|
2020-06-08 10:25:01 +01:00
|
|
|
* @see SettingsAction
|
2009-01-16 20:56:39 +00:00
|
|
|
*/
|
2011-01-23 17:35:35 +00:00
|
|
|
class SmssettingsAction extends SettingsAction
|
2008-12-23 19:49:23 +00:00
|
|
|
{
|
2015-07-17 13:29:07 +01:00
|
|
|
protected function doPreparation()
|
|
|
|
{
|
|
|
|
if (!common_config('sms', 'enabled')) {
|
|
|
|
// TRANS: Message given in the SMS settings if SMS is not enabled on the site.
|
|
|
|
throw new ServerException(_('SMS is not available.'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-16 20:56:39 +00:00
|
|
|
/**
|
|
|
|
* Title of the page
|
|
|
|
*
|
|
|
|
* @return string Title of the page
|
|
|
|
*/
|
2019-09-11 06:32:19 +01:00
|
|
|
public function title()
|
2009-01-16 20:56:39 +00:00
|
|
|
{
|
2010-04-11 22:24:38 +01:00
|
|
|
// TRANS: Title for SMS settings.
|
2010-01-10 11:26:24 +00:00
|
|
|
return _('SMS settings');
|
2009-01-16 20:56:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Instructions for use
|
|
|
|
*
|
|
|
|
* @return instructions for use
|
|
|
|
*/
|
2019-09-11 06:32:19 +01:00
|
|
|
public function getInstructions()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2010-04-11 22:24:38 +01:00
|
|
|
// XXX: For consistency of parameters in messages, this should be a
|
|
|
|
// regular parameters, replaced with sprintf().
|
|
|
|
// TRANS: SMS settings page instructions.
|
|
|
|
// TRANS: %%site.name%% is the name of the site.
|
2008-12-23 19:19:07 +00:00
|
|
|
return _('You can receive SMS messages through email from %%site.name%%.');
|
|
|
|
}
|
|
|
|
|
2019-09-11 06:32:19 +01:00
|
|
|
public function showScripts()
|
2009-09-03 20:42:50 +01:00
|
|
|
{
|
|
|
|
parent::showScripts();
|
|
|
|
$this->autofocus('sms');
|
|
|
|
}
|
|
|
|
|
2009-01-16 20:56:39 +00:00
|
|
|
/**
|
|
|
|
* Content area of the page
|
|
|
|
*
|
|
|
|
* Shows a form for adding and removing SMS phone numbers and setting
|
|
|
|
* SMS preferences.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2019-09-11 06:32:19 +01:00
|
|
|
public function showContent()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2015-07-17 13:29:07 +01:00
|
|
|
$user = $this->scoped->getUser();
|
2009-01-16 20:56:39 +00:00
|
|
|
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementStart('form', array('method' => 'post',
|
2009-01-17 00:49:48 +00:00
|
|
|
'id' => 'form_settings_sms',
|
|
|
|
'class' => 'form_settings',
|
2009-01-16 20:56:39 +00:00
|
|
|
'action' =>
|
|
|
|
common_local_url('smssettings')));
|
|
|
|
|
2009-01-17 01:08:55 +00:00
|
|
|
$this->elementStart('fieldset', array('id' => 'settings_sms_address'));
|
2010-04-11 22:24:38 +01:00
|
|
|
// TRANS: Form legend for SMS settings form.
|
|
|
|
$this->element('legend', null, _('SMS address'));
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->hidden('token', common_session_token());
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2019-11-02 09:21:43 +00:00
|
|
|
if (!$user->isNull('sms')) {
|
2008-12-23 19:19:07 +00:00
|
|
|
$carrier = $user->getCarrier();
|
2019-09-11 06:32:19 +01:00
|
|
|
$this->element(
|
|
|
|
'p',
|
|
|
|
'form_confirmed',
|
|
|
|
$user->sms . ' (' . $carrier->name . ')'
|
|
|
|
);
|
|
|
|
$this->element(
|
|
|
|
'p',
|
|
|
|
'form_guide',
|
|
|
|
// TRANS: Form guide in SMS settings form.
|
|
|
|
_('Current confirmed SMS-enabled phone number.')
|
|
|
|
);
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->hidden('sms', $user->sms);
|
|
|
|
$this->hidden('carrier', $user->carrier);
|
2010-04-11 22:24:38 +01:00
|
|
|
// TRANS: Button label to remove a confirmed SMS address.
|
2019-09-11 06:32:19 +01:00
|
|
|
$this->submit('remove', _m('BUTTON', 'Remove'));
|
2008-12-23 19:19:07 +00:00
|
|
|
} else {
|
2015-07-17 13:29:07 +01:00
|
|
|
try {
|
|
|
|
$confirm = $this->getConfirmation();
|
2013-08-18 12:04:58 +01:00
|
|
|
$carrier = Sms_carrier::getKV($confirm->address_extra);
|
2019-09-11 06:32:19 +01:00
|
|
|
$this->element(
|
|
|
|
'p',
|
|
|
|
'form_unconfirmed',
|
|
|
|
$confirm->address . ' (' . $carrier->name . ')'
|
|
|
|
);
|
|
|
|
$this->element(
|
|
|
|
'p',
|
|
|
|
'form_guide',
|
|
|
|
// TRANS: Form guide in IM settings form.
|
|
|
|
_('Awaiting confirmation on this phone number.')
|
|
|
|
);
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->hidden('sms', $confirm->address);
|
|
|
|
$this->hidden('carrier', $confirm->address_extra);
|
2010-04-11 22:24:38 +01:00
|
|
|
// TRANS: Button label to cancel a SMS address confirmation procedure.
|
2019-09-11 06:32:19 +01:00
|
|
|
$this->submit('cancel', _m('BUTTON', 'Cancel'));
|
2009-01-18 21:14:47 +00:00
|
|
|
|
2009-01-19 03:09:13 +00:00
|
|
|
$this->elementStart('ul', 'form_data');
|
2009-01-18 21:14:47 +00:00
|
|
|
$this->elementStart('li');
|
2010-04-11 22:24:38 +01:00
|
|
|
// TRANS: Field label for SMS address input in SMS settings form.
|
2019-09-11 06:32:19 +01:00
|
|
|
$this->input(
|
|
|
|
'code',
|
|
|
|
_('Confirmation code'),
|
|
|
|
null,
|
|
|
|
// TRANS: Form field instructions in SMS settings form.
|
|
|
|
_('Enter the code you received on your phone.')
|
|
|
|
);
|
2009-01-18 21:14:47 +00:00
|
|
|
$this->elementEnd('li');
|
|
|
|
$this->elementEnd('ul');
|
2010-04-11 22:24:38 +01:00
|
|
|
// TRANS: Button label to confirm SMS confirmation code in SMS settings.
|
2019-09-11 06:32:19 +01:00
|
|
|
$this->submit('confirm', _m('BUTTON', 'Confirm'));
|
2015-07-17 13:29:07 +01:00
|
|
|
} catch (NoResultException $e) {
|
2009-01-19 03:09:13 +00:00
|
|
|
$this->elementStart('ul', 'form_data');
|
2009-01-18 21:14:47 +00:00
|
|
|
$this->elementStart('li');
|
2010-04-11 22:24:38 +01:00
|
|
|
// TRANS: Field label for SMS phone number input in SMS settings form.
|
2019-09-11 06:32:19 +01:00
|
|
|
$this->input(
|
|
|
|
'sms',
|
|
|
|
_('SMS phone number'),
|
|
|
|
($this->arg('sms') ?: null),
|
|
|
|
// TRANS: SMS phone number input field instructions in SMS settings form.
|
|
|
|
_('Phone number, no punctuation or spaces, ' .
|
|
|
|
'with area code.')
|
|
|
|
);
|
2009-01-18 21:14:47 +00:00
|
|
|
$this->elementEnd('li');
|
|
|
|
$this->elementEnd('ul');
|
2009-01-16 20:56:39 +00:00
|
|
|
$this->carrierSelect();
|
2010-04-11 22:24:38 +01:00
|
|
|
// TRANS: Button label for adding a SMS phone number in SMS settings form.
|
2019-09-11 06:32:19 +01:00
|
|
|
$this->submit('add', _m('BUTTON', 'Add'));
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
}
|
2009-01-17 00:49:48 +00:00
|
|
|
$this->elementEnd('fieldset');
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2019-11-02 09:21:43 +00:00
|
|
|
if (!$user->isNull('sms')) {
|
2019-09-11 06:32:19 +01:00
|
|
|
$this->elementStart('fieldset', ['id' => 'settings_sms_incoming_email']);
|
2010-04-11 22:24:38 +01:00
|
|
|
// XXX: Confused! This is about SMS. Should this message be updated?
|
|
|
|
// TRANS: Form legend for incoming SMS settings form.
|
2009-01-18 21:14:47 +00:00
|
|
|
$this->element('legend', null, _('Incoming email'));
|
2009-01-16 20:56:39 +00:00
|
|
|
|
2019-11-02 09:21:43 +00:00
|
|
|
if (!$user->isNull('incomingemail')) {
|
2009-01-18 21:14:47 +00:00
|
|
|
$this->element('p', 'form_unconfirmed', $user->incomingemail);
|
2019-09-11 06:32:19 +01:00
|
|
|
$this->element(
|
|
|
|
'p',
|
|
|
|
'form_note',
|
|
|
|
// XXX: Confused! This is about SMS. Should this message be updated?
|
|
|
|
// TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
|
|
|
|
_('Send email to this address to post new notices.')
|
|
|
|
);
|
2010-04-11 22:24:38 +01:00
|
|
|
// TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
|
2019-09-11 06:32:19 +01:00
|
|
|
$this->submit('removeincoming', _m('BUTTON', 'Remove'));
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-01-16 20:56:39 +00:00
|
|
|
|
2019-09-11 06:32:19 +01:00
|
|
|
$this->element(
|
|
|
|
'p',
|
|
|
|
'form_guide',
|
|
|
|
// XXX: Confused! This is about SMS. Should this message be updated?
|
|
|
|
// TRANS: Instructions for incoming SMS e-mail address input form.
|
|
|
|
_('Make a new email address for posting to; ' .
|
|
|
|
'cancels the old one.')
|
|
|
|
);
|
2010-04-11 22:24:38 +01:00
|
|
|
// TRANS: Button label for adding an SMS e-mail address to send notices from.
|
2019-09-11 06:32:19 +01:00
|
|
|
$this->submit('newincoming', _m('BUTTON', 'New'));
|
2009-01-18 21:14:47 +00:00
|
|
|
$this->elementEnd('fieldset');
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-01-16 20:56:39 +00:00
|
|
|
|
2009-01-17 01:08:55 +00:00
|
|
|
$this->elementStart('fieldset', array('id' => 'settings_sms_preferences'));
|
2010-04-11 22:24:38 +01:00
|
|
|
// TRANS: Form legend for SMS preferences form.
|
|
|
|
$this->element('legend', null, _('SMS preferences'));
|
2009-01-17 01:08:55 +00:00
|
|
|
|
2009-01-19 03:09:13 +00:00
|
|
|
$this->elementStart('ul', 'form_data');
|
2009-01-17 01:08:55 +00:00
|
|
|
$this->elementStart('li');
|
2019-09-11 06:32:19 +01:00
|
|
|
$this->checkbox(
|
|
|
|
'smsnotify',
|
|
|
|
// TRANS: Checkbox label in SMS preferences form.
|
|
|
|
_('Send me notices through SMS; ' .
|
|
|
|
'I understand I may incur ' .
|
|
|
|
'exorbitant charges from my carrier.'),
|
|
|
|
$user->smsnotify
|
|
|
|
);
|
2009-01-17 01:08:55 +00:00
|
|
|
$this->elementEnd('li');
|
|
|
|
$this->elementEnd('ul');
|
2009-01-16 20:56:39 +00:00
|
|
|
|
2010-04-11 22:24:38 +01:00
|
|
|
// TRANS: Button label to save SMS preferences.
|
2019-09-11 06:32:19 +01:00
|
|
|
$this->submit('save', _m('BUTTON', 'Save'));
|
2009-01-16 20:56:39 +00:00
|
|
|
|
2009-01-17 00:49:48 +00:00
|
|
|
$this->elementEnd('fieldset');
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementEnd('form');
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2009-01-16 20:56:39 +00:00
|
|
|
/**
|
|
|
|
* Get a pending confirmation, if any, for this user
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*
|
|
|
|
* @todo very similar to EmailsettingsAction::getConfirmation(); refactor?
|
|
|
|
*/
|
2019-09-11 06:32:19 +01:00
|
|
|
public function getConfirmation()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
$confirm = new Confirm_address();
|
2009-01-16 20:56:39 +00:00
|
|
|
|
2015-07-17 13:29:07 +01:00
|
|
|
$confirm->user_id = $this->scoped->getID();
|
2008-12-23 19:19:07 +00:00
|
|
|
$confirm->address_type = 'sms';
|
2009-01-16 20:56:39 +00:00
|
|
|
|
2008-12-23 19:44:28 +00:00
|
|
|
if ($confirm->find(true)) {
|
2008-12-23 19:19:07 +00:00
|
|
|
return $confirm;
|
|
|
|
}
|
2015-07-17 13:29:07 +01:00
|
|
|
|
|
|
|
throw new NoResultException($confirm);
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2015-07-17 13:29:07 +01:00
|
|
|
protected function doPost()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($this->arg('save')) {
|
2015-07-17 13:29:07 +01:00
|
|
|
return $this->savePreferences();
|
2019-09-11 06:32:19 +01:00
|
|
|
} elseif ($this->arg('add')) {
|
2015-07-17 13:29:07 +01:00
|
|
|
return $this->addAddress();
|
2019-09-11 06:32:19 +01:00
|
|
|
} elseif ($this->arg('cancel')) {
|
2015-07-17 13:29:07 +01:00
|
|
|
return $this->cancelConfirmation();
|
2019-09-11 06:32:19 +01:00
|
|
|
} elseif ($this->arg('remove')) {
|
2015-07-17 13:29:07 +01:00
|
|
|
return $this->removeAddress();
|
2019-09-11 06:32:19 +01:00
|
|
|
} elseif ($this->arg('removeincoming')) {
|
2015-07-17 13:29:07 +01:00
|
|
|
return $this->removeIncoming();
|
2019-09-11 06:32:19 +01:00
|
|
|
} elseif ($this->arg('newincoming')) {
|
2015-07-17 13:29:07 +01:00
|
|
|
return $this->newIncoming();
|
2019-09-11 06:32:19 +01:00
|
|
|
} elseif ($this->arg('confirm')) {
|
2015-07-17 13:29:07 +01:00
|
|
|
return $this->confirmCode();
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2015-07-17 13:29:07 +01:00
|
|
|
// TRANS: Message given submitting a form with an unknown action in SMS settings.
|
|
|
|
throw new ClientException(_('Unexpected form submission.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2009-01-16 20:56:39 +00:00
|
|
|
/**
|
|
|
|
* Handle a request to save preferences
|
|
|
|
*
|
|
|
|
* Sets the user's SMS preferences in the DB.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2019-09-11 06:32:19 +01:00
|
|
|
public function savePreferences()
|
2009-01-16 20:56:39 +00:00
|
|
|
{
|
2015-07-17 13:29:07 +01:00
|
|
|
$user = $this->scoped->getUser();
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2020-06-08 10:25:01 +01:00
|
|
|
$user->query('START TRANSACTION');
|
2008-12-23 19:19:07 +00:00
|
|
|
|
|
|
|
$original = clone($user);
|
|
|
|
|
2015-07-17 13:29:07 +01:00
|
|
|
$user->smsnotify = $this->boolean('smsnotify');
|
2008-12-23 19:19:07 +00:00
|
|
|
|
|
|
|
$result = $user->update($original);
|
|
|
|
|
2008-12-23 19:44:28 +00:00
|
|
|
if ($result === false) {
|
2008-12-23 19:19:07 +00:00
|
|
|
common_log_db_error($user, 'UPDATE', __FILE__);
|
2010-04-11 22:24:38 +01:00
|
|
|
// TRANS: Server error thrown on database error updating SMS preferences.
|
2015-07-17 13:29:07 +01:00
|
|
|
throw new ServerException(_('Could not update user.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$user->query('COMMIT');
|
|
|
|
|
2010-04-11 22:24:38 +01:00
|
|
|
// TRANS: Confirmation message for successful SMS preferences save.
|
2015-07-17 13:29:07 +01:00
|
|
|
return _('SMS preferences saved.');
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2009-01-16 20:56:39 +00:00
|
|
|
/**
|
|
|
|
* Add a new SMS number for confirmation
|
|
|
|
*
|
|
|
|
* When the user requests a new SMS number, sends a confirmation
|
|
|
|
* message.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2019-09-11 06:32:19 +01:00
|
|
|
public function addAddress()
|
2009-01-16 20:56:39 +00:00
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
$user = common_current_user();
|
|
|
|
|
2009-01-16 20:56:39 +00:00
|
|
|
$sms = $this->trimmed('sms');
|
2008-12-23 19:19:07 +00:00
|
|
|
$carrier_id = $this->trimmed('carrier');
|
2009-01-16 20:56:39 +00:00
|
|
|
|
|
|
|
// Some validation
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2015-07-17 13:29:07 +01:00
|
|
|
if (empty($sms)) {
|
2010-04-11 22:24:38 +01:00
|
|
|
// TRANS: Message given saving SMS phone number without having provided one.
|
2015-07-17 13:29:07 +01:00
|
|
|
throw new ClientException(_('No phone number.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2015-07-17 13:29:07 +01:00
|
|
|
if (empty($carrier_id)) {
|
2010-04-11 22:24:38 +01:00
|
|
|
// TRANS: Message given saving SMS phone number without having selected a carrier.
|
2015-07-17 13:29:07 +01:00
|
|
|
throw new ClientException(_('No carrier selected.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-01-16 20:56:39 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$sms = common_canonical_sms($sms);
|
2009-01-16 20:56:39 +00:00
|
|
|
|
2015-07-17 13:29:07 +01:00
|
|
|
if ($user->sms === $sms) {
|
2010-04-11 22:24:38 +01:00
|
|
|
// TRANS: Message given saving SMS phone number that is already set.
|
2015-07-17 13:29:07 +01:00
|
|
|
throw new AlreadyFulfilledException(_('That is already your phone number.'));
|
2019-09-11 06:32:19 +01:00
|
|
|
} elseif ($this->smsExists($sms)) {
|
2010-04-11 22:24:38 +01:00
|
|
|
// TRANS: Message given saving SMS phone number that is already set for another user.
|
2015-07-17 13:29:07 +01:00
|
|
|
throw new ClientException(_('That phone number already belongs to another user.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2009-01-16 20:56:39 +00:00
|
|
|
$confirm = new Confirm_address();
|
|
|
|
|
|
|
|
$confirm->address = $sms;
|
|
|
|
$confirm->address_extra = $carrier_id;
|
|
|
|
$confirm->address_type = 'sms';
|
2015-07-17 13:29:07 +01:00
|
|
|
$confirm->user_id = $this->scoped->getID();
|
2009-01-16 20:56:39 +00:00
|
|
|
$confirm->code = common_confirmation_code(40);
|
2008-12-23 19:19:07 +00:00
|
|
|
|
|
|
|
$result = $confirm->insert();
|
|
|
|
|
2008-12-23 19:44:28 +00:00
|
|
|
if ($result === false) {
|
2008-12-23 19:19:07 +00:00
|
|
|
common_log_db_error($confirm, 'INSERT', __FILE__);
|
2010-04-11 22:24:38 +01:00
|
|
|
// TRANS: Server error thrown on database error adding SMS confirmation code.
|
2011-01-20 19:00:45 +00:00
|
|
|
$this->serverError(_('Could not insert confirmation code.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2013-08-18 12:04:58 +01:00
|
|
|
$carrier = Sms_carrier::getKV($carrier_id);
|
2009-01-16 20:56:39 +00:00
|
|
|
|
2019-09-11 06:32:19 +01:00
|
|
|
mail_confirm_sms(
|
|
|
|
$confirm->code,
|
|
|
|
$user->nickname,
|
|
|
|
$carrier->toEmailAddress($sms)
|
|
|
|
);
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2010-04-11 22:24:38 +01:00
|
|
|
// TRANS: Message given saving valid SMS phone number that is to be confirmed.
|
2015-07-17 13:29:07 +01:00
|
|
|
return _('A confirmation code was sent to the phone number you added. '.
|
2009-01-16 20:56:39 +00:00
|
|
|
'Check your phone for the code and instructions '.
|
|
|
|
'on how to use it.');
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2009-01-16 20:56:39 +00:00
|
|
|
/**
|
|
|
|
* Cancel a pending confirmation
|
|
|
|
*
|
|
|
|
* Cancels the confirmation.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2019-09-11 06:32:19 +01:00
|
|
|
public function cancelConfirmation()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-01-16 20:56:39 +00:00
|
|
|
$sms = $this->trimmed('sms');
|
2008-12-23 19:19:07 +00:00
|
|
|
$carrier = $this->trimmed('carrier');
|
2009-01-16 20:56:39 +00:00
|
|
|
|
2015-07-17 13:29:07 +01:00
|
|
|
try {
|
|
|
|
$confirm = $this->getConfirmation();
|
|
|
|
if ($confirm->address != $sms) {
|
|
|
|
// TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
|
|
|
|
throw new ClientException(_('That is the wrong confirmation number.'));
|
|
|
|
}
|
|
|
|
} catch (NoResultException $e) {
|
2010-04-11 22:24:38 +01:00
|
|
|
// TRANS: Message given canceling SMS phone number confirmation that is not pending.
|
2015-07-17 13:29:07 +01:00
|
|
|
throw new AlreadyFulfilledException(_('No pending confirmation to cancel.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2008-07-20 20:30:05 +01:00
|
|
|
|
2016-03-02 14:31:48 +00:00
|
|
|
$confirm->delete();
|
2008-07-20 20:30:05 +01:00
|
|
|
|
2010-04-11 22:24:38 +01:00
|
|
|
// TRANS: Message given after successfully canceling SMS phone number confirmation.
|
2015-07-17 13:29:07 +01:00
|
|
|
return _('SMS confirmation cancelled.');
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2009-01-16 20:56:39 +00:00
|
|
|
/**
|
|
|
|
* Remove a phone number from the user's account
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2019-09-11 06:32:19 +01:00
|
|
|
public function removeAddress()
|
2009-01-16 20:56:39 +00:00
|
|
|
{
|
2015-07-17 13:29:07 +01:00
|
|
|
$user = $this->scoped->getUser();
|
2009-01-16 20:56:39 +00:00
|
|
|
|
|
|
|
$sms = $this->arg('sms');
|
2008-12-23 19:19:07 +00:00
|
|
|
$carrier = $this->arg('carrier');
|
2009-01-16 20:56:39 +00:00
|
|
|
|
|
|
|
// Maybe an old tab open...?
|
2008-12-23 19:19:07 +00:00
|
|
|
|
|
|
|
if ($user->sms != $sms) {
|
2010-04-11 22:24:38 +01:00
|
|
|
// TRANS: Message given trying to remove an SMS phone number that is not
|
|
|
|
// TRANS: registered for the active user.
|
2015-07-17 13:29:07 +01:00
|
|
|
throw new ClientException(_('That is not your phone number.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$original = clone($user);
|
2009-01-16 20:56:39 +00:00
|
|
|
|
2019-11-02 09:21:43 +00:00
|
|
|
$user->sms = $user->sqlValue('NULL');
|
|
|
|
$user->carrier = $user->sqlValue('NULL');
|
|
|
|
$user->smsemail = $user->sqlValue('NULL');
|
2009-01-16 20:56:39 +00:00
|
|
|
|
2015-01-25 11:45:26 +00:00
|
|
|
// Throws exception on failure. Also performs it within a transaction.
|
|
|
|
$user->updateWithKeys($original);
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2010-04-11 22:24:38 +01:00
|
|
|
// TRANS: Message given after successfully removing a registered SMS phone number.
|
2015-07-17 13:29:07 +01:00
|
|
|
return _('The SMS phone number was removed.');
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-01-16 20:56:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Does this sms number exist in our database?
|
|
|
|
*
|
|
|
|
* Also checks if it belongs to someone else
|
|
|
|
*
|
|
|
|
* @param string $sms phone number to check
|
|
|
|
*
|
|
|
|
* @return boolean does the number exist
|
|
|
|
*/
|
2019-09-11 06:32:19 +01:00
|
|
|
public function smsExists($sms)
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2013-08-18 12:04:58 +01:00
|
|
|
$other = User::getKV('sms', $sms);
|
2009-01-16 20:56:39 +00:00
|
|
|
|
2015-07-17 13:29:07 +01:00
|
|
|
if (!$other instanceof User) {
|
2008-12-23 19:19:07 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-07-17 13:29:07 +01:00
|
|
|
|
|
|
|
return !$this->scoped->sameAs($other->getProfile());
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2009-01-16 20:56:39 +00:00
|
|
|
/**
|
|
|
|
* Show a drop-down box with all the SMS carriers in the DB
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2019-09-11 06:32:19 +01:00
|
|
|
public function carrierSelect()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
$carrier = new Sms_carrier();
|
2009-01-16 20:56:39 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$cnt = $carrier->find();
|
|
|
|
|
2009-01-19 03:09:13 +00:00
|
|
|
$this->elementStart('ul', 'form_data');
|
2009-01-17 01:08:55 +00:00
|
|
|
$this->elementStart('li');
|
2010-04-11 22:24:38 +01:00
|
|
|
// TRANS: Label for mobile carrier dropdown menu in SMS settings.
|
2009-01-17 01:08:55 +00:00
|
|
|
$this->element('label', array('for' => 'carrier'), _('Mobile carrier'));
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementStart('select', array('name' => 'carrier',
|
2009-01-16 20:56:39 +00:00
|
|
|
'id' => 'carrier'));
|
2019-09-11 06:32:19 +01:00
|
|
|
$this->element(
|
|
|
|
'option',
|
|
|
|
['value' => 0],
|
|
|
|
// TRANS: Default option for mobile carrier dropdown menu in SMS settings.
|
|
|
|
_('Select a carrier')
|
|
|
|
);
|
2008-12-23 19:19:07 +00:00
|
|
|
while ($carrier->fetch()) {
|
2019-09-11 06:32:19 +01:00
|
|
|
$this->element(
|
|
|
|
'option',
|
|
|
|
['value' => $carrier->id],
|
|
|
|
$carrier->name
|
|
|
|
);
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementEnd('select');
|
2019-09-11 06:32:19 +01:00
|
|
|
$this->element(
|
|
|
|
'p',
|
|
|
|
'form_guide',
|
|
|
|
// TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
|
|
|
|
// TRANS: %s is an administrative contact's e-mail address.
|
|
|
|
sprintf(
|
|
|
|
_('Mobile carrier for your phone. ' .
|
|
|
|
'If you know a carrier that accepts ' .
|
|
|
|
'SMS over email but isn\'t listed here, ' .
|
|
|
|
'send email to let us know at %s.'),
|
|
|
|
common_config('site', 'email')
|
|
|
|
)
|
|
|
|
);
|
2009-01-17 01:08:55 +00:00
|
|
|
$this->elementEnd('li');
|
|
|
|
$this->elementEnd('ul');
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2009-01-16 20:56:39 +00:00
|
|
|
/**
|
|
|
|
* Confirm an SMS confirmation code
|
|
|
|
*
|
|
|
|
* Redirects to the confirmaddress page for this code
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2019-09-11 06:32:19 +01:00
|
|
|
public function confirmCode()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
$code = $this->trimmed('code');
|
2009-01-16 20:56:39 +00:00
|
|
|
|
2015-07-17 13:29:07 +01:00
|
|
|
if (empty($code)) {
|
2010-04-11 22:24:38 +01:00
|
|
|
// TRANS: Message given saving SMS phone number confirmation code without having provided one.
|
2015-07-17 13:29:07 +01:00
|
|
|
throw new ClientException(_('No code entered.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-01-16 20:56:39 +00:00
|
|
|
|
2015-07-17 13:29:07 +01:00
|
|
|
common_redirect(common_local_url('confirmaddress', array('code' => $code)), 303);
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-02-06 20:22:48 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle a request to remove an incoming email address
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2019-09-11 06:32:19 +01:00
|
|
|
public function removeIncoming()
|
2009-02-06 20:22:48 +00:00
|
|
|
{
|
|
|
|
$user = common_current_user();
|
|
|
|
|
|
|
|
if (!$user->incomingemail) {
|
2011-01-30 18:01:55 +00:00
|
|
|
// TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
|
2015-07-17 13:29:07 +01:00
|
|
|
throw new ClientException(_('No incoming email address.'));
|
2009-02-06 20:22:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$orig = clone($user);
|
|
|
|
|
2019-11-02 09:21:43 +00:00
|
|
|
$user->incomingemail = $user->sqlValue('NULL');
|
2009-02-06 20:22:48 +00:00
|
|
|
|
2015-01-25 11:45:26 +00:00
|
|
|
// Throws exception on failure. Also performs it within a transaction.
|
|
|
|
$user->updateWithKeys($orig);
|
2009-02-06 20:22:48 +00:00
|
|
|
|
2011-02-16 23:39:53 +00:00
|
|
|
// TRANS: Confirmation text after updating SMS settings.
|
2015-07-17 13:29:07 +01:00
|
|
|
return _('Incoming email address removed.');
|
2009-02-06 20:22:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate a new incoming email address
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*
|
|
|
|
* @see Emailsettings::newIncoming
|
|
|
|
*/
|
2019-09-11 06:32:19 +01:00
|
|
|
public function newIncoming()
|
2009-02-06 20:22:48 +00:00
|
|
|
{
|
2015-07-17 13:29:07 +01:00
|
|
|
$user = $this->scoped->getUser();
|
2009-02-06 20:22:48 +00:00
|
|
|
|
|
|
|
$orig = clone($user);
|
|
|
|
|
|
|
|
$user->incomingemail = mail_new_incoming_address();
|
|
|
|
|
2015-01-25 11:45:26 +00:00
|
|
|
// Throws exception on failure. Also performs it within a transaction.
|
|
|
|
$user->updateWithKeys($orig);
|
2009-02-06 20:22:48 +00:00
|
|
|
|
2011-02-16 23:39:53 +00:00
|
|
|
// TRANS: Confirmation text after updating SMS settings.
|
2015-07-17 13:29:07 +01:00
|
|
|
return _('New incoming email address added.');
|
2009-02-06 20:22:48 +00:00
|
|
|
}
|
2008-07-20 20:30:05 +01:00
|
|
|
}
|