2008-07-16 04:20:45 +01:00
|
|
|
<?php
|
2009-01-21 06:20:17 +00:00
|
|
|
/**
|
2009-08-25 23:12:20 +01:00
|
|
|
* StatusNet, 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
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @author Sarven Capadisli <csarven@status.net>
|
2009-08-25 23:12:20 +01:00
|
|
|
* @copyright 2008 StatusNet, Inc.
|
2009-01-21 06:20:17 +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-16 04:20:45 +01:00
|
|
|
*/
|
|
|
|
|
2015-07-09 23:52:22 +01:00
|
|
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
2008-07-16 04:20:45 +01:00
|
|
|
|
2010-11-01 15:26:23 +00:00
|
|
|
// @todo FIXME: documentation needed.
|
2015-07-09 23:52:22 +01:00
|
|
|
class DeletenoticeAction extends FormAction
|
2008-12-23 19:49:23 +00:00
|
|
|
{
|
2015-07-09 23:52:22 +01:00
|
|
|
protected $notice = null;
|
2010-10-08 18:33:43 +01:00
|
|
|
|
2015-07-09 23:52:22 +01:00
|
|
|
protected function doPreparation()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2015-07-11 10:16:08 +01:00
|
|
|
$this->notice = Notice::getByID($this->trimmed('notice'));
|
2009-09-28 02:10:17 +01:00
|
|
|
|
2019-07-30 02:18:52 +01:00
|
|
|
if ($this->notice->isVerb([ActivityVerb::DELETE]) ||
|
|
|
|
(!$this->scoped->sameAs($this->notice->getProfile()) &&
|
|
|
|
!$this->scoped->hasRight(Right::DELETEOTHERSNOTICE))) {
|
|
|
|
// TRANS: Error message displayed when trying to delete a notice that was not made by the current user.
|
2015-07-09 23:52:22 +01:00
|
|
|
$this->clientError(_('Cannot delete this notice.'));
|
2009-09-28 02:10:17 +01:00
|
|
|
}
|
2008-07-16 04:20:45 +01:00
|
|
|
|
2015-07-09 23:52:22 +01:00
|
|
|
$this->formOpts['notice'] = $this->notice;
|
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()
|
|
|
|
{
|
2010-11-01 15:26:23 +00:00
|
|
|
// TRANS: Instructions for deleting a notice.
|
2009-01-21 06:20:17 +00:00
|
|
|
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
|
|
|
{
|
2010-11-01 15:26:23 +00:00
|
|
|
// TRANS: Page title when deleting a notice.
|
2008-12-23 19:19:07 +00:00
|
|
|
return _('Delete notice');
|
|
|
|
}
|
2008-07-16 04:20:45 +01:00
|
|
|
|
2015-07-09 23:52:22 +01:00
|
|
|
protected function doPost()
|
2009-01-21 06:20:17 +00:00
|
|
|
{
|
2009-01-24 18:38:40 +00:00
|
|
|
if ($this->arg('yes')) {
|
2015-07-09 23:52:22 +01:00
|
|
|
if (Event::handle('StartDeleteOwnNotice', array($this->scoped->getUser(), $this->notice))) {
|
2015-10-03 11:26:09 +01:00
|
|
|
$this->notice->deleteAs($this->scoped);
|
2015-07-09 23:52:22 +01:00
|
|
|
Event::handle('EndDeleteOwnNotice', array($this->scoped->getUser(), $this->notice));
|
2010-09-08 21:37:12 +01:00
|
|
|
}
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-01-24 18:38:40 +00:00
|
|
|
|
2016-02-08 14:30:28 +00:00
|
|
|
common_redirect(common_get_returnto(), 303);
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2008-07-16 04:20:45 +01:00
|
|
|
}
|