]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Event/newrsvp.php
Merge branch 'subwork' into 1.0.x
[quix0rs-gnu-social.git] / plugins / Event / newrsvp.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2011, StatusNet, Inc.
5  *
6  * RSVP for an 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  * RSVP for an 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 NewrsvpAction extends Action
48 {
49     protected $user  = null;
50     protected $event = null;
51     protected $verb  = null;
52
53     /**
54      * Returns the title of the action
55      *
56      * @return string Action title
57      */
58
59     function title()
60     {
61         return _('New RSVP');
62     }
63
64     /**
65      * For initializing members of the class.
66      *
67      * @param array $argarray misc. arguments
68      *
69      * @return boolean true
70      */
71
72     function prepare($argarray)
73     {
74         parent::prepare($argarray);
75         if ($this->boolean('ajax')) {
76             StatusNet::setApi(true); // short error results!
77         }
78
79         $eventId = $this->trimmed('event');
80
81         if (empty($eventId)) {
82             throw new ClientException(_('No such event.'));
83         }
84
85         $this->event = Happening::staticGet('id', $eventId);
86
87         if (empty($this->event)) {
88             throw new ClientException(_('No such event.'));
89         }
90
91         $this->user = common_current_user();
92
93         if (empty($this->user)) {
94             throw new ClientException(_('You must be logged in to RSVP for an event.'));
95         }
96
97         common_debug(print_r($this->args, true));
98
99         switch (strtolower($this->trimmed('submitvalue'))) {
100         case 'yes':
101             $this->verb = RSVP::POSITIVE;
102             break;
103         case 'no':
104             $this->verb = RSVP::NEGATIVE;
105             break;
106         case 'maybe':
107             $this->verb = RSVP::POSSIBLE;
108             break;
109         default:
110             throw new ClientException('Unknown submit value.');
111         }
112
113         return true;
114     }
115
116     /**
117      * Handler method
118      *
119      * @param array $argarray is ignored since it's now passed in in prepare()
120      *
121      * @return void
122      */
123
124     function handle($argarray=null)
125     {
126         parent::handle($argarray);
127
128         if ($this->isPost()) {
129             $this->newRSVP();
130         } else {
131             $this->showPage();
132         }
133
134         return;
135     }
136
137     /**
138      * Add a new event
139      *
140      * @return void
141      */
142
143     function newRSVP()
144     {
145         try {
146             $saved = RSVP::saveNew($this->user->getProfile(),
147                                    $this->event,
148                                    $this->verb);
149         } catch (ClientException $ce) {
150             $this->error = $ce->getMessage();
151             $this->showPage();
152             return;
153         }
154
155         if ($this->boolean('ajax')) {
156             $rsvp = RSVP::fromNotice($saved);
157             header('Content-Type: text/xml;charset=utf-8');
158             $this->xw->startDocument('1.0', 'UTF-8');
159             $this->elementStart('html');
160             $this->elementStart('head');
161             // TRANS: Page title after sending a notice.
162             $this->element('title', null, _('Event saved'));
163             $this->elementEnd('head');
164             $this->elementStart('body');
165             $this->elementStart('body');
166             $cancel = new CancelRSVPForm($rsvp, $this);
167             $cancel->show();
168             $this->elementEnd('body');
169             $this->elementEnd('body');
170             $this->elementEnd('html');
171         } else {
172             common_redirect($saved->bestUrl(), 303);
173         }
174     }
175
176     /**
177      * Show the event form
178      *
179      * @return void
180      */
181
182     function showContent()
183     {
184         if (!empty($this->error)) {
185             $this->element('p', 'error', $this->error);
186         }
187
188         $form = new RSVPForm($this->event, $this);
189
190         $form->show();
191
192         return;
193     }
194
195     /**
196      * Return true if read only.
197      *
198      * MAY override
199      *
200      * @param array $args other arguments
201      *
202      * @return boolean is read only action?
203      */
204
205     function isReadOnly($args)
206     {
207         if ($_SERVER['REQUEST_METHOD'] == 'GET' ||
208             $_SERVER['REQUEST_METHOD'] == 'HEAD') {
209             return true;
210         } else {
211             return false;
212         }
213     }
214 }