]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/Video.php
function run: @return mixed
[SourceForge/phpwiki.git] / lib / plugin / Video.php
1 <?php
2
3 /*
4  * Copyright 2009 Roger Guignard and Marc-Etienne Vargenau, Alcatel-Lucent
5  *
6  * This file is part of PhpWiki.
7  *
8  * PhpWiki is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * PhpWiki is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License along
19  * with PhpWiki; if not, write to the Free Software Foundation, Inc.,
20  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21  */
22
23 /*
24  * Standard Alcatel-Lucent disclaimer for contributing to open source
25  *
26  * "The VideoPlugin ("Contribution") has not been tested and/or
27  * validated for release as or in products, combinations with products or
28  * other commercial use. Any use of the Contribution is entirely made at
29  * the user's own responsibility and the user can not rely on any features,
30  * functionalities or performances Alcatel-Lucent has attributed to the
31  * Contribution.
32  *
33  * THE CONTRIBUTION BY ALCATEL-LUCENT IS PROVIDED AS IS, WITHOUT WARRANTY
34  * OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
35  * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, COMPLIANCE,
36  * NON-INTERFERENCE AND/OR INTERWORKING WITH THE SOFTWARE TO WHICH THE
37  * CONTRIBUTION HAS BEEN MADE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL
38  * ALCATEL-LUCENT BE LIABLE FOR ANY DAMAGES OR OTHER LIABLITY, WHETHER IN
39  * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
40  * CONTRIBUTION OR THE USE OR OTHER DEALINGS IN THE CONTRIBUTION, WHETHER
41  * TOGETHER WITH THE SOFTWARE TO WHICH THE CONTRIBUTION RELATES OR ON A STAND
42  * ALONE BASIS."
43  */
44
45 class WikiPlugin_Video
46     extends WikiPlugin
47 {
48     function getDescription()
49     {
50         return _("Display video in Flash or HTML5.");
51     }
52
53     function getDefaultArguments()
54     {
55         return array('width' => 460,
56             'height' => 320,
57             'url' => '',
58             'file' => '',
59             'autoplay' => 'false'
60         );
61     }
62
63     /**
64      * @param WikiDB $dbi
65      * @param string $argstr
66      * @param WikiRequest $request
67      * @param string $basepage
68      * @return mixed
69      */
70     function run($dbi, $argstr, &$request, $basepage)
71     {
72
73         global $WikiTheme;
74         $args = $this->getArgs($argstr, $request);
75         extract($args);
76
77         if (!$url && !$file) {
78             return $this->error(_("Both 'url' or 'file' parameters missing."));
79         } elseif ($url && $file) {
80             return $this->error(_("Choose only one of 'url' or 'file' parameters."));
81         } elseif ($file) {
82             // $url = SERVER_URL . getUploadDataPath() . '/' . $file;
83             $url = getUploadDataPath() . '/' . $file;
84         }
85
86         if (string_ends_with($url, ".ogg")) {
87             return HTML::video(array('autoplay' => 'true', 'controls' => 'true', 'src' => $url),
88                 _("Your browser does not understand the HTML 5 video tag."));
89         }
90
91         $html = HTML();
92
93         if (isBrowserIE()) {
94             $object = HTML::object(array('id' => 'flowplayer',
95                 'classid' => 'clsid:D27CDB6E-AE6D-11cf-96B8-444553540000',
96                 'width' => $width,
97                 'height' => $height));
98
99             $param = HTML::param(array('name' => 'movie',
100                 'value' => SERVER_URL . $WikiTheme->_findData('flowplayer-3.2.4.swf')));
101             $object->pushContent($param);
102
103             $param = HTML::param(array('name' => "allowfullscreen",
104                 'value' => "true"));
105             $object->pushContent($param);
106
107             $param = HTML::param(array('name' => "allowscriptaccess",
108                 'value' => "false"));
109             $object->pushContent($param);
110
111             $flashvars = "config={'clip':{'url':'" . $url . "','autoPlay':" . $autoplay . "}}";
112
113             $param = HTML::param(array('name' => 'flashvars',
114                 'value' => $flashvars));
115             $object->pushContent($param);
116
117             $embed = HTML::embed(array('type' => 'application/x-shockwave-flash',
118                 'width' => $width,
119                 'height' => $height,
120                 'src' => SERVER_URL . $WikiTheme->_findData('flowplayer-3.2.4.swf'),
121                 'flashvars' => $flashvars));
122             $object->pushContent($embed);
123
124             $html->pushContent($object);
125
126         } else {
127             $object = HTML::object(array('data' => SERVER_URL . $WikiTheme->_findData('flowplayer-3.2.4.swf'),
128                 'type' => "application/x-shockwave-flash",
129                 'width' => $width,
130                 'height' => $height));
131
132             $param = HTML::param(array('name' => "allowfullscreen",
133                 'value' => "true"));
134             $object->pushContent($param);
135
136             $param = HTML::param(array('name' => "allowscriptaccess",
137                 'value' => "false"));
138             $object->pushContent($param);
139
140             $value = "config={'clip':{'url':'" . $url . "','autoPlay':" . $autoplay . "}}";
141             $param = HTML::param(array('name' => "flashvars",
142                 'value' => $value));
143             $object->pushContent($param);
144
145             $html->pushContent($object);
146         }
147         return $html;
148     }
149 }
150
151 // Local Variables:
152 // mode: php
153 // tab-width: 8
154 // c-basic-offset: 4
155 // c-hanging-comment-ender-p: nil
156 // indent-tabs-mode: nil
157 // End: