]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/deletenotice.php
617fa9c17a44f49dbf243cc3b8d67c6c23b2a23f
[quix0rs-gnu-social.git] / actions / deletenotice.php
1 <?php
2 /**
3  * StatusNet, 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   StatusNet
24  * @author    Evan Prodromou <evan@status.net>
25  * @author    Sarven Capadisli <csarven@status.net>
26  * @copyright 2008 StatusNet, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28  * @link      http://status.net/
29  */
30
31 if (!defined('STATUSNET') && !defined('LACONICA')) {
32     exit(1);
33 }
34
35 class DeletenoticeAction extends Action
36 {
37     var $error        = null;
38     var $user         = null;
39     var $notice       = null;
40     var $profile      = null;
41     var $user_profile = null;
42
43     function prepare($args)
44     {
45         parent::prepare($args);
46
47         $this->user   = common_current_user();
48         $notice_id    = $this->trimmed('notice');
49         $this->notice = Notice::staticGet($notice_id);
50
51         if (!$this->notice) {
52             common_user_error(_('No such notice.'));
53             exit;
54         }
55
56         $this->profile      = $this->notice->getProfile();
57         $this->user_profile = $this->user->getProfile();
58
59         return true;
60     }
61
62     function handle($args)
63     {
64         parent::handle($args);
65
66         if (!common_logged_in()) {
67             common_user_error(_('Not logged in.'));
68             exit;
69         } else if ($this->notice->profile_id != $this->user_profile->id) {
70             common_user_error(_('Can\'t delete this notice.'));
71             exit;
72         }
73         // XXX: Ajax!
74
75         if ($_SERVER['REQUEST_METHOD'] == 'POST') {
76             $this->deleteNotice();
77         } else if ($_SERVER['REQUEST_METHOD'] == 'GET') {
78             $this->showForm();
79         }
80     }
81
82     /**
83      * Show the page notice
84      *
85      * Shows instructions for the page
86      *
87      * @return void
88      */
89
90     function showPageNotice()
91     {
92         $instr  = $this->getInstructions();
93         $output = common_markup_to_html($instr);
94
95         $this->elementStart('div', 'instructions');
96         $this->raw($output);
97         $this->elementEnd('div');
98     }
99
100     function getInstructions()
101     {
102         return _('You are about to permanently delete a notice. ' .
103                  'Once this is done, it cannot be undone.');
104     }
105
106     function title()
107     {
108         return _('Delete notice');
109     }
110
111     /**
112      * Wrapper for showing a page
113      *
114      * Stores an error and shows the page
115      *
116      * @param string $error Error, if any
117      *
118      * @return void
119      */
120
121     function showForm($error = null)
122     {
123         $this->error = $error;
124         $this->showPage();
125     }
126
127     /**
128      * Insert delete notice form into the content
129      *
130      * @return void
131      */
132
133     function showContent()
134     {
135         $this->elementStart('form', array('id' => 'form_notice_delete',
136                                           'class' => 'form_settings',
137                                           'method' => 'post',
138                                           'action' => common_local_url('deletenotice')));
139         $this->elementStart('fieldset');
140         $this->element('legend', null, _('Delete notice'));
141         $this->hidden('token', common_session_token());
142         $this->hidden('notice', $this->trimmed('notice'));
143         $this->element('p', null, _('Are you sure you want to delete this notice?'));
144         $this->submit('form_action-no', _('No'), 'submit form_action-primary', 'no', _("Do not delete this notice"));
145         $this->submit('form_action-yes', _('Yes'), 'submit form_action-secondary', 'yes', _('Delete this notice'));
146         $this->elementEnd('fieldset');
147         $this->elementEnd('form');
148     }
149
150     function deleteNotice()
151     {
152         // CSRF protection
153         $token = $this->trimmed('token');
154
155         if (!$token || $token != common_session_token()) {
156             $this->showForm(_('There was a problem with your session token. ' .
157                               ' Try again, please.'));
158             return;
159         }
160
161         if ($this->arg('yes')) {
162             $this->notice->delete();
163         }
164
165         $url = common_get_returnto();
166
167         if ($url) {
168             common_set_returnto(null);
169         } else {
170             $url = common_local_url('public');
171         }
172
173         common_redirect($url, 303);
174     }
175 }