]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Event/newevent.php
add a return to the error path for new events
[quix0rs-gnu-social.git] / plugins / Event / newevent.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2011, StatusNet, Inc.
5  *
6  * Add a new event
7  *
8  * PHP version 5
9  *
10  * This program is free software: you can redistribute it and/or modify
11  * it under the terms of the GNU Affero General Public License as published by
12  * the Free Software Foundation, either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Affero General Public License for more details.
19  *
20  * You should have received a copy of the GNU Affero General Public License
21  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22  *
23  * @category  Event
24  * @package   StatusNet
25  * @author    Evan Prodromou <evan@status.net>
26  * @copyright 2011 StatusNet, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
28  * @link      http://status.net/
29  */
30
31 if (!defined('STATUSNET')) {
32     // This check helps protect against security problems;
33     // your code file can't be executed directly from the web.
34     exit(1);
35 }
36
37 /**
38  * Add a new event
39  *
40  * @category  Event
41  * @package   StatusNet
42  * @author    Evan Prodromou <evan@status.net>
43  * @copyright 2011 StatusNet, Inc.
44  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
45  * @link      http://status.net/
46  */
47 class NeweventAction extends Action
48 {
49     protected $user        = null;
50     protected $error       = null;
51     protected $complete    = null;
52     protected $title       = null;
53     protected $location    = null;
54     protected $description = null;
55     protected $startTime   = null;
56     protected $endTime     = null;
57
58     /**
59      * Returns the title of the action
60      *
61      * @return string Action title
62      */
63     function title()
64     {
65         // TRANS: Title for new event form.
66         return _m('TITLE','New event');
67     }
68
69     /**
70      * For initializing members of the class.
71      *
72      * @param array $argarray misc. arguments
73      *
74      * @return boolean true
75      */
76     function prepare($argarray)
77     {
78         parent::prepare($argarray);
79
80         $this->user = common_current_user();
81
82         if (empty($this->user)) {
83             // TRANS: Client exception thrown when trying to post an event while not logged in.
84             throw new ClientException(_m('Must be logged in to post a event.'),
85                                       403);
86         }
87
88         if ($this->isPost()) {
89             $this->checkSessionToken();
90         }
91
92         try {
93
94             $this->title = $this->trimmed('title');
95
96             if (empty($this->title)) {
97                 // TRANS: Client exception thrown when trying to post an event without providing a title.
98                 throw new ClientException(_m('Title required.'));
99             }
100
101             $this->location    = $this->trimmed('location');
102             $this->url         = $this->trimmed('url');
103             $this->description = $this->trimmed('description');
104
105             $startDate = $this->trimmed('startdate');
106
107             if (empty($startDate)) {
108                 // TRANS: Client exception thrown when trying to post an event without providing a start date.
109                 throw new ClientException(_m('Start date required.'));
110             }
111
112             $startTime = $this->trimmed('event-starttime');
113
114             if (empty($startTime)) {
115                 $startTime = '00:00';
116             }
117
118             $endDate   = $this->trimmed('enddate');
119
120             if (empty($endDate)) {
121                 // TRANS: Client exception thrown when trying to post an event without providing an end date.
122                 throw new ClientException(_m('End date required.'));
123             }
124
125             $endTime   = $this->trimmed('event-endtime');
126
127             if (empty($endTime)) {
128                 $endTime = '00:00';
129             }
130
131             $start = $startDate . ' ' . $startTime;
132
133             common_debug("Event start: '$start'");
134
135             $end = $endDate . ' ' . $endTime;
136
137             common_debug("Event start: '$end'");
138
139             $this->startTime = strtotime($start);
140             $this->endTime   = strtotime($end);
141
142             if ($this->startTime == 0) {
143                 // TRANS: Client exception thrown when trying to post an event with a date that cannot be processed.
144                 // TRANS: %s is the data that could not be processed.
145                 throw new ClientException(sprintf(_m('Could not parse date "%s".'),
146                                             $start));
147             }
148
149             if ($this->endTime == 0) {
150                 // TRANS: Client exception thrown when trying to post an event with a date that cannot be processed.
151                 // TRANS: %s is the data that could not be processed.
152                 throw new ClientException(sprintf(_m('Could not parse date "%s".'),
153                                             $end));
154             }
155         } catch (ClientException $ce) {
156             if ($this->boolean('ajax')) {
157                 $this->outputAjaxError($ce->getMessage());
158                 return false;
159             } else {
160                 $this->error = $ce->getMessage();
161                 $this->showPage();
162                 return false;
163             }
164         }
165
166         return true;
167     }
168
169     /**
170      * Handler method
171      *
172      * @param array $argarray is ignored since it's now passed in in prepare()
173      *
174      * @return void
175      */
176     function handle($argarray=null)
177     {
178         parent::handle($argarray);
179
180         if ($this->isPost()) {
181             $this->newEvent();
182         } else {
183             $this->showPage();
184         }
185
186         return;
187     }
188
189     /**
190      * Add a new event
191      *
192      * @return void
193      */
194     function newEvent()
195     {
196         try {
197             if (empty($this->title)) {
198                 // TRANS: Client exception thrown when trying to post an event without providing a title.
199                 throw new ClientException(_m('Event must have a title.'));
200             }
201
202             if (empty($this->startTime)) {
203                 // TRANS: Client exception thrown when trying to post an event without providing a start time.
204                 throw new ClientException(_m('Event must have a start time.'));
205             }
206
207             if (empty($this->endTime)) {
208                 // TRANS: Client exception thrown when trying to post an event without providing an end time.
209                 throw new ClientException(_m('Event must have an end time.'));
210             }
211
212             $options = array();
213
214             // Does the heavy-lifting for getting "To:" information
215
216             ToSelector::fillOptions($this, $options);
217
218             $profile = $this->user->getProfile();
219
220             $saved = Happening::saveNew($profile,
221                                         $this->startTime,
222                                         $this->endTime,
223                                         $this->title,
224                                         $this->location,
225                                         $this->description,
226                                         $this->url,
227                                         $options);
228
229             $event = Happening::fromNotice($saved);
230
231             RSVP::saveNew($profile, $event, RSVP::POSITIVE);
232
233         } catch (ClientException $ce) {
234             if ($this->boolean('ajax')) {
235                 $this->outputAjaxError($ce->getMessage());
236                 return;
237             } else {
238                 $this->error = $ce->getMessage();
239                 $this->showPage();
240                 return;
241             }
242         }
243
244         if ($this->boolean('ajax')) {
245             header('Content-Type: text/xml;charset=utf-8');
246             $this->xw->startDocument('1.0', 'UTF-8');
247             $this->elementStart('html');
248             $this->elementStart('head');
249             // TRANS: Page title after sending a notice.
250             $this->element('title', null, _m('Event saved'));
251             $this->elementEnd('head');
252             $this->elementStart('body');
253             $this->showNotice($saved);
254             $this->elementEnd('body');
255             $this->elementEnd('html');
256         } else {
257             common_redirect($saved->bestUrl(), 303);
258         }
259     }
260
261     // @todo factor this out into a base class
262     function outputAjaxError($msg)
263     {
264         header('Content-Type: text/xml;charset=utf-8');
265         $this->xw->startDocument('1.0', 'UTF-8');
266         $this->elementStart('html');
267         $this->elementStart('head');
268         // TRANS: Page title after an AJAX error occurs
269         $this->element('title', null, _('Ajax Error'));
270         $this->elementEnd('head');
271         $this->elementStart('body');
272         $this->element('p', array('id' => 'error'), $msg);
273         $this->elementEnd('body');
274         $this->elementEnd('html');
275         return;
276     }
277
278     /**
279      * Show the event form
280      *
281      * @return void
282      */
283     function showContent()
284     {
285         if (!empty($this->error)) {
286             $this->element('p', 'error', $this->error);
287         }
288
289         $form = new EventForm($this);
290
291         $form->show();
292
293         return;
294     }
295
296     /**
297      * Return true if read only.
298      *
299      * MAY override
300      *
301      * @param array $args other arguments
302      *
303      * @return boolean is read only action?
304      */
305     function isReadOnly($args)
306     {
307         if ($_SERVER['REQUEST_METHOD'] == 'GET' ||
308             $_SERVER['REQUEST_METHOD'] == 'HEAD') {
309             return true;
310         } else {
311             return false;
312         }
313     }
314
315
316     /**
317      * Output a notice
318      *
319      * Used to generate the notice code for Ajax results.
320      *
321      * @param Notice $notice Notice that was saved
322      *
323      * @return void
324      */
325     function showNotice($notice)
326     {
327         $nli = new NoticeListItem($notice, $this);
328         $nli->show();
329     }
330 }