]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Event/newrsvp.php
updates to make RSVPs work
[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 $type  = 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
76         $eventId = $this->trimmed('event');
77
78         if (empty($eventId)) {
79             throw new ClientException(_('No such event.'));
80         }
81
82         $this->event = Happening::staticGet('id', $eventId);
83
84         if (empty($this->event)) {
85             throw new ClientException(_('No such event.'));
86         }
87
88         $this->user = common_current_user();
89
90         if (empty($this->user)) {
91             throw new ClientException(_('You must be logged in to RSVP for an event.'));
92         }
93
94         if ($this->arg('yes')) {
95             $this->type = RSVP::POSITIVE;
96         } else if ($this->arg('no')) {
97             $this->type = RSVP::NEGATIVE;
98         } else {
99             $this->type = RSVP::POSSIBLE;
100         }
101         return true;
102     }
103
104     /**
105      * Handler method
106      *
107      * @param array $argarray is ignored since it's now passed in in prepare()
108      *
109      * @return void
110      */
111
112     function handle($argarray=null)
113     {
114         parent::handle($argarray);
115
116         if ($this->isPost()) {
117             $this->newRSVP();
118         } else {
119             $this->showPage();
120         }
121
122         return;
123     }
124
125     /**
126      * Add a new event
127      *
128      * @return void
129      */
130
131     function newRSVP()
132     {
133         try {
134             $saved = RSVP::saveNew($this->user->getProfile(),
135                                    $this->event,
136                                    $this->type);
137         } catch (ClientException $ce) {
138             $this->error = $ce->getMessage();
139             $this->showPage();
140             return;
141         }
142
143         if ($this->boolean('ajax')) {
144             $rsvp = RSVP::fromNotice($saved);
145             header('Content-Type: text/xml;charset=utf-8');
146             $this->xw->startDocument('1.0', 'UTF-8');
147             $this->elementStart('html');
148             $this->elementStart('head');
149             // TRANS: Page title after sending a notice.
150             $this->element('title', null, _('Event saved'));
151             $this->elementEnd('head');
152             $this->elementStart('body');
153             $this->elementStart('body');
154             $cancel = new CancelRSVPForm($rsvp, $this);
155             $cancel->show();
156             $this->elementEnd('body');
157             $this->elementEnd('body');
158             $this->elementEnd('html');
159         } else {
160             common_redirect($saved->bestUrl(), 303);
161         }
162     }
163
164     /**
165      * Show the event form
166      *
167      * @return void
168      */
169
170     function showContent()
171     {
172         if (!empty($this->error)) {
173             $this->element('p', 'error', $this->error);
174         }
175
176         $form = new RSVPForm($this->event, $this);
177
178         $form->show();
179
180         return;
181     }
182
183     /**
184      * Return true if read only.
185      *
186      * MAY override
187      *
188      * @param array $args other arguments
189      *
190      * @return boolean is read only action?
191      */
192
193     function isReadOnly($args)
194     {
195         if ($_SERVER['REQUEST_METHOD'] == 'GET' ||
196             $_SERVER['REQUEST_METHOD'] == 'HEAD') {
197             return true;
198         } else {
199             return false;
200         }
201     }
202 }