2008-07-20 20:30:05 +01:00
|
|
|
<?php
|
2009-01-16 20:56:39 +00:00
|
|
|
/**
|
2009-08-25 23:12:20 +01:00
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
2008-07-20 20:30:05 +01:00
|
|
|
*
|
2009-01-16 20:56:39 +00:00
|
|
|
* Settings for SMS
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* LICENCE: This program is free software: you can redistribute it and/or modify
|
2008-07-20 20:30:05 +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-16 20:56:39 +00:00
|
|
|
*
|
|
|
|
* @category Settings
|
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-16 20:56:39 +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-07-20 20:30:05 +01:00
|
|
|
*/
|
|
|
|
|
2009-08-26 15:41:36 +01:00
|
|
|
if (!defined('STATUSNET') && !defined('LACONICA')) {
|
2009-01-16 20:56:39 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
2008-07-20 20:30:05 +01:00
|
|
|
|
2009-01-17 22:30:44 +00:00
|
|
|
require_once INSTALLDIR.'/lib/connectsettingsaction.php';
|
2009-01-16 20:56:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Settings for SMS
|
|
|
|
*
|
|
|
|
* @category Settings
|
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-16 20:56:39 +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-16 20:56:39 +00:00
|
|
|
*
|
|
|
|
* @see SettingsAction
|
|
|
|
*/
|
2008-07-20 20:30:05 +01:00
|
|
|
|
2009-01-17 22:30:44 +00:00
|
|
|
class SmssettingsAction extends ConnectSettingsAction
|
2008-12-23 19:49:23 +00:00
|
|
|
{
|
2009-01-16 20:56:39 +00:00
|
|
|
/**
|
|
|
|
* Title of the page
|
|
|
|
*
|
|
|
|
* @return string Title of the page
|
|
|
|
*/
|
2008-07-20 20:30:05 +01:00
|
|
|
|
2009-01-16 20:56:39 +00:00
|
|
|
function title()
|
|
|
|
{
|
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
|
|
|
|
*/
|
|
|
|
|
|
|
|
function getInstructions()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
return _('You can receive SMS messages through email from %%site.name%%.');
|
|
|
|
}
|
|
|
|
|
2009-09-03 20:42:50 +01:00
|
|
|
function showScripts()
|
|
|
|
{
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
|
|
|
|
function showContent()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-08-06 18:18:17 +01:00
|
|
|
if (!common_config('sms', 'enabled')) {
|
|
|
|
$this->element('div', array('class' => 'error'),
|
|
|
|
_('SMS is not available.'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$user = common_current_user();
|
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'));
|
2009-01-17 00:49:48 +00:00
|
|
|
$this->element('legend', null, _('Address'));
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->hidden('token', common_session_token());
|
2008-12-23 19:19:07 +00:00
|
|
|
|
|
|
|
if ($user->sms) {
|
|
|
|
$carrier = $user->getCarrier();
|
2009-01-18 21:14:47 +00:00
|
|
|
$this->element('p', 'form_confirmed',
|
2009-01-16 20:56:39 +00:00
|
|
|
$user->sms . ' (' . $carrier->name . ')');
|
2009-01-18 21:14:47 +00:00
|
|
|
$this->element('p', 'form_guide',
|
2008-12-23 19:19:07 +00:00
|
|
|
_('Current confirmed SMS-enabled phone number.'));
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->hidden('sms', $user->sms);
|
|
|
|
$this->hidden('carrier', $user->carrier);
|
|
|
|
$this->submit('remove', _('Remove'));
|
2008-12-23 19:19:07 +00:00
|
|
|
} else {
|
2009-01-16 20:56:39 +00:00
|
|
|
$confirm = $this->getConfirmation();
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($confirm) {
|
|
|
|
$carrier = Sms_carrier::staticGet($confirm->address_extra);
|
2009-01-18 21:14:47 +00:00
|
|
|
$this->element('p', 'form_unconfirmed',
|
2009-01-16 20:56:39 +00:00
|
|
|
$confirm->address . ' (' . $carrier->name . ')');
|
2009-01-18 21:14:47 +00:00
|
|
|
$this->element('p', 'form_guide',
|
2008-12-23 19:19:07 +00:00
|
|
|
_('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);
|
|
|
|
$this->submit('cancel', _('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');
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->input('code', _('Confirmation code'), null,
|
2008-12-23 19:19:07 +00:00
|
|
|
_('Enter the code you received on your phone.'));
|
2009-01-18 21:14:47 +00:00
|
|
|
$this->elementEnd('li');
|
|
|
|
$this->elementEnd('ul');
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->submit('confirm', _('Confirm'));
|
2008-12-23 19:19:07 +00:00
|
|
|
} else {
|
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-01-10 11:26:24 +00:00
|
|
|
$this->input('sms', _('SMS phone number'),
|
2008-12-23 19:21:29 +00:00
|
|
|
($this->arg('sms')) ? $this->arg('sms') : null,
|
2009-01-16 20:56:39 +00:00
|
|
|
_('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();
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->submit('add', _('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
|
|
|
|
|
|
|
if ($user->sms) {
|
2009-01-18 21:14:47 +00:00
|
|
|
$this->elementStart('fieldset', array('id' => 'settings_sms_incoming_email'));
|
|
|
|
$this->element('legend', null, _('Incoming email'));
|
2009-01-16 20:56:39 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($user->incomingemail) {
|
2009-01-18 21:14:47 +00:00
|
|
|
$this->element('p', 'form_unconfirmed', $user->incomingemail);
|
|
|
|
$this->element('p', 'form_note',
|
2008-12-23 19:19:07 +00:00
|
|
|
_('Send email to this address to post new notices.'));
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->submit('removeincoming', _('Remove'));
|
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->element('p', 'form_guide',
|
2009-01-16 20:56:39 +00:00
|
|
|
_('Make a new email address for posting to; '.
|
|
|
|
'cancels the old one.'));
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->submit('newincoming', _('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'));
|
2009-01-17 00:49:48 +00:00
|
|
|
$this->element('legend', null, _('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');
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->checkbox('smsnotify',
|
2009-01-16 20:56:39 +00:00
|
|
|
_('Send me notices through SMS; '.
|
|
|
|
'I understand I may incur '.
|
|
|
|
'exorbitant charges from my carrier.'),
|
2008-12-23 19:19:07 +00:00
|
|
|
$user->smsnotify);
|
2009-01-17 01:08:55 +00:00
|
|
|
$this->elementEnd('li');
|
|
|
|
$this->elementEnd('ul');
|
2009-01-16 20:56:39 +00:00
|
|
|
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->submit('save', _('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?
|
|
|
|
*/
|
|
|
|
|
|
|
|
function getConfirmation()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
$user = common_current_user();
|
2009-01-16 20:56:39 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$confirm = new Confirm_address();
|
2009-01-16 20:56:39 +00:00
|
|
|
|
|
|
|
$confirm->user_id = $user->id;
|
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;
|
|
|
|
} else {
|
2008-12-23 19:21:29 +00:00
|
|
|
return null;
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-16 20:56:39 +00:00
|
|
|
/**
|
|
|
|
* Handle posts to this form
|
|
|
|
*
|
|
|
|
* Based on the button that was pressed, muxes out to other functions
|
|
|
|
* to do the actual task requested.
|
|
|
|
*
|
|
|
|
* All sub-functions reload the form with a message -- success or failure.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
|
|
|
|
function handlePost()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-01-16 20:56:39 +00:00
|
|
|
// CSRF protection
|
2008-12-23 19:19:07 +00:00
|
|
|
|
|
|
|
$token = $this->trimmed('token');
|
|
|
|
if (!$token || $token != common_session_token()) {
|
2009-01-16 20:56:39 +00:00
|
|
|
$this->showForm(_('There was a problem with your session token. '.
|
|
|
|
'Try again, please.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->arg('save')) {
|
2009-01-16 20:56:39 +00:00
|
|
|
$this->savePreferences();
|
2008-12-23 19:19:07 +00:00
|
|
|
} else if ($this->arg('add')) {
|
2009-01-16 20:56:39 +00:00
|
|
|
$this->addAddress();
|
2008-12-23 19:19:07 +00:00
|
|
|
} else if ($this->arg('cancel')) {
|
2009-01-16 20:56:39 +00:00
|
|
|
$this->cancelConfirmation();
|
2008-12-23 19:19:07 +00:00
|
|
|
} else if ($this->arg('remove')) {
|
2009-01-16 20:56:39 +00:00
|
|
|
$this->removeAddress();
|
2008-12-23 19:19:07 +00:00
|
|
|
} else if ($this->arg('removeincoming')) {
|
2009-01-16 20:56:39 +00:00
|
|
|
$this->removeIncoming();
|
2008-12-23 19:19:07 +00:00
|
|
|
} else if ($this->arg('newincoming')) {
|
2009-01-16 20:56:39 +00:00
|
|
|
$this->newIncoming();
|
2008-12-23 19:19:07 +00:00
|
|
|
} else if ($this->arg('confirm')) {
|
2009-01-16 20:56:39 +00:00
|
|
|
$this->confirmCode();
|
2008-12-23 19:19:07 +00:00
|
|
|
} else {
|
2009-01-16 20:56:39 +00:00
|
|
|
$this->showForm(_('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
|
|
|
|
*/
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-01-16 20:56:39 +00:00
|
|
|
function savePreferences()
|
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
$smsnotify = $this->boolean('smsnotify');
|
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
|
|
|
assert(!is_null($user)); // should already be checked
|
2008-12-23 19:19:07 +00:00
|
|
|
|
|
|
|
$user->query('BEGIN');
|
|
|
|
|
|
|
|
$original = clone($user);
|
|
|
|
|
|
|
|
$user->smsnotify = $smsnotify;
|
|
|
|
|
|
|
|
$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__);
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->serverError(_('Couldn\'t update user.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$user->query('COMMIT');
|
|
|
|
|
2009-01-16 20:56:39 +00:00
|
|
|
$this->showForm(_('Preferences saved.'), true);
|
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
|
|
|
|
*/
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-01-16 20:56:39 +00:00
|
|
|
function addAddress()
|
|
|
|
{
|
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
|
|
|
|
|
|
|
if (!$sms) {
|
2009-01-16 20:56:39 +00:00
|
|
|
$this->showForm(_('No phone number.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$carrier_id) {
|
2009-01-16 20:56:39 +00:00
|
|
|
$this->showForm(_('No carrier selected.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
return;
|
|
|
|
}
|
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
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($user->sms == $sms) {
|
2009-01-16 20:56:39 +00:00
|
|
|
$this->showForm(_('That is already your phone number.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
return;
|
2009-01-16 20:56:39 +00:00
|
|
|
} else if ($this->smsExists($sms)) {
|
|
|
|
$this->showForm(_('That phone number already belongs to another user.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-01-16 20:56:39 +00:00
|
|
|
$confirm = new Confirm_address();
|
|
|
|
|
|
|
|
$confirm->address = $sms;
|
|
|
|
$confirm->address_extra = $carrier_id;
|
|
|
|
$confirm->address_type = 'sms';
|
|
|
|
$confirm->user_id = $user->id;
|
|
|
|
$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__);
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->serverError(_('Couldn\'t insert confirmation code.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$carrier = Sms_carrier::staticGet($carrier_id);
|
2009-01-16 20:56:39 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
mail_confirm_sms($confirm->code,
|
|
|
|
$user->nickname,
|
|
|
|
$carrier->toEmailAddress($sms));
|
|
|
|
|
2009-01-16 20:56:39 +00:00
|
|
|
$msg = _('A confirmation code was sent to the phone number you added. '.
|
|
|
|
'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
|
|
|
$this->showForm($msg, true);
|
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
|
|
|
|
*/
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
$confirm = $this->getConfirmation();
|
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if (!$confirm) {
|
2009-01-16 20:56:39 +00:00
|
|
|
$this->showForm(_('No pending confirmation to cancel.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if ($confirm->address != $sms) {
|
2009-01-16 20:56:39 +00:00
|
|
|
$this->showForm(_('That is the wrong confirmation number.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
return;
|
|
|
|
}
|
2008-07-20 20:30:05 +01:00
|
|
|
|
|
|
|
$result = $confirm->delete();
|
|
|
|
|
|
|
|
if (!$result) {
|
2008-12-23 19:19:07 +00:00
|
|
|
common_log_db_error($confirm, 'DELETE', __FILE__);
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->serverError(_('Couldn\'t delete email confirmation.'));
|
2008-07-20 20:30:05 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-01-16 20:56:39 +00:00
|
|
|
$this->showForm(_('Confirmation cancelled.'), true);
|
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
|
|
|
|
*/
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-01-16 20:56:39 +00:00
|
|
|
function removeAddress()
|
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
$user = common_current_user();
|
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) {
|
2009-01-16 20:56:39 +00:00
|
|
|
$this->showForm(_('That is not your phone number.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$user->query('BEGIN');
|
2009-01-16 20:56:39 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$original = clone($user);
|
2009-01-16 20:56:39 +00:00
|
|
|
|
|
|
|
$user->sms = null;
|
|
|
|
$user->carrier = null;
|
|
|
|
$user->smsemail = null;
|
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$result = $user->updateKeys($original);
|
|
|
|
if (!$result) {
|
|
|
|
common_log_db_error($user, 'UPDATE', __FILE__);
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->serverError(_('Couldn\'t update user.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
$user->query('COMMIT');
|
|
|
|
|
2009-01-16 20:56:39 +00:00
|
|
|
$this->showForm(_('The address was removed.'), true);
|
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
|
|
|
|
*/
|
|
|
|
|
|
|
|
function smsExists($sms)
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
$user = common_current_user();
|
2009-01-16 20:56:39 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$other = User::staticGet('sms', $sms);
|
2009-01-16 20:56:39 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if (!$other) {
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return $other->id != $user->id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-16 20:56:39 +00:00
|
|
|
/**
|
|
|
|
* Show a drop-down box with all the SMS carriers in the DB
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
|
|
|
|
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');
|
|
|
|
$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'));
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->element('option', array('value' => 0),
|
2008-12-23 19:19:07 +00:00
|
|
|
_('Select a carrier'));
|
|
|
|
while ($carrier->fetch()) {
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->element('option', array('value' => $carrier->id),
|
2008-12-23 19:19:07 +00:00
|
|
|
$carrier->name);
|
|
|
|
}
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementEnd('select');
|
2009-01-17 01:08:55 +00:00
|
|
|
$this->element('p', 'form_guide',
|
2008-12-23 19:19:07 +00:00
|
|
|
sprintf(_('Mobile carrier for your phone. '.
|
2009-01-16 20:56:39 +00:00
|
|
|
'If you know a carrier that accepts ' .
|
2008-12-23 19:19:07 +00:00
|
|
|
'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
|
|
|
|
*/
|
|
|
|
|
|
|
|
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
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if (!$code) {
|
2009-01-16 20:56:39 +00:00
|
|
|
$this->showForm(_('No code entered'));
|
2008-12-23 19:19:07 +00:00
|
|
|
return;
|
|
|
|
}
|
2009-01-16 20:56:39 +00:00
|
|
|
|
|
|
|
common_redirect(common_local_url('confirmaddress',
|
2009-04-01 20:30:59 +01:00
|
|
|
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
|
|
|
|
*/
|
|
|
|
|
|
|
|
function removeIncoming()
|
|
|
|
{
|
|
|
|
$user = common_current_user();
|
|
|
|
|
|
|
|
if (!$user->incomingemail) {
|
|
|
|
$this->showForm(_('No incoming email address.'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$orig = clone($user);
|
|
|
|
|
|
|
|
$user->incomingemail = null;
|
|
|
|
|
|
|
|
if (!$user->updateKeys($orig)) {
|
|
|
|
common_log_db_error($user, 'UPDATE', __FILE__);
|
|
|
|
$this->serverError(_("Couldn't update user record."));
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->showForm(_('Incoming email address removed.'), true);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate a new incoming email address
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*
|
|
|
|
* @see Emailsettings::newIncoming
|
|
|
|
*/
|
|
|
|
|
|
|
|
function newIncoming()
|
|
|
|
{
|
|
|
|
$user = common_current_user();
|
|
|
|
|
|
|
|
$orig = clone($user);
|
|
|
|
|
|
|
|
$user->incomingemail = mail_new_incoming_address();
|
|
|
|
|
|
|
|
if (!$user->updateKeys($orig)) {
|
|
|
|
common_log_db_error($user, 'UPDATE', __FILE__);
|
|
|
|
$this->serverError(_("Couldn't update user record."));
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->showForm(_('New incoming email address added.'), true);
|
|
|
|
}
|
2008-07-20 20:30:05 +01:00
|
|
|
}
|