]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Event/newevent.php
add url to 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 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->url         = $this->trimmed('url');
95         $this->description = $this->trimmed('description');
96
97         $start_date = $this->trimmed('start_date');
98         $start_time = $this->trimmed('start_time');
99         $end_date   = $this->trimmed('end_date');
100         $end_time   = $this->trimmed('end_time');
101
102         $this->start_time = strtotime($start_date . ' ' . $start_time);
103         $this->end_time   = strtotime($end_date . ' ' . $end_time);
104
105         return true;
106     }
107
108     /**
109      * Handler method
110      *
111      * @param array $argarray is ignored since it's now passed in in prepare()
112      *
113      * @return void
114      */
115
116     function handle($argarray=null)
117     {
118         parent::handle($argarray);
119
120         if ($this->isPost()) {
121             $this->newEvent();
122         } else {
123             $this->showPage();
124         }
125
126         return;
127     }
128
129     /**
130      * Add a new event
131      *
132      * @return void
133      */
134
135     function newEvent()
136     {
137         try {
138             if (empty($this->title)) {
139                 throw new ClientException(_('Event must have a title.'));
140             }
141
142             if (empty($this->start_time)) {
143                 throw new ClientException(_('Event must have a start time.'));
144             }
145
146             if (empty($this->end_time)) {
147                 throw new ClientException(_('Event must have an end time.'));
148             }
149
150             $profile = $this->user->getProfile();
151
152             $saved = Happening::saveNew($profile,
153                                         $this->start_time,
154                                         $this->end_time,
155                                         $this->title,
156                                         $this->location,
157                                         $this->description,
158                                         $this->url);
159
160         } catch (ClientException $ce) {
161             $this->error = $ce->getMessage();
162             $this->showPage();
163             return;
164         }
165
166         if ($this->boolean('ajax')) {
167             header('Content-Type: text/xml;charset=utf-8');
168             $this->xw->startDocument('1.0', 'UTF-8');
169             $this->elementStart('html');
170             $this->elementStart('head');
171             // TRANS: Page title after sending a notice.
172             $this->element('title', null, _('Event saved'));
173             $this->elementEnd('head');
174             $this->elementStart('body');
175             $this->showNotice($saved);
176             $this->elementEnd('body');
177             $this->elementEnd('html');
178         } else {
179             common_redirect($saved->bestUrl(), 303);
180         }
181     }
182
183     /**
184      * Show the event form
185      *
186      * @return void
187      */
188
189     function showContent()
190     {
191         if (!empty($this->error)) {
192             $this->element('p', 'error', $this->error);
193         }
194
195         $form = new EventForm($this);
196
197         $form->show();
198
199         return;
200     }
201
202     /**
203      * Return true if read only.
204      *
205      * MAY override
206      *
207      * @param array $args other arguments
208      *
209      * @return boolean is read only action?
210      */
211
212     function isReadOnly($args)
213     {
214         if ($_SERVER['REQUEST_METHOD'] == 'GET' ||
215             $_SERVER['REQUEST_METHOD'] == 'HEAD') {
216             return true;
217         } else {
218             return false;
219         }
220     }
221
222
223     /**
224      * Output a notice
225      *
226      * Used to generate the notice code for Ajax results.
227      *
228      * @param Notice $notice Notice that was saved
229      *
230      * @return void
231      */
232     function showNotice($notice)
233     {
234         $nli = new NoticeListItem($notice, $this);
235         $nli->show();
236     }
237 }