]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Event/newevent.php
365e9c14343dcab2ca65bc6f3faa047acde6f31a
[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 if (!defined('STATUSNET')) {
31     // This check helps protect against security problems;
32     // your code file can't be executed directly from the web.
33     exit(1);
34 }
35
36 /**
37  * Add a new event
38  *
39  * @category  Event
40  * @package   StatusNet
41  * @author    Evan Prodromou <evan@status.net>
42  * @copyright 2011 StatusNet, Inc.
43  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
44  * @link      http://status.net/
45  */
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 $start_time  = null;
56     protected $end_time    = null;
57
58     /**
59      * Returns the title of the action
60      *
61      * @return string Action title
62      */
63
64     function title()
65     {
66         return _('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
77     function prepare($argarray)
78     {
79         parent::prepare($argarray);
80
81         $this->user = common_current_user();
82
83         if (empty($this->user)) {
84             throw new ClientException(_("Must be logged in to post a event."),
85                                       403);
86         }
87
88         if ($this->isPost()) {
89             $this->checkSessionToken();
90         }
91
92         $this->title       = $this->trimmed('title');
93         $this->location    = $this->trimmed('location');
94         $this->description = $this->trimmed('description');
95
96         $start_date = $this->trimmed('start_date');
97         $start_time = $this->trimmed('start_time');
98         $end_date   = $this->trimmed('end_date');
99         $end_time   = $this->trimmed('end_time');
100
101         $this->start_time = strtotime($start_date . ' ' . $start_time);
102         $this->end_time   = strtotime($end_date . ' ' . $end_time);
103
104         return true;
105     }
106
107     /**
108      * Handler method
109      *
110      * @param array $argarray is ignored since it's now passed in in prepare()
111      *
112      * @return void
113      */
114
115     function handle($argarray=null)
116     {
117         parent::handle($argarray);
118
119         if ($this->isPost()) {
120             $this->newEvent();
121         } else {
122             $this->showPage();
123         }
124
125         return;
126     }
127
128     /**
129      * Add a new event
130      *
131      * @return void
132      */
133
134     function newEvent()
135     {
136         try {
137             if (empty($this->title)) {
138                 throw new ClientException(_('Event must have a title.'));
139             }
140
141             if (empty($this->start_time)) {
142                 throw new ClientException(_('Event must have a start time.'));
143             }
144
145             if (empty($this->end_time)) {
146                 throw new ClientException(_('Event must have an end time.'));
147             }
148
149             $saved = Happening::saveNew($this->user->getProfile(),
150                                         $this->start_time,
151                                         $this->end_time,
152                                         $this->title,
153                                         $this->location,
154                                         $this->description);
155
156         } catch (ClientException $ce) {
157             $this->error = $ce->getMessage();
158             $this->showPage();
159             return;
160         }
161
162         if ($this->boolean('ajax')) {
163             header('Content-Type: text/xml;charset=utf-8');
164             $this->xw->startDocument('1.0', 'UTF-8');
165             $this->elementStart('html');
166             $this->elementStart('head');
167             // TRANS: Page title after sending a notice.
168             $this->element('title', null, _('Event saved'));
169             $this->elementEnd('head');
170             $this->elementStart('body');
171             $this->showNotice($saved);
172             $this->elementEnd('body');
173             $this->elementEnd('html');
174         } else {
175             common_redirect($saved->bestUrl(), 303);
176         }
177     }
178
179     /**
180      * Show the event form
181      *
182      * @return void
183      */
184
185     function showContent()
186     {
187         if (!empty($this->error)) {
188             $this->element('p', 'error', $this->error);
189         }
190
191         $form = new EventForm($this);
192
193         $form->show();
194
195         return;
196     }
197
198     /**
199      * Return true if read only.
200      *
201      * MAY override
202      *
203      * @param array $args other arguments
204      *
205      * @return boolean is read only action?
206      */
207
208     function isReadOnly($args)
209     {
210         if ($_SERVER['REQUEST_METHOD'] == 'GET' ||
211             $_SERVER['REQUEST_METHOD'] == 'HEAD') {
212             return true;
213         } else {
214             return false;
215         }
216     }
217
218
219     /**
220      * Output a notice
221      *
222      * Used to generate the notice code for Ajax results.
223      *
224      * @param Notice $notice Notice that was saved
225      *
226      * @return void
227      */
228     function showNotice($notice)
229     {
230         $nli = new NoticeListItem($notice, $this);
231         $nli->show();
232     }
233 }