4 * Copyright (C) 2011, Free Software Foundation, Inc.
9 * This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Affero General Public License for more details.
19 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
24 * @author Ian Denhardt <ian@zenhack.net>
25 * @copyright 2011 Free Software Foundation, Inc.
26 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
29 if (!defined('STATUSNET')) {
33 class GNUsocialVideoPlugin extends MicroAppPlugin
36 var $oldSaveNew = true;
38 function onCheckSchema()
40 $schema = Schema::get();
42 $schema->ensureTable('video', Video::schemaDef());
47 function onRouterInitialized(URLMapper $m)
49 $m->connect('main/postvideo', array('action' => 'postvideo'));
50 $m->connect('showvideo/:id', array('action' => 'showvideo'));
54 function entryForm($out)
56 return new VideoForm($out);
66 return 'GNUsocialVideo';
71 return array(Video::OBJECT_TYPE);
74 function saveNoticeFromActivity(Activity $activity, Profile $actor, array $options=array())
76 if(count($activity->objects) != 1) {
77 throw new Exception('Too many activity objects.');
80 $videoObj = $activity->objects[0];
82 if ($videoObj->type != Video::OBJECT_TYPE) {
83 throw new Exception('Wrong type for object.');
86 // For now we read straight from the xml tree, no other way to get this information.
87 // When there's a better API for this, we should change to it.
88 $uri = ActivityUtils::getLink($activity->entry, 'enclosure');
90 $options['object_type'] = Video::OBJECT_TYPE;
92 Video::saveNew($actor, $uri, $options);
96 function activityObjectFromNotice(Notice $notice)
98 $object = new ActivityObject();
99 $object->id = $notice->uri;
100 $object->type = Video::OBJECT_TYPE;
101 $object->title = $notice->content;
102 $object->summary = $notice->content;
103 $object->link = $notice->getUrl();
105 $vid = Video::getByNotice($notice);
108 $object->extra[] = array('link', array('rel' => 'enclosure', 'href' => $vid->url), array());
115 function showNotice(Notice $notice, HTMLOutputter $out)
117 $vid = Video::getByNotice($notice);
119 $out->element('video', array('src' => $vid->url,
121 'controls' => 'controls'));
125 function deleteRelated(Notice $notice)
127 $vid = Video::getByNotice($notice);