]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/GNUsocialVideo/GNUsocialVideoPlugin.php
plugins onAutoload now only overloads if necessary (extlibs etc.)
[quix0rs-gnu-social.git] / plugins / GNUsocialVideo / GNUsocialVideoPlugin.php
1 <?php
2 /**
3  * GNU Social
4  * Copyright (C) 2011, Free Software Foundation, Inc.
5  *
6  * PHP version 5
7  *
8  * LICENCE:
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.
13  *
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.
18  *
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/>.
21  *
22  * @category  Widget
23  * @package   GNU Social
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
27  */
28
29 if (!defined('STATUSNET')) {
30     exit(1);
31 }
32
33 class GNUsocialVideoPlugin extends MicroAppPlugin
34 {
35
36     function onCheckSchema()
37     {
38         $schema = Schema::get();
39
40         $schema->ensureTable('video', Video::schemaDef());
41
42         return true;
43     }
44
45     function onRouterInitialized($m)
46     {
47         $m->connect('main/postvideo', array('action' => 'postvideo'));
48         $m->connect('showvideo/:id', array('action' => 'showvideo'));
49         return true;
50     }
51
52     function entryForm($out)
53     {
54         return new VideoForm($out);
55     }
56
57     function appTitle()
58     {
59         return _('Video');
60     }
61
62     function tag()
63     {
64         return 'GNUsocialVideo';
65     }
66
67     function types()
68     {
69         return array(Video::OBJECT_TYPE);
70     }
71
72     function saveNoticeFromActivity($activity, $actor, $options=array())
73     {
74         if(count($activity->objects) != 1) {
75             throw new Exception('Too many activity objects.');
76         }
77
78         $videoObj = $activity->objects[0];
79
80         if ($videoObj->type != Video::OBJECT_TYPE) {
81             throw new Exception('Wrong type for object.');
82         }
83
84         // For now we read straight from the xml tree, no other way to get this information.
85         // When there's a better API for this, we should change to it.
86         $uri = ActivityUtils::getLink($activity->entry, 'enclosure');
87
88         $options['object_type'] = Video::OBJECT_TYPE;
89
90         Video::saveNew($actor, $uri, $options);
91    
92     }
93
94     function activityObjectFromNotice($notice)
95     {
96         $object = new ActivityObject();
97         $object->id = $notice->uri;
98         $object->type = Video::OBJECT_TYPE;
99         $object->title = $notice->content;
100         $object->summary = $notice->content;
101         $object->link = $notice->bestUrl();
102
103         $vid = Video::getByNotice($notice);
104
105         if ($vid) {
106             $object->extra[] = array('link', array('rel' => 'enclosure', 'href' => $vid->url), array());
107         }
108         
109         return $object;
110         
111     }
112
113     function showNotice($notice, $out)
114     {
115         $vid = Video::getByNotice($notice);
116         if ($vid) {
117             $out->element('video', array('src' => $vid->url,
118                 'width' => '100%',
119                 'controls' => 'controls'));
120         }
121     }
122
123     function deleteRelated($notice)
124     {
125         $vid = Video::getByNotice($notice);
126         if ($vid) {
127             $vid->delete();
128         }
129     }
130 }