]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Event/actions/cancelrsvp.php
Merge branch 'master' into mmn_fixes
[quix0rs-gnu-social.git] / plugins / Event / actions / 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('GNUSOCIAL')) { exit(1); }
32
33 /**
34  * RSVP for an event
35  *
36  * @category  Event
37  * @package   StatusNet
38  * @author    Evan Prodromou <evan@status.net>
39  * @copyright 2011 StatusNet, Inc.
40  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
41  * @link      http://status.net/
42  */
43 class CancelrsvpAction extends FormAction
44 {
45     protected $form = 'CancelRSVP';
46
47     function title()
48     {
49         // TRANS: Title for RSVP ("please respond") action.
50         return _m('TITLE','Cancel RSVP');
51     }
52
53     // FIXME: Merge this action with RSVPAction and add a 'cancel' thing there...
54     protected function doPreparation()
55     {
56         $rsvpId = $this->trimmed('rsvp');
57         if (empty($rsvpId)) {
58             // TRANS: Client exception thrown when referring to a non-existing RSVP ("please respond") item.
59             throw new ClientException(_m('No such RSVP.'));
60         }
61
62         $this->rsvp = RSVP::getKV('id', $rsvpId);
63         if (empty($this->rsvp)) {
64             // TRANS: Client exception thrown when referring to a non-existing RSVP ("please respond") item.
65             throw new ClientException(_m('No such RSVP.'));
66         }
67
68         $this->formOpts['rsvp'] = $this->rsvp;
69     }
70
71     protected function doPost()
72     {
73         $this->event = Happening::getKV('uri', $this->rsvp->event_uri);
74         if (empty($this->event)) {
75             // TRANS: Client exception thrown when referring to a non-existing event.
76             throw new ClientException(_m('No such event.'));
77         }
78
79         $notice = $this->rsvp->getNotice();
80         // NB: this will delete the rsvp, too
81         if (!empty($notice)) {
82             common_log(LOG_DEBUG, "Deleting notice...");
83             $notice->deleteAs($this->scoped);
84         } else {
85             common_log(LOG_DEBUG, "Deleting RSVP alone...");
86             $this->rsvp->delete();
87         }
88     }
89 }