2009-04-12 21:30:14 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2009-08-25 23:12:20 +01:00
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
2009-04-12 21:30:14 +01:00
|
|
|
*
|
|
|
|
* Change user password
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* LICENCE: This program 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.
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
* @category Settings
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Sarven Capadisli <csarven@status.net>
|
|
|
|
* @author Zach Copley <zach@status.net>
|
2009-08-25 23:12:20 +01:00
|
|
|
* @copyright 2008-2009 StatusNet, Inc.
|
2009-04-12 21:30:14 +01: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-04-12 21:30:14 +01:00
|
|
|
*/
|
|
|
|
|
2009-08-26 15:41:36 +01:00
|
|
|
if (!defined('STATUSNET') && !defined('LACONICA')) {
|
2009-04-12 21:30:14 +01:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2009-06-30 00:55:42 +01:00
|
|
|
/**
|
|
|
|
* Base class for setting a user or group design
|
|
|
|
*
|
|
|
|
* Shows the design setting form and also handles some things like saving
|
|
|
|
* background images, and fetching a default design
|
|
|
|
*
|
|
|
|
* @category Settings
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Zach Copley <zach@status.net>
|
|
|
|
* @author Sarven Capadisli <csarven@status.net>
|
2009-06-30 00:55:42 +01: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-06-30 00:55:42 +01:00
|
|
|
*/
|
2011-01-23 17:35:35 +00:00
|
|
|
|
|
|
|
class DesignSettingsAction extends SettingsAction
|
2009-04-12 21:30:14 +01:00
|
|
|
{
|
2009-06-18 10:01:06 +01:00
|
|
|
var $submitaction = null;
|
|
|
|
|
2009-04-12 21:30:14 +01:00
|
|
|
/**
|
|
|
|
* Title of the page
|
|
|
|
*
|
|
|
|
* @return string Title of the page
|
|
|
|
*/
|
|
|
|
function title()
|
|
|
|
{
|
2010-11-04 18:16:19 +00:00
|
|
|
// TRANS: Page title for profile design page.
|
2009-04-12 21:30:14 +01:00
|
|
|
return _('Profile design');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Instructions for use
|
|
|
|
*
|
|
|
|
* @return instructions for use
|
|
|
|
*/
|
|
|
|
function getInstructions()
|
|
|
|
{
|
2010-11-04 18:16:19 +00:00
|
|
|
// TRANS: Instructions for profile design page.
|
2009-06-17 03:17:37 +01:00
|
|
|
return _('Customize the way your profile looks ' .
|
|
|
|
'with a background image and a colour palette of your choice.');
|
2009-04-12 21:30:14 +01:00
|
|
|
}
|
|
|
|
|
2009-06-30 00:55:42 +01:00
|
|
|
/**
|
|
|
|
* Shows the design settings form
|
|
|
|
*
|
|
|
|
* @param Design $design a working design to show
|
|
|
|
*
|
|
|
|
* @return nothing
|
|
|
|
*/
|
2009-06-18 10:01:06 +01:00
|
|
|
function showDesignForm($design)
|
2009-04-12 21:30:14 +01:00
|
|
|
{
|
2010-05-31 16:49:14 +01:00
|
|
|
$form = new DesignForm($this, $design, $this->selfUrl());
|
|
|
|
$form->show();
|
2009-06-16 04:21:33 +01:00
|
|
|
|
2009-04-12 21:30:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle a post
|
|
|
|
*
|
|
|
|
* Validate input and save changes. Reload the form with a success
|
|
|
|
* or error message.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function handlePost()
|
|
|
|
{
|
2009-06-17 03:17:37 +01:00
|
|
|
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
|
|
|
|
2009-11-07 01:21:08 +00:00
|
|
|
// Workaround for PHP returning empty $_POST and $_FILES when POST
|
|
|
|
// length > post_max_size in php.ini
|
|
|
|
|
|
|
|
if (empty($_FILES)
|
|
|
|
&& empty($_POST)
|
|
|
|
&& ($_SERVER['CONTENT_LENGTH'] > 0)
|
|
|
|
) {
|
2010-11-04 18:16:19 +00:00
|
|
|
// TRANS: Form validation error in design settings form. POST should remain untranslated.
|
|
|
|
$msg = _m('The server was unable to handle that much POST data (%s byte) due to its current configuration.',
|
|
|
|
'The server was unable to handle that much POST data (%s bytes) due to its current configuration.',
|
|
|
|
intval($_SERVER['CONTENT_LENGTH']));
|
2009-06-17 03:17:37 +01:00
|
|
|
|
|
|
|
$this->showForm(sprintf($msg, $_SERVER['CONTENT_LENGTH']));
|
2009-11-07 01:21:08 +00:00
|
|
|
return;
|
2009-06-17 03:17:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-14 10:03:50 +01:00
|
|
|
// CSRF protection
|
|
|
|
$token = $this->trimmed('token');
|
|
|
|
if (!$token || $token != common_session_token()) {
|
2011-04-03 22:47:46 +01:00
|
|
|
// TRANS: Client error displayed when the session token does not match or is not given.
|
2009-06-14 10:03:50 +01:00
|
|
|
$this->showForm(_('There was a problem with your session token. '.
|
|
|
|
'Try again, please.'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->arg('save')) {
|
|
|
|
$this->saveDesign();
|
2009-06-29 22:52:38 +01:00
|
|
|
} else if ($this->arg('defaults')) {
|
|
|
|
$this->restoreDefaults();
|
2009-06-14 10:03:50 +01:00
|
|
|
} else {
|
2010-11-04 18:16:19 +00:00
|
|
|
// TRANS: Unknown form validation error in design settings form.
|
2009-06-14 10:03:50 +01:00
|
|
|
$this->showForm(_('Unexpected form submission.'));
|
|
|
|
}
|
2009-04-12 21:30:14 +01:00
|
|
|
}
|
2009-04-13 06:39:23 +01:00
|
|
|
|
|
|
|
/**
|
2009-05-18 21:10:46 +01:00
|
|
|
* Add the Farbtastic stylesheet
|
2009-04-13 06:39:23 +01:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function showStylesheets()
|
|
|
|
{
|
|
|
|
parent::showStylesheets();
|
2010-01-18 11:29:05 +00:00
|
|
|
$this->cssLink('js/farbtastic/farbtastic.css',null,'screen, projection, tv');
|
2009-04-13 06:39:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-05-18 21:10:46 +01:00
|
|
|
* Add the Farbtastic scripts
|
2009-04-13 06:39:23 +01:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function showScripts()
|
|
|
|
{
|
|
|
|
parent::showScripts();
|
|
|
|
|
2010-01-27 16:37:22 +00:00
|
|
|
$this->script('farbtastic/farbtastic.js');
|
|
|
|
$this->script('userdesign.go.js');
|
2009-09-03 20:42:50 +01:00
|
|
|
|
|
|
|
$this->autofocus('design_background-image_file');
|
2009-04-13 06:39:23 +01:00
|
|
|
}
|
2009-06-16 04:21:33 +01:00
|
|
|
|
2009-06-29 22:52:38 +01:00
|
|
|
/**
|
|
|
|
* Save the background image, if any, and set its disposition
|
|
|
|
*
|
2009-06-30 00:55:42 +01:00
|
|
|
* @param Design $design a working design to attach the img to
|
|
|
|
*
|
2009-06-29 22:52:38 +01:00
|
|
|
* @return nothing
|
|
|
|
*/
|
2009-06-30 00:55:42 +01:00
|
|
|
function saveBackgroundImage($design)
|
|
|
|
{
|
2009-06-17 03:17:37 +01:00
|
|
|
// Now that we have a Design ID we can add a file to the design.
|
|
|
|
// XXX: This is an additional DB hit, but figured having the image
|
|
|
|
// associated with the Design rather than the User was worth
|
|
|
|
// it. -- Zach
|
|
|
|
|
2010-09-11 21:16:38 +01:00
|
|
|
if (array_key_exists('design_background-image_file', $_FILES) &&
|
|
|
|
$_FILES['design_background-image_file']['error'] == UPLOAD_ERR_OK) {
|
2009-06-17 03:17:37 +01:00
|
|
|
|
|
|
|
$filepath = null;
|
|
|
|
|
|
|
|
try {
|
2010-09-11 21:16:38 +01:00
|
|
|
$imagefile = ImageFile::fromUpload('design_background-image_file');
|
2009-06-30 00:55:42 +01:00
|
|
|
} catch (Exception $e) {
|
|
|
|
$this->showForm($e->getMessage());
|
|
|
|
return;
|
|
|
|
}
|
2009-06-17 03:17:37 +01:00
|
|
|
|
|
|
|
$filename = Design::filename($design->id,
|
2010-09-11 21:16:38 +01:00
|
|
|
image_type_to_extension($imagefile->type),
|
|
|
|
common_timestamp());
|
2009-06-17 03:17:37 +01:00
|
|
|
|
|
|
|
$filepath = Design::path($filename);
|
|
|
|
|
|
|
|
move_uploaded_file($imagefile->filepath, $filepath);
|
|
|
|
|
2009-06-30 00:55:42 +01:00
|
|
|
// delete any old backround img laying around
|
|
|
|
|
|
|
|
if (isset($design->backgroundimage)) {
|
|
|
|
@unlink(Design::path($design->backgroundimage));
|
|
|
|
}
|
|
|
|
|
2009-06-17 03:17:37 +01:00
|
|
|
$original = clone($design);
|
2009-06-30 00:55:42 +01:00
|
|
|
|
2009-06-17 03:17:37 +01:00
|
|
|
$design->backgroundimage = $filename;
|
2009-06-24 08:43:48 +01:00
|
|
|
|
|
|
|
// default to on, no tile
|
|
|
|
|
2009-06-17 11:02:43 +01:00
|
|
|
$design->setDisposition(true, false, false);
|
2009-06-24 08:43:48 +01:00
|
|
|
|
2009-06-17 03:17:37 +01:00
|
|
|
$result = $design->update($original);
|
|
|
|
|
|
|
|
if ($result === false) {
|
|
|
|
common_log_db_error($design, 'UPDATE', __FILE__);
|
2010-11-04 18:16:19 +00:00
|
|
|
// TRANS: Error message displayed if design settings could not be saved.
|
2009-06-17 03:17:37 +01:00
|
|
|
$this->showForm(_('Couldn\'t update your design.'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2009-06-14 10:03:50 +01:00
|
|
|
}
|
|
|
|
|
2009-06-29 22:52:38 +01:00
|
|
|
/**
|
|
|
|
* Restore the user or group design to system defaults
|
|
|
|
*
|
|
|
|
* @return nothing
|
|
|
|
*/
|
|
|
|
function restoreDefaults()
|
|
|
|
{
|
2009-12-03 00:44:23 +00:00
|
|
|
$design = $this->getWorkingDesign();
|
2009-06-29 22:52:38 +01:00
|
|
|
|
2009-12-03 00:44:23 +00:00
|
|
|
if (!empty($design)) {
|
2009-06-29 22:52:38 +01:00
|
|
|
|
2009-12-03 00:44:23 +00:00
|
|
|
$result = $design->delete();
|
2009-06-29 22:52:38 +01:00
|
|
|
|
2009-12-03 00:44:23 +00:00
|
|
|
if ($result === false) {
|
|
|
|
common_log_db_error($design, 'DELETE', __FILE__);
|
2010-11-04 18:16:19 +00:00
|
|
|
// TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
|
2009-12-03 00:44:23 +00:00
|
|
|
$this->showForm(_('Couldn\'t update your design.'));
|
|
|
|
return;
|
|
|
|
}
|
2009-06-29 22:52:38 +01:00
|
|
|
}
|
|
|
|
|
2010-11-04 18:16:19 +00:00
|
|
|
// TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
|
2009-06-29 22:52:38 +01:00
|
|
|
$this->showForm(_('Design defaults restored.'), true);
|
|
|
|
}
|
2009-04-12 21:30:14 +01:00
|
|
|
}
|