2008-07-16 04:20:45 +01:00
|
|
|
<?php
|
2009-01-21 06:20:17 +00:00
|
|
|
/**
|
|
|
|
* Laconica, the distributed open-source microblogging tool
|
2008-07-16 04:20:45 +01:00
|
|
|
*
|
2009-01-21 06:20:17 +00:00
|
|
|
* Class for deleting a notice
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* LICENCE: This program is free software: you can redistribute it and/or modify
|
2008-07-16 04:20:45 +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-21 06:20:17 +00:00
|
|
|
*
|
|
|
|
* @category Personal
|
|
|
|
* @package Laconica
|
|
|
|
* @author Evan Prodromou <evan@controlyourself.ca>
|
|
|
|
* @author Sarven Capadisli <csarven@controlyourself.ca>
|
|
|
|
* @copyright 2008 Control Yourself, Inc.
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
|
|
* @link http://laconi.ca/
|
2008-07-16 04:20:45 +01:00
|
|
|
*/
|
|
|
|
|
2009-01-21 06:20:17 +00:00
|
|
|
if (!defined('LACONICA')) {
|
|
|
|
exit(1);
|
|
|
|
}
|
2008-07-16 04:20:45 +01:00
|
|
|
|
2009-01-21 06:20:17 +00:00
|
|
|
require_once INSTALLDIR.'/lib/deleteaction.php';
|
2008-07-16 04:20:45 +01:00
|
|
|
|
2008-12-23 19:49:23 +00:00
|
|
|
class DeletenoticeAction extends DeleteAction
|
|
|
|
{
|
2009-01-21 06:20:17 +00:00
|
|
|
var $error = null;
|
|
|
|
|
2008-12-23 19:33:23 +00:00
|
|
|
function handle($args)
|
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
parent::handle($args);
|
2009-01-21 06:20:17 +00:00
|
|
|
// XXX: Ajax!
|
2008-07-16 04:20:45 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
2009-01-21 06:20:17 +00:00
|
|
|
$this->deleteNotice();
|
2008-12-23 19:19:07 +00:00
|
|
|
} else if ($_SERVER['REQUEST_METHOD'] == 'GET') {
|
2009-01-21 06:20:17 +00:00
|
|
|
$this->showForm();
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
}
|
2008-07-16 04:20:45 +01:00
|
|
|
|
2009-01-21 06:20:17 +00:00
|
|
|
/**
|
|
|
|
* Show the page notice
|
|
|
|
*
|
|
|
|
* Shows instructions for the page
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
|
|
|
|
function showPageNotice()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-01-21 06:20:17 +00:00
|
|
|
$instr = $this->getInstructions();
|
|
|
|
$output = common_markup_to_html($instr);
|
|
|
|
|
|
|
|
$this->elementStart('div', 'instructions');
|
|
|
|
$this->raw($output);
|
|
|
|
$this->elementEnd('div');
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2008-07-16 04:20:45 +01:00
|
|
|
|
2009-01-21 06:20:17 +00:00
|
|
|
function getInstructions()
|
|
|
|
{
|
|
|
|
return _('You are about to permanently delete a notice. ' .
|
2009-01-24 18:12:47 +00:00
|
|
|
'Once this is done, it cannot be undone.');
|
2009-01-21 06:20:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function title()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
return _('Delete notice');
|
|
|
|
}
|
2008-07-16 04:20:45 +01:00
|
|
|
|
2009-01-21 06:20:17 +00:00
|
|
|
/**
|
|
|
|
* Wrapper for showing a page
|
|
|
|
*
|
|
|
|
* Stores an error and shows the page
|
|
|
|
*
|
|
|
|
* @param string $error Error, if any
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
|
|
|
|
function showForm($error = null)
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-01-21 06:20:17 +00:00
|
|
|
$this->error = $error;
|
|
|
|
$this->showPage();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Insert delete notice form into the content
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-07-16 04:20:45 +01:00
|
|
|
|
2009-01-21 06:20:17 +00:00
|
|
|
function showContent()
|
|
|
|
{
|
2009-02-06 06:27:04 +00:00
|
|
|
$this->elementStart('form', array('id' => 'form_notice_delete',
|
|
|
|
'class' => 'form_settings',
|
2009-01-24 18:12:47 +00:00
|
|
|
'method' => 'post',
|
|
|
|
'action' => common_local_url('deletenotice')));
|
2009-02-06 06:27:04 +00:00
|
|
|
$this->elementStart('fieldset');
|
|
|
|
$this->element('legend', null, _('Delete notice'));
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->hidden('token', common_session_token());
|
|
|
|
$this->hidden('notice', $this->trimmed('notice'));
|
2009-02-06 06:27:04 +00:00
|
|
|
$this->element('p', null, _('Are you sure you want to delete this notice?'));
|
|
|
|
$this->submit('form_action-yes', _('Yes'), 'submit form_action-primary', 'yes');
|
|
|
|
$this->submit('form_action-no', _('No'), 'submit form_action-secondary', 'no');
|
|
|
|
$this->elementEnd('fieldset');
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementEnd('form');
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2008-07-16 04:20:45 +01:00
|
|
|
|
2009-01-21 06:20:17 +00:00
|
|
|
function deleteNotice()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-01-21 06:20:17 +00:00
|
|
|
// CSRF protection
|
2008-12-23 19:19:07 +00:00
|
|
|
$token = $this->trimmed('token');
|
2009-01-21 06:20:17 +00:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if (!$token || $token != common_session_token()) {
|
2009-01-21 06:20:17 +00:00
|
|
|
$this->showForm(_('There was a problem with your session token. ' .
|
2009-01-24 18:12:47 +00:00
|
|
|
' Try again, please.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
return;
|
|
|
|
}
|
2009-01-21 06:20:17 +00:00
|
|
|
|
2009-01-24 18:38:40 +00:00
|
|
|
if ($this->arg('yes')) {
|
2009-01-21 06:20:17 +00:00
|
|
|
$this->notice->delete();
|
2009-01-24 18:38:40 +00:00
|
|
|
}
|
2009-01-21 06:20:17 +00:00
|
|
|
|
2009-01-24 18:38:40 +00:00
|
|
|
$url = common_get_returnto();
|
2009-01-21 06:20:17 +00:00
|
|
|
|
2009-01-24 18:38:40 +00:00
|
|
|
if ($url) {
|
|
|
|
common_set_returnto(null);
|
|
|
|
} else {
|
|
|
|
$url = common_local_url('public');
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-01-24 18:38:40 +00:00
|
|
|
|
2009-04-01 20:30:59 +01:00
|
|
|
common_redirect($url, 303);
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2008-07-16 04:20:45 +01:00
|
|
|
}
|