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.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.php')
-rw-r--r-- | lib/videolist.php | 65 |
1 files changed, 41 insertions, 24 deletions
diff --git a/lib/videolist.php b/lib/videolist.php index 2dfc7d8fc..b86db99cf 100644 --- a/lib/videolist.php +++ b/lib/videolist.php @@ -1,29 +1,46 @@ <?php -define('VIDEOLIST_SUPPORTED_PLATFORMS', 'youtube, vimeo, metacafe, bliptv, gisstv'); - -foreach(explode(', ', VIDEOLIST_SUPPORTED_PLATFORMS) as $videotype){ - include(elgg_get_plugins_path()."videolist/lib/$videotype.php"); -} - -function videolist_parseurl($url){ - foreach(explode(', ', VIDEOLIST_SUPPORTED_PLATFORMS) as $videotype){ - if (is_callable("videolist_parseurl_$videotype")){ - if ($parsed = call_user_func("videolist_parseurl_$videotype", $url)) { - return $parsed; - } - } - } - return array(); +/** + * @return array + */ +function videolist_get_default_platforms() { + static $platforms = array(); + if (! $platforms) { + require dirname(__FILE__) . '/Videolist/PlatformInterface.php'; + $path = dirname(__FILE__) . '/Videolist/Platform'; + foreach (scandir($path) as $filename) { + if (preg_match('/^(\\w+)\\.php$/', $filename, $m)) { + require "$path/$filename"; + $class = 'Videolist_Platform_' . $m[1]; + $platform = new $class(); + if ($platform instanceof Videolist_PlatformInterface) { + /* @var Videolist_PlatformInterface $platform */ + $platforms[$platform->getType()][] = $platform; + } + } + } + } + return $platforms; } -function videolist_get_data($parsed) { - $videotype = $parsed['videotype']; - $video_id = $parsed['video_id']; - - if(is_callable("videolist_get_data_$videotype")){ - return array_merge($parsed, call_user_func("videolist_get_data_$videotype", $parsed)); - } else { - return $parsed; - } +/** + * @param string $url + * @return array [parsed, platform] + */ +function videolist_parse_url($url) { + $params = array( + 'url' => $url, + ); + $platforms = videolist_get_default_platforms(); + $platforms = elgg_trigger_plugin_hook('videolist:prepare', 'platforms', $params, $platforms); + foreach ($platforms as $list) { + foreach ($list as $platform) { + /* @var Videolist_PlatformInterface $platform */ + $parsed = $platform->parseUrl($url); + if ($parsed) { + return array($parsed, $platform); + } + } + } + return false; } |