3 * StatusNet - the distributed open-source microblogging tool
4 * Copyright (C) 2011, StatusNet, Inc.
6 * Microapp plugin for event invitations and RSVPs
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.
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.
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/>.
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/
31 if (!defined('STATUSNET')) {
32 // This check helps protect against security problems;
33 // your code file can't be executed directly from the web.
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/
47 class EventPlugin extends MicroappPlugin
50 * Set up our tables (event and rsvp)
55 * @return boolean hook value; true means continue processing, false means stop.
57 function onCheckSchema()
59 $schema = Schema::get();
61 $schema->ensureTable('happening', Happening::schemaDef());
62 $schema->ensureTable('rsvp', RSVP::schemaDef());
68 * Load related modules when needed
70 * @param string $cls Name of the class to be loaded
72 * @return boolean hook value; true means continue processing, false means stop.
74 function onAutoload($cls)
76 $dir = dirname(__FILE__);
80 case 'NeweventAction':
82 case 'CancelrsvpAction':
83 case 'ShoweventAction':
84 case 'ShowrsvpAction':
85 include_once $dir . '/' . strtolower(mb_substr($cls, 0, -6)) . '.php';
91 case 'CancelRSVPForm':
92 include_once $dir . '/'.strtolower($cls).'.php';
96 include_once $dir . '/'.$cls.'.php';
104 * Map URLs to actions
106 * @param Net_URL_Mapper $m path-to-action mapper
108 * @return boolean hook value; true means continue processing, false means stop.
110 function onRouterInitialized($m)
112 $m->connect('main/event/new',
113 array('action' => 'newevent'));
114 $m->connect('main/event/rsvp',
115 array('action' => 'newrsvp'));
116 $m->connect('main/event/rsvp/cancel',
117 array('action' => 'cancelrsvp'));
118 $m->connect('event/:id',
119 array('action' => 'showevent'),
120 array('id' => '[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}'));
121 $m->connect('rsvp/:id',
122 array('action' => 'showrsvp'),
123 array('id' => '[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}'));
127 function onPluginVersion(&$versions)
129 $versions[] = array('name' => 'Event',
130 'version' => STATUSNET_VERSION,
131 'author' => 'Evan Prodromou',
132 'homepage' => 'http://status.net/wiki/Plugin:Event',
134 // TRANS: Plugin description.
135 _m('Event invitations and RSVPs.'));
139 function appTitle() {
140 // TRANS: Title for event application.
141 return _m('TITLE','Event');
149 return array(Happening::OBJECT_TYPE,
156 * Given a parsed ActivityStreams activity, save it into a notice
157 * and other data structures.
159 * @param Activity $activity
160 * @param Profile $actor
161 * @param array $options=array()
163 * @return Notice the resulting notice
165 function saveNoticeFromActivity($activity, $actor, $options=array())
167 if (count($activity->objects) != 1) {
168 throw new Exception(_('Too many activity objects.'));
171 $happeningObj = $activity->objects[0];
173 if ($happeningObj->type != Happening::OBJECT_TYPE) {
174 // TRANS: Exception thrown when event plugin comes across a non-event type object.
175 throw new Exception(_m('Wrong type for object.'));
180 switch ($activity->verb) {
181 case ActivityVerb::POST:
182 $notice = Happening::saveNew($actor,
185 $happeningObj->title,
187 $happeningObj->summary,
193 $happening = Happening::staticGet('uri', $happeningObj->id);
194 if (empty($happening)) {
195 // FIXME: save the event
196 // TRANS: Exception thrown when trying to RSVP for an unknown event.
197 throw new Exception(_m('RSVP for unknown event.'));
199 $notice = RSVP::saveNew($actor, $happening, $activity->verb, $options);
202 // TRANS: Exception thrown when event plugin comes across a undefined verb.
203 throw new Exception(_m('Unknown verb for events.'));
210 * Turn a Notice into an activity object
212 * @param Notice $notice
214 * @return ActivityObject
216 function activityObjectFromNotice($notice)
220 switch ($notice->object_type) {
221 case Happening::OBJECT_TYPE:
222 $happening = Happening::fromNotice($notice);
227 $rsvp = RSVP::fromNotice($notice);
228 $happening = $rsvp->getEvent();
232 if (empty($happening)) {
233 // TRANS: Exception thrown when event plugin comes across a unknown object type.
234 throw new Exception(_m('Unknown object type.'));
237 $notice = $happening->getNotice();
239 if (empty($notice)) {
240 // TRANS: Exception thrown when referring to a notice that is not an event an in event context.
241 throw new Exception(_m('Unknown event notice.'));
244 $obj = new ActivityObject();
246 $obj->id = $happening->uri;
247 $obj->type = Happening::OBJECT_TYPE;
248 $obj->title = $happening->title;
249 $obj->summary = $happening->description;
250 $obj->link = $notice->bestUrl();
252 // XXX: how to get this stuff into JSON?!
254 $obj->extra[] = array('dtstart',
255 array('xmlns' => 'urn:ietf:params:xml:ns:xcal'),
256 common_date_iso8601($happening->start_time));
258 $obj->extra[] = array('dtend',
259 array('xmlns' => 'urn:ietf:params:xml:ns:xcal'),
260 common_date_iso8601($happening->end_time));
262 // XXX: probably need other stuff here
268 * Change the verb on RSVP notices
270 * @param Notice $notice
272 * @return ActivityObject
274 function onEndNoticeAsActivity($notice, &$act) {
275 switch ($notice->object_type) {
279 $act->verb = $notice->object_type;
285 function adaptNoticeListItem($nli)
287 $notice = $nli->notice;
289 switch ($notice->object_type) {
290 case Happening::OBJECT_TYPE:
291 return new EventListItem($nli);
296 return new RSVPListItem($nli);
305 * @param HTMLOutputter $out
308 function entryForm($out)
310 return new EventForm($out);
314 * When a notice is deleted, clean up related tables.
316 * @param Notice $notice
318 function deleteRelated($notice)
320 switch ($notice->object_type) {
321 case Happening::OBJECT_TYPE:
322 common_log(LOG_DEBUG, "Deleting event from notice...");
323 $happening = Happening::fromNotice($notice);
324 $happening->delete();
329 common_log(LOG_DEBUG, "Deleting rsvp from notice...");
330 $rsvp = RSVP::fromNotice($notice);
331 common_log(LOG_DEBUG, "to delete: $rsvp->id");
335 common_log(LOG_DEBUG, "Not deleting related, wtf...");
339 function onEndShowScripts($action)
341 $action->inlineScript('$(document).ready(function() { $("#event-startdate").datepicker(); $("#event-enddate").datepicker(); });');
344 function onEndShowStyles($action)
346 $action->cssLink($this->path('event.css'));
350 function onStartShowThreadedNoticeTail($nli, $notice, &$children)
352 // Filter out any poll responses
353 if ($notice->object_type == Happening::OBJECT_TYPE) {
354 $children = array_filter($children, array($this, 'isNotRSVP'));
359 function isNotRSVP($notice)
361 return (!in_array($notice->object_type, array(RSVP::POSITIVE, RSVP::NEGATIVE, RSVP::POSSIBLE)));