]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Event/actions/newrsvp.php
Merge remote-tracking branch 'upstream/master' into social-master
[quix0rs-gnu-social.git] / plugins / Event / actions / 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
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  * RSVP for an 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 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     function title()
59     {
60         // TRANS: Title for RSVP ("please respond") action.
61         return _m('TITLE','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     function prepare($argarray)
72     {
73         parent::prepare($argarray);
74         if ($this->boolean('ajax')) {
75             GNUsocial::setApi(true); // short error results!
76         }
77
78         $eventId = $this->trimmed('event');
79
80         if (empty($eventId)) {
81             // TRANS: Client exception thrown when referring to a non-existing event.
82             throw new ClientException(_m('No such event.'));
83         }
84
85         $this->event = Happening::getKV('id', $eventId);
86
87         if (empty($this->event)) {
88             // TRANS: Client exception thrown when referring to a non-existing event.
89             throw new ClientException(_m('No such event.'));
90         }
91
92         $this->user = common_current_user();
93
94         if (empty($this->user)) {
95             // TRANS: Client exception thrown when trying to RSVP ("please respond") while not logged in.
96             throw new ClientException(_m('You must be logged in to RSVP for an event.'));
97         }
98
99         common_debug(print_r($this->args, true));
100
101         switch (strtolower($this->trimmed('submitvalue'))) {
102         case 'yes':
103             $this->verb = RSVP::POSITIVE;
104             break;
105         case 'no':
106             $this->verb = RSVP::NEGATIVE;
107             break;
108         case 'maybe':
109             $this->verb = RSVP::POSSIBLE;
110             break;
111         default:
112             // TRANS: Client exception thrown when using an invalid value for RSVP ("please respond").
113             throw new ClientException(_m('Unknown submit value.'));
114         }
115
116         return true;
117     }
118
119     /**
120      * Handler method
121      *
122      * @param array $argarray is ignored since it's now passed in in prepare()
123      *
124      * @return void
125      */
126     function handle($argarray=null)
127     {
128         parent::handle($argarray);
129
130         if ($this->isPost()) {
131             $this->newRSVP();
132         } else {
133             $this->showPage();
134         }
135
136         return;
137     }
138
139     /**
140      * Add a new event
141      *
142      * @return void
143      */
144     function newRSVP()
145     {
146         try {
147             $saved = RSVP::saveNew($this->user->getProfile(),
148                                    $this->event,
149                                    $this->verb);
150         } catch (ClientException $ce) {
151             $this->error = $ce->getMessage();
152             $this->showPage();
153             return;
154         }
155
156         if ($this->boolean('ajax')) {
157             $rsvp = RSVP::fromNotice($saved);
158             $this->startHTML('text/xml;charset=utf-8');
159             $this->elementStart('head');
160             // TRANS: Page title after creating an event.
161             $this->element('title', null, _m('Event saved'));
162             $this->elementEnd('head');
163             $this->elementStart('body');
164             $cancel = new CancelRSVPForm($rsvp, $this);
165             $cancel->show();
166             $this->elementEnd('body');
167             $this->endHTML();
168         } else {
169             common_redirect($saved->getUrl(), 303);
170         }
171     }
172
173     /**
174      * Show the event form
175      *
176      * @return void
177      */
178     function showContent()
179     {
180         if (!empty($this->error)) {
181             $this->element('p', 'error', $this->error);
182         }
183
184         $form = new RSVPForm($this->event, $this);
185
186         $form->show();
187
188         return;
189     }
190
191     /**
192      * Return true if read only.
193      *
194      * MAY override
195      *
196      * @param array $args other arguments
197      *
198      * @return boolean is read only action?
199      */
200     function isReadOnly(array $args=array())
201     {
202         if ($_SERVER['REQUEST_METHOD'] == 'GET' ||
203             $_SERVER['REQUEST_METHOD'] == 'HEAD') {
204             return true;
205         } else {
206             return false;
207         }
208     }
209 }