2008-11-06 21:05:52 +00:00
|
|
|
<?php
|
2009-01-17 22:42:53 +00:00
|
|
|
/**
|
2009-08-25 23:12:20 +01:00
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
2008-11-06 21:05:52 +00:00
|
|
|
*
|
2009-01-17 22:42:53 +00:00
|
|
|
* Miscellaneous settings
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* LICENCE: This program is free software: you can redistribute it and/or modify
|
2008-11-06 21:05:52 +00: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-17 22:42:53 +00:00
|
|
|
*
|
|
|
|
* @category Settings
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Robin Millette <millette@status.net>
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
2009-08-25 23:12:20 +01:00
|
|
|
* @copyright 2008-2009 StatusNet, Inc.
|
2009-01-17 22:42:53 +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-11-06 21:05:52 +00:00
|
|
|
*/
|
|
|
|
|
2009-08-26 15:41:36 +01:00
|
|
|
if (!defined('STATUSNET') && !defined('LACONICA')) {
|
2009-01-17 22:42:53 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
require_once INSTALLDIR.'/lib/accountsettingsaction.php';
|
2008-11-06 21:05:52 +00:00
|
|
|
|
2009-01-17 22:42:53 +00:00
|
|
|
/**
|
|
|
|
* Miscellaneous settings actions
|
|
|
|
*
|
|
|
|
* Currently this just manages URL shortening.
|
|
|
|
*
|
|
|
|
* @category Settings
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Robin Millette <millette@status.net>
|
|
|
|
* @author Zach Copley <zach@status.net>
|
2009-01-17 22:42:53 +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-17 22:42:53 +00:00
|
|
|
*/
|
2008-11-06 21:05:52 +00:00
|
|
|
|
2009-01-17 22:30:44 +00:00
|
|
|
class OthersettingsAction extends AccountSettingsAction
|
2008-12-23 19:49:23 +00:00
|
|
|
{
|
2009-01-17 22:42:53 +00:00
|
|
|
/**
|
|
|
|
* Title of the page
|
|
|
|
*
|
|
|
|
* @return string Title of the page
|
|
|
|
*/
|
2008-11-06 21:05:52 +00:00
|
|
|
|
2009-01-17 22:42:53 +00:00
|
|
|
function title()
|
|
|
|
{
|
2010-01-14 22:32:40 +00:00
|
|
|
return _('Other settings');
|
2009-01-17 22:42:53 +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 _('Manage various other options.');
|
|
|
|
}
|
2008-11-06 21:05:52 +00:00
|
|
|
|
2009-09-03 20:42:50 +01:00
|
|
|
function showScripts()
|
|
|
|
{
|
|
|
|
parent::showScripts();
|
|
|
|
$this->autofocus('urlshorteningservice');
|
|
|
|
}
|
|
|
|
|
2009-01-17 22:42:53 +00:00
|
|
|
/**
|
|
|
|
* Content area of the page
|
|
|
|
*
|
|
|
|
* Shows a form for uploading an avatar.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
|
|
|
|
function showContent()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
$user = common_current_user();
|
2008-12-12 04:46:00 +00:00
|
|
|
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementStart('form', array('method' => 'post',
|
2009-01-17 23:52:37 +00:00
|
|
|
'id' => 'form_settings_other',
|
|
|
|
'class' => 'form_settings',
|
2009-01-17 22:42:53 +00:00
|
|
|
'action' =>
|
|
|
|
common_local_url('othersettings')));
|
2009-01-17 23:52:37 +00:00
|
|
|
$this->elementStart('fieldset');
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->hidden('token', common_session_token());
|
2009-11-11 22:05:24 +00:00
|
|
|
$this->elementStart('ul', 'form_data');
|
2008-11-06 21:05:52 +00:00
|
|
|
|
2009-11-11 22:09:00 +00:00
|
|
|
$shorteners = array();
|
2009-11-11 19:02:57 +00:00
|
|
|
Event::handle('GetUrlShorteners', array(&$shorteners));
|
2009-11-11 22:09:00 +00:00
|
|
|
$services = array();
|
2009-11-11 19:02:57 +00:00
|
|
|
foreach($shorteners as $name=>$value)
|
|
|
|
{
|
|
|
|
$services[$name]=$name;
|
|
|
|
if($value['freeService']){
|
|
|
|
$services[$name].=_(' (free service)');
|
2009-09-03 19:58:50 +01:00
|
|
|
}
|
|
|
|
}
|
2009-11-11 22:05:24 +00:00
|
|
|
if($services)
|
|
|
|
{
|
|
|
|
asort($services);
|
2009-01-17 22:42:53 +00:00
|
|
|
|
2009-11-11 22:05:24 +00:00
|
|
|
$this->elementStart('li');
|
|
|
|
$this->dropdown('urlshorteningservice', _('Shorten URLs with'),
|
|
|
|
$services, _('Automatic shortening service to use.'),
|
|
|
|
false, $user->urlshorteningservice);
|
|
|
|
$this->elementEnd('li');
|
|
|
|
}
|
2009-07-05 19:33:12 +01:00
|
|
|
$this->elementStart('li');
|
|
|
|
$this->checkbox('viewdesigns', _('View profile designs'),
|
|
|
|
$user->viewdesigns, _('Show or hide profile designs.'));
|
|
|
|
$this->elementEnd('li');
|
2009-01-17 23:52:37 +00:00
|
|
|
$this->elementEnd('ul');
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->submit('save', _('Save'));
|
2009-01-17 23:52:37 +00:00
|
|
|
$this->elementEnd('fieldset');
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementEnd('form');
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2008-12-04 18:02:33 +00:00
|
|
|
|
2009-01-17 22:42:53 +00:00
|
|
|
/**
|
|
|
|
* Handle a post
|
|
|
|
*
|
|
|
|
* Saves the changes to url-shortening prefs and shows a success or failure
|
|
|
|
* message.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-01-17 22:42:53 +00:00
|
|
|
function handlePost()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-01-17 22:42:53 +00:00
|
|
|
// CSRF protection
|
2008-12-23 19:19:07 +00:00
|
|
|
$token = $this->trimmed('token');
|
|
|
|
if (!$token || $token != common_session_token()) {
|
2009-01-17 22:42:53 +00:00
|
|
|
$this->showForm(_('There was a problem with your session token. '.
|
|
|
|
'Try again, please.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
return;
|
|
|
|
}
|
2008-11-06 21:05:52 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$urlshorteningservice = $this->trimmed('urlshorteningservice');
|
2008-12-12 04:46:00 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if (!is_null($urlshorteningservice) && strlen($urlshorteningservice) > 50) {
|
2009-01-17 22:42:53 +00:00
|
|
|
$this->showForm(_('URL shortening service is too long (max 50 chars).'));
|
2008-12-23 19:19:07 +00:00
|
|
|
return;
|
|
|
|
}
|
2008-12-12 04:46:00 +00:00
|
|
|
|
2009-07-05 19:33:12 +01:00
|
|
|
$viewdesigns = $this->boolean('viewdesigns');
|
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$user = common_current_user();
|
2008-11-06 21:05:52 +00:00
|
|
|
|
2009-01-17 22:42:53 +00:00
|
|
|
assert(!is_null($user)); // should already be checked
|
2008-11-06 21:05:52 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$user->query('BEGIN');
|
2008-11-06 21:05:52 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$original = clone($user);
|
2008-11-06 21:05:52 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$user->urlshorteningservice = $urlshorteningservice;
|
2009-07-05 19:33:12 +01:00
|
|
|
$user->viewdesigns = $viewdesigns;
|
2008-11-06 21:05:52 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$result = $user->update($original);
|
2008-11-06 21:05:52 +00:00
|
|
|
|
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;
|
|
|
|
}
|
2008-11-06 21:05:52 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$user->query('COMMIT');
|
2008-11-06 21:05:52 +00:00
|
|
|
|
2009-01-17 22:42:53 +00:00
|
|
|
$this->showForm(_('Preferences saved.'), true);
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2008-11-06 21:05:52 +00:00
|
|
|
}
|