diff options
author | Sem <sembrestels@riseup.net> | 2012-04-17 23:54:30 -0700 |
---|---|---|
committer | Sem <sembrestels@riseup.net> | 2012-04-17 23:54:30 -0700 |
commit | a613b944015fd82f97a15392c0de0e7df104706d (patch) | |
tree | 5022ba0160427bec07cf9fdf337ef8161e4071b9 /lib/Videolist/Platform/Vimeo.php | |
parent | f1a0a4d5aa28753620552df9d5e88bd983d0aca4 (diff) | |
parent | 4af120de2bd0fe2046795346a40102f00fbe5479 (diff) | |
download | elgg-a613b944015fd82f97a15392c0de0e7df104706d.tar.gz elgg-a613b944015fd82f97a15392c0de0e7df104706d.tar.bz2 |
Merge pull request #1 from mrclay/master
Partial rewrite
Diffstat (limited to 'lib/Videolist/Platform/Vimeo.php')
-rw-r--r-- | lib/Videolist/Platform/Vimeo.php | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/lib/Videolist/Platform/Vimeo.php b/lib/Videolist/Platform/Vimeo.php new file mode 100644 index 000000000..a4a1f275c --- /dev/null +++ b/lib/Videolist/Platform/Vimeo.php @@ -0,0 +1,40 @@ +<?php + +class Videolist_Platform_Vimeo implements Videolist_PlatformInterface +{ + public function getType() + { + return "vimeo"; + } + + public function parseUrl($url) + { + $parsed = parse_url($url); + $path = explode('/', $parsed['path']); + + if ($parsed['host'] != 'vimeo.com' || !(int) $path[1]) { + return false; + } + + return array( + 'video_id' => $path[1], + ); + } + + public function getData($parsed) + { + $video_id = $parsed['video_id']; + + $buffer = file_get_contents("http://vimeo.com/api/v2/video/$video_id.xml"); + $xml = new SimpleXMLElement($buffer); + + $videos = $xml->children(); + $video = $videos[0]; + + return array( + 'title' => $video->title, + 'description' => strip_tags($video->description), + 'thumbnail' => $video->thumbnail_medium, + ); + } +} |