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 // TRANS: Exception thrown when there are too many activity objects.
169 throw new Exception(_m('Too many activity objects.'));
172 $happeningObj = $activity->objects[0];
174 if ($happeningObj->type != Happening::OBJECT_TYPE) {
175 // TRANS: Exception thrown when event plugin comes across a non-event type object.
176 throw new Exception(_m('Wrong type for object.'));
181 switch ($activity->verb) {
182 case ActivityVerb::POST:
183 $notice = Happening::saveNew($actor,
186 $happeningObj->title,
188 $happeningObj->summary,
195 $happening = Happening::staticGet('uri', $happeningObj->id);
196 if (empty($happening)) {
197 // FIXME: save the event
198 // TRANS: Exception thrown when trying to RSVP for an unknown event.
199 throw new Exception(_m('RSVP for unknown event.'));
201 $notice = RSVP::saveNew($actor, $happening, $activity->verb, $options);
204 // TRANS: Exception thrown when event plugin comes across a undefined verb.
205 throw new Exception(_m('Unknown verb for events.'));
212 * Turn a Notice into an activity object
214 * @param Notice $notice
216 * @return ActivityObject
218 function activityObjectFromNotice($notice)
222 switch ($notice->object_type) {
223 case Happening::OBJECT_TYPE:
224 $happening = Happening::fromNotice($notice);
229 $rsvp = RSVP::fromNotice($notice);
230 $happening = $rsvp->getEvent();
234 if (empty($happening)) {
235 // TRANS: Exception thrown when event plugin comes across a unknown object type.
236 throw new Exception(_m('Unknown object type.'));
239 $notice = $happening->getNotice();
241 if (empty($notice)) {
242 // TRANS: Exception thrown when referring to a notice that is not an event an in event context.
243 throw new Exception(_m('Unknown event notice.'));
246 $obj = new ActivityObject();
248 $obj->id = $happening->uri;
249 $obj->type = Happening::OBJECT_TYPE;
250 $obj->title = $happening->title;
251 $obj->summary = $happening->description;
252 $obj->link = $notice->bestUrl();
254 // XXX: how to get this stuff into JSON?!
256 $obj->extra[] = array('dtstart',
257 array('xmlns' => 'urn:ietf:params:xml:ns:xcal'),
258 common_date_iso8601($happening->start_time));
260 $obj->extra[] = array('dtend',
261 array('xmlns' => 'urn:ietf:params:xml:ns:xcal'),
262 common_date_iso8601($happening->end_time));
264 // XXX: probably need other stuff here
270 * Change the verb on RSVP notices
272 * @param Notice $notice
274 * @return ActivityObject
276 function onEndNoticeAsActivity($notice, &$act) {
277 switch ($notice->object_type) {
281 $act->verb = $notice->object_type;
287 function adaptNoticeListItem($nli)
289 $notice = $nli->notice;
291 switch ($notice->object_type) {
292 case Happening::OBJECT_TYPE:
293 return new EventListItem($nli);
298 return new RSVPListItem($nli);
308 * @param HTMLOutputter $out
311 function entryForm($out)
313 return new EventForm($out);
317 * When a notice is deleted, clean up related tables.
319 * @param Notice $notice
321 function deleteRelated($notice)
323 switch ($notice->object_type) {
324 case Happening::OBJECT_TYPE:
325 common_log(LOG_DEBUG, "Deleting event from notice...");
326 $happening = Happening::fromNotice($notice);
327 $happening->delete();
332 common_log(LOG_DEBUG, "Deleting rsvp from notice...");
333 $rsvp = RSVP::fromNotice($notice);
334 common_log(LOG_DEBUG, "to delete: $rsvp->id");
338 common_log(LOG_DEBUG, "Not deleting related, wtf...");
342 function onEndShowScripts($action)
344 $action->inlineScript('$(document).ready(function() { $("#event-startdate").datepicker(); $("#event-enddate").datepicker(); });');
347 function onEndShowStyles($action)
349 $action->cssLink($this->path('event.css'));
353 function onStartAddNoticeReply($nli, $parent, $child)
355 // Filter out any poll responses
356 if (($parent->object_type == Happening::OBJECT_TYPE) &&
357 in_array($child->object_type, array(RSVP::POSITIVE, RSVP::NEGATIVE, RSVP::POSSIBLE))) {