]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Event/cancelrsvp.php
Update translator documentation.
[quix0rs-gnu-social.git] / plugins / Event / cancelrsvp.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2011, StatusNet, Inc.
5  *
6  * Cancel the 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 CancelrsvpAction extends Action
48 {
49     protected $user  = null;
50     protected $rsvp  = null;
51     protected $event = 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','Cancel 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             StatusNet::setApi(true); // short error results!
76         }
77
78         $rsvpId = $this->trimmed('rsvp');
79
80         if (empty($rsvpId)) {
81             // TRANS: Client exception thrown when referring to a non-existing RSVP ("please respond") item.
82             throw new ClientException(_m('No such RSVP.'));
83         }
84
85         $this->rsvp = RSVP::staticGet('id', $rsvpId);
86
87         if (empty($this->rsvp)) {
88             // TRANS: Client exception thrown when referring to a non-existing RSVP ("please respond") item.
89             throw new ClientException(_m('No such RSVP.'));
90         }
91
92         $this->event = Happening::staticGet('id', $this->rsvp->event_id);
93
94         if (empty($this->event)) {
95             // TRANS: Client exception thrown when referring to a non-existing event.
96             throw new ClientException(_m('No such event.'));
97         }
98
99         $this->user = common_current_user();
100
101         if (empty($this->user)) {
102             // TRANS: Client exception thrown when trying tp RSVP ("please respond") while not logged in.
103             throw new ClientException(_m('You must be logged in to RSVP for an event.'));
104         }
105
106         return true;
107     }
108
109     /**
110      * Handler method
111      *
112      * @param array $argarray is ignored since it's now passed in in prepare()
113      *
114      * @return void
115      */
116     function handle($argarray=null)
117     {
118         parent::handle($argarray);
119
120         if ($this->isPost()) {
121             $this->cancelRSVP();
122         } else {
123             $this->showPage();
124         }
125
126         return;
127     }
128
129     /**
130      * Add a new event
131      *
132      * @return void
133      */
134     function cancelRSVP()
135     {
136         try {
137             $notice = $this->rsvp->getNotice();
138             // NB: this will delete the rsvp, too
139             if (!empty($notice)) {
140                 common_log(LOG_DEBUG, "Deleting notice...");
141                 $notice->delete();
142             } else {
143                 common_log(LOG_DEBUG, "Deleting RSVP alone...");
144                 $this->rsvp->delete();
145             }
146         } catch (ClientException $ce) {
147             $this->error = $ce->getMessage();
148             $this->showPage();
149             return;
150         }
151
152         if ($this->boolean('ajax')) {
153             header('Content-Type: text/xml;charset=utf-8');
154             $this->xw->startDocument('1.0', 'UTF-8');
155             $this->elementStart('html');
156             $this->elementStart('head');
157             // TRANS: Page title after sending a notice.
158             $this->element('title', null, _m('Event saved'));
159             $this->elementEnd('head');
160             $this->elementStart('body');
161             $this->elementStart('body');
162             $form = new RSVPForm($this->event, $this);
163             $form->show();
164             $this->elementEnd('body');
165             $this->elementEnd('body');
166             $this->elementEnd('html');
167         }
168     }
169
170     /**
171      * Show the event form
172      *
173      * @return void
174      */
175     function showContent()
176     {
177         if (!empty($this->error)) {
178             $this->element('p', 'error', $this->error);
179         }
180
181         $form = new CancelRSVPForm($this->rsvp, $this);
182
183         $form->show();
184
185         return;
186     }
187
188     /**
189      * Return true if read only.
190      *
191      * MAY override
192      *
193      * @param array $args other arguments
194      *
195      * @return boolean is read only action?
196      */
197     function isReadOnly($args)
198     {
199         if ($_SERVER['REQUEST_METHOD'] == 'GET' ||
200             $_SERVER['REQUEST_METHOD'] == 'HEAD') {
201             return true;
202         } else {
203             return false;
204         }
205     }
206 }