aboutsummaryrefslogtreecommitdiff
path: root/mod/videolist/lib/Videolist/Platform/Gisstv.php
diff options
context:
space:
mode:
authorSem <sembrestels@riseup.net>2013-11-09 16:11:25 +0100
committerSem <sembrestels@riseup.net>2013-11-09 16:11:25 +0100
commit59448d8a9864573c05477a63a6dda404c455fdb6 (patch)
tree8222848ea99b84a33b07a3113ff63bb07ab46692 /mod/videolist/lib/Videolist/Platform/Gisstv.php
parent4cf4e4d3969ab43978c95f88238547530b01422d (diff)
parent17d7adcb317d25e37d3091e94b66e3f16de54196 (diff)
downloadelgg-59448d8a9864573c05477a63a6dda404c455fdb6.tar.gz
elgg-59448d8a9864573c05477a63a6dda404c455fdb6.tar.bz2
Add 'mod/videolist/' from commit '17d7adcb317d25e37d3091e94b66e3f16de54196'
git-subtree-dir: mod/videolist git-subtree-mainline: 4cf4e4d3969ab43978c95f88238547530b01422d git-subtree-split: 17d7adcb317d25e37d3091e94b66e3f16de54196
Diffstat (limited to 'mod/videolist/lib/Videolist/Platform/Gisstv.php')
-rw-r--r--mod/videolist/lib/Videolist/Platform/Gisstv.php50
1 files changed, 50 insertions, 0 deletions
diff --git a/mod/videolist/lib/Videolist/Platform/Gisstv.php b/mod/videolist/lib/Videolist/Platform/Gisstv.php
new file mode 100644
index 000000000..b79898449
--- /dev/null
+++ b/mod/videolist/lib/Videolist/Platform/Gisstv.php
@@ -0,0 +1,50 @@
+<?php
+
+class Videolist_Platform_Gisstv implements Videolist_PlatformInterface
+{
+ public function getType()
+ {
+ return "gisstv";
+ }
+
+ public function parseUrl($url)
+ {
+ $parsed = parse_url($url);
+ $path = explode('/', $parsed['path']);
+
+ if ($parsed['host'] != 'giss.tv' || $path[1] != 'dmmdb') {
+ return false;
+ }
+
+ if($path[2] == 'contents' && isset($path[3])) {
+ $video_id = $path[3];
+ } elseif($path[3] == 'contents' && isset($path[4])) {
+ $video_id = $path[4];
+ } else {
+ return false;
+ }
+
+ return array(
+ 'video_id' => $video_id,
+ );
+ }
+
+ public function getData($parsed)
+ {
+ $video_id = $parsed['video_id'];
+
+ $buffer = file_get_contents('http://giss.tv/dmmdb//rss.php');
+ $xml = new SimpleXMLElement($buffer);
+
+ $data = array();
+ foreach($xml->xpath('/rss/channel/item') as $item){
+ if ($item->link === 'http://giss.tv/dmmdb//contents/'.$video_id) {
+ $data['title'] = $item->title;
+ $data['description'] = strip_tags($item->description);
+ $data['thumbnail'] = $item->thumbnail;
+ break;
+ }
+ }
+ return $data;
+ }
+}