33 if (strpos($a_location,
"youtube.com") > 0 ||
34 strpos($a_location,
"youtu.be") > 0) {
48 $pos1 = strpos($a_location,
"v=");
49 $pos2 = strpos($a_location,
"&", $pos1);
53 : strlen($a_location);
54 $par[
"v"] = substr($a_location, $pos1 + 2, $len - ($pos1 + 2));
55 } elseif (strpos($a_location,
"youtu.be") > 0) {
56 $par[
"v"] = substr($a_location, strrpos($a_location,
"/") + 1);
58 $qpos = strpos($par[
"v"] ??
"",
"?");
60 $par[
"v"] = substr($par[
"v"], 0, $qpos);
71 if (strpos($a_location,
"flickr.com") > 0) {
85 $pos1 = strpos($a_location,
"flickr.com/photos/");
86 $pos2 = strpos($a_location,
"/", $pos1 + 18);
91 $par[
"user_id"] = substr($a_location, $pos1 + 18, $len - ($pos1 + 18));
95 $pos1 = strpos($a_location,
"/tags/");
96 $pos2 = strpos($a_location,
"/", $pos1 + 6);
100 : strlen($a_location);
101 $par[
"tags"] = substr($a_location, $pos1 + 6, $len - ($pos1 + 6));
105 $pos1 = strpos($a_location,
"/sets/");
106 $pos2 = strpos($a_location,
"/", $pos1 + 6);
111 $par[
"sets"] = substr($a_location, $pos1 + 6, $len - ($pos1 + 6));
123 if (strpos($a_location,
"video.google") > 0) {
137 $pos1 = strpos($a_location,
"docid=");
138 $pos2 = strpos($a_location,
"&", $pos1 + 6);
142 : strlen($a_location);
143 $par[
"docid"] = substr($a_location, $pos1 + 6, $len - ($pos1 + 6));
155 if (strpos($a_location,
"vimeo.com") > 0) {
169 $pos1 = strpos($a_location,
"vimeo.com/");
170 $pos2 = strpos($a_location,
"&", $pos1 + 10);
174 : strlen($a_location);
175 $par[
"id"] = substr($a_location, $pos1 + 10, $len - ($pos1 + 10));
183 $json_url =
'https://vimeo.com/api/oembed.json?url=https%3A//vimeo.com/' . $vid;
185 $curl = curl_init($json_url);
186 curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
187 curl_setopt($curl, CURLOPT_TIMEOUT, 10);
188 curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1);
189 curl_setopt($curl, CURLOPT_REFERER, ILIAS_HTTP_PATH);
191 $return = curl_exec($curl);
194 $r = json_decode($return,
true);
196 if ($return ===
false || is_null(
$r)) {
204 $json_url =
'https://www.youtube.com/oembed?url=http%3A//youtube.com/watch%3Fv%3D' . $vid .
'&format=json';
205 $curl = curl_init($json_url);
206 curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
207 curl_setopt($curl, CURLOPT_TIMEOUT, 10);
208 curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1);
209 curl_setopt($curl, CURLOPT_REFERER, ILIAS_HTTP_PATH);
211 $return = curl_exec($curl);
214 $r = json_decode($return,
true);
216 if ($return ===
false || is_null(
$r)) {
228 if (strpos($a_location,
"docs.google") > 0) {
242 $pos1 = strpos($a_location,
"id=");
243 $pos2 = strpos($a_location,
"&", $pos1 + 3);
247 : strlen($a_location);
248 $par[
"docid"] = substr($a_location, $pos1 + 3, $len - ($pos1 + 3));
250 $pos1 = strpos($a_location,
"docID=");
251 $pos2 = strpos($a_location,
"&", $pos1 + 6);
255 : strlen($a_location);
256 $par[
"docid"] = substr($a_location, $pos1 + 6, $len - ($pos1 + 6));
258 if (strpos($a_location,
"Presentation?") > 0) {
259 $par[
"type"] =
"Presentation";
261 if (strpos($a_location,
"View?") > 0) {
262 $par[
"type"] =
"Document";
281 $a_parameter = array();
287 $a_parameter = array();
293 $a_parameter = array();
299 $a_parameter = array();
302 foreach ($ext_par as $name => $value) {
303 $a_parameter[$name] = $value;