]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/deletenotice.php
Update notice deletion
[quix0rs-gnu-social.git] / actions / deletenotice.php
1 <?php
2 /**
3  * Laconica, the distributed open-source microblogging tool
4  *
5  * Class for deleting a notice
6  *
7  * PHP version 5
8  *
9  * LICENCE: This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  Personal
23  * @package   Laconica
24  * @author    Evan Prodromou <evan@controlyourself.ca>
25  * @author    Sarven Capadisli <csarven@controlyourself.ca>
26  * @copyright 2008 Control Yourself, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28  * @link      http://laconi.ca/
29  */
30
31 if (!defined('LACONICA')) {
32     exit(1);
33 }
34
35 require_once INSTALLDIR.'/lib/deleteaction.php';
36
37 class DeletenoticeAction extends DeleteAction
38 {
39     var $error = null;
40
41     function handle($args)
42     {
43         parent::handle($args);
44         // XXX: Ajax!
45
46         if ($_SERVER['REQUEST_METHOD'] == 'POST') {
47             $this->deleteNotice();
48         } else if ($_SERVER['REQUEST_METHOD'] == 'GET') {
49             $this->showForm();
50         }
51     }
52
53     /**
54      * Show the page notice
55      *
56      * Shows instructions for the page
57      *
58      * @return void
59      */
60
61     function showPageNotice()
62     {
63         $instr  = $this->getInstructions();
64         $output = common_markup_to_html($instr);
65
66         $this->elementStart('div', 'instructions');
67         $this->raw($output);
68         $this->elementEnd('div');
69     }
70
71     function getInstructions()
72     {
73         return _('You are about to permanently delete a notice. ' .
74                  'Once this is done, it cannot be undone.');
75     }
76
77     function title()
78     {
79         return _('Delete notice');
80     }
81
82     /**
83      * Wrapper for showing a page
84      *
85      * Stores an error and shows the page
86      *
87      * @param string $error Error, if any
88      *
89      * @return void
90      */
91
92     function showForm($error = null)
93     {
94         $this->error = $error;
95         $this->showPage();
96     }
97
98     /**
99      * Insert delete notice form into the content
100      *
101      * @return void
102      */
103
104     function showContent()
105     {
106         $this->elementStart('form', array('id' => 'notice_delete_form',
107                                           'method' => 'post',
108                                           'action' => common_local_url('deletenotice')));
109         $this->hidden('token', common_session_token());
110         $this->hidden('notice', $this->trimmed('notice'));
111         $this->elementStart('p');
112         $this->element('span', array('id' => 'confirmation_text'),
113                        _('Are you sure you want to delete this notice?'));
114         $this->submit('yes', _('Yes'));
115         $this->submit('no', _('No'));
116         $this->elementEnd('p');
117         $this->elementEnd('form');
118     }
119
120     function deleteNotice()
121     {
122         // CSRF protection
123         $token = $this->trimmed('token');
124
125         if (!$token || $token != common_session_token()) {
126             $this->showForm(_('There was a problem with your session token. ' .
127                               ' Try again, please.'));
128             return;
129         }
130
131         if ($this->arg('yes')) {
132             $this->notice->delete();
133         }
134
135         $url = common_get_returnto();
136
137         if ($url) {
138             common_set_returnto(null);
139         } else {
140             $url = common_local_url('public');
141         }
142
143         common_redirect($url);
144     }
145 }