diff options
author | Sem <sembrestels@riseup.net> | 2011-11-10 23:03:58 +0100 |
---|---|---|
committer | Sem <sembrestels@riseup.net> | 2011-11-10 23:03:58 +0100 |
commit | 34e4ad8ba5e0a77b797f24ed9af1cee6dce82c36 (patch) | |
tree | 9f6bde2cac9d032f013a15d614beea5af567a927 /lib/metacafe.php | |
parent | 614c1203c7ddd6108c24b6114d3278089fa70633 (diff) | |
download | elgg-34e4ad8ba5e0a77b797f24ed9af1cee6dce82c36.tar.gz elgg-34e4ad8ba5e0a77b797f24ed9af1cee6dce82c36.tar.bz2 |
Refactored library. One file per videotype.
Diffstat (limited to 'lib/metacafe.php')
-rw-r--r-- | lib/metacafe.php | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/lib/metacafe.php b/lib/metacafe.php new file mode 100644 index 000000000..34b006a32 --- /dev/null +++ b/lib/metacafe.php @@ -0,0 +1,29 @@ +<?php + +function videolist_parseurl_metacafe($url) { + $parsed = parse_url($url); + $path = explode('/', $parsed['path']); + + if ($parsed['host'] != 'www.metacafe.com' || $path[1] != 'watch' || !(int) $path[2]) { + return false; + } + + return array( + 'videotype' => 'metacafe', + 'video_id' => $path[2], + ); +} + +function videolist_get_data_metacafe($parsed){ + $video_id = $parsed['video_id']; + + $buffer = file_get_contents("http://www.metacafe.com/api/item/$video_id"); + $xml = new SimpleXMLElement($buffer); + + return array( + 'title' => sanitize_string(current($xml->xpath('/rss/channel/item/title'))), + 'description' => strip_tags(current($xml->xpath('/rss/channel/item/description'))), + 'thumbnail' => sanitize_string(current($xml->xpath('/rss/channel/item/media:thumbnail/@url'))), + 'embedurl' => sanitize_string(current($xml->xpath('/rss/channel/item/media:content/@url'))), + ); +} |