]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Event/actions/rsvp.php
Add xcal namespaces to location and url in event
[quix0rs-gnu-social.git] / plugins / Event / actions / rsvp.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('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 RsvpAction extends FormAction
44 {
45     protected $form = 'RSVP';
46
47     protected $event = null;
48
49     function title()
50     {
51         // TRANS: Title for RSVP ("please respond") action.
52         return _m('TITLE','New RSVP');
53     }
54
55     protected function doPreparation()
56     {
57         $this->event = Happening::getByKeys(['uri'=>$this->trimmed('event')]);
58
59         $this->formOpts['event'] = $this->event;
60     }
61
62     protected function doPost()
63     {
64         if ($this->trimmed('rsvp') === 'cancel') {
65             $rsvp = RSVP::byEventAndActor($this->event, $this->scoped);
66             try {
67                 $notice = $rsvp->getStored();
68                 $notice->deleteAs($this->scoped);
69             } catch (NoResultException $e) {
70                 // Notice already gone
71                 $rsvp->delete();
72             }
73             return _m('Cancelled RSVP');
74         }
75
76         $verb = RSVP::verbFor(strtolower($this->trimmed('rsvp')));
77         $options = array('source' => 'web');
78
79         $act = new Activity();
80         $act->id = UUID::gen();
81         $act->verb    = $verb;
82         $act->time    = time();
83         $act->title   = _m('RSVP');
84         $act->actor   = $this->scoped->asActivityObject();
85         $act->target  = $this->event->getStored()->asActivityObject();
86         $act->objects = array(clone($act->target));
87         $act->content = RSVP::toHTML($this->scoped, $this->event, RSVP::codeFor($verb));
88
89         $stored = Notice::saveActivity($act, $this->scoped, $options);
90
91         return _m('Saved RSVP');
92     }
93 }