123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314 |
- <?php
- if (!defined('STATUSNET')) {
- exit(1);
- }
- class oEmbedHelper
- {
- protected static $apiMap = array(
- 'flickr.com' => 'https://www.flickr.com/services/oembed/',
- 'youtube.com' => 'https://www.youtube.com/oembed',
- 'viddler.com' => 'http://lab.viddler.com/services/oembed/',
- 'revision3.com' => 'https://revision3.com/api/oembed/',
- 'vimeo.com' => 'https://vimeo.com/api/oembed.json',
- );
- protected static $functionMap = array(
- );
-
- public static function getObject($url, $params=array())
- {
- $host = parse_url($url, PHP_URL_HOST);
- if (substr($host, 0, 4) == 'www.') {
- $host = substr($host, 4);
- }
- common_log(LOG_INFO, 'Checking for oEmbed data for ' . $url);
-
-
- $order = common_config('oembed', 'order');
- foreach ($order as $method) {
- switch ($method) {
- case 'built-in':
- common_log(LOG_INFO, 'Considering built-in oEmbed methods...');
-
-
-
- if (array_key_exists($host, self::$functionMap)) {
- common_log(LOG_INFO, 'We have a built-in method for ' . $host);
- $func = self::$functionMap[$host];
- return call_user_func($func, $url, $params);
- }
- break;
- case 'well-known':
- common_log(LOG_INFO, 'Considering well-known oEmbed endpoints...');
-
- if (array_key_exists($host, self::$apiMap)) {
- $api = self::$apiMap[$host];
- common_log(LOG_INFO, 'Using well-known endpoint "' . $api . '" for "' . $host . '"');
- break 2;
- }
- break;
- case 'discovery':
- try {
- common_log(LOG_INFO, 'Trying to discover an oEmbed endpoint using link headers.');
- $api = self::discover($url);
- common_log(LOG_INFO, 'Found API endpoint ' . $api . ' for URL ' . $url);
- break 2;
- } catch (Exception $e) {
- common_log(LOG_INFO, 'Could not find an oEmbed endpoint using link headers.');
-
- }
- break;
- case 'service':
- $api = common_config('oembed', 'endpoint');
- common_log(LOG_INFO, 'Using service API endpoint ' . $api);
- break 2;
- break;
- }
- }
- if (empty($api)) {
-
- throw new ServerException(_('No oEmbed API endpoint available.'));
- }
- return self::getObjectFrom($api, $url, $params);
- }
-
- static function discover($url)
- {
-
- $body = self::http($url);
- return self::discoverFromHTML($url, $body);
- }
-
- static function discoverFromHTML($url, $body)
- {
-
-
- $old = error_reporting(error_reporting() & ~(E_WARNING | E_NOTICE));
- $dom = new DOMDocument();
- $ok = $dom->loadHTML($body);
- error_reporting($old);
- if (!$ok) {
- throw new oEmbedHelper_BadHtmlException();
- }
-
- $feeds = array(
- 'application/json+oembed' => false,
- );
- $nodes = $dom->getElementsByTagName('link');
- for ($i = 0; $i < $nodes->length; $i++) {
- $node = $nodes->item($i);
- if ($node->hasAttributes()) {
- $rel = $node->attributes->getNamedItem('rel');
- $type = $node->attributes->getNamedItem('type');
- $href = $node->attributes->getNamedItem('href');
- if ($rel && $type && $href) {
- $rel = array_filter(explode(" ", $rel->value));
- $type = trim($type->value);
- $href = trim($href->value);
- if (in_array('alternate', $rel) && array_key_exists($type, $feeds) && empty($feeds[$type])) {
-
- $feeds[$type] = $href;
- }
- }
- }
- }
-
- foreach ($feeds as $type => $url) {
- if ($url) {
- return $url;
- }
- }
- throw new oEmbedHelper_DiscoveryException();
- }
-
- static function getObjectFrom($api, $url, $params=array())
- {
- $params['url'] = $url;
- $params['format'] = 'json';
- $key=common_config('oembed','apikey');
- if(isset($key)) {
- $params['key'] = common_config('oembed','apikey');
- }
- $data = self::json($api, $params);
- return self::normalize($data);
- }
-
- static function normalize($orig)
- {
- $data = clone($orig);
- if (empty($data->type)) {
- throw new Exception('Invalid oEmbed data: no type field.');
- }
- if ($data->type == 'image') {
-
- $data->type = 'photo';
- }
- if (isset($data->thumbnail_url)) {
- if (!isset($data->thumbnail_width)) {
-
- $data->thumbnail_width = common_config('thumbnail', 'width');
- $data->thumbnail_height = common_config('thumbnail', 'height');
- }
- }
- return $data;
- }
-
- static protected function json($url, $params=array())
- {
- $data = self::http($url, $params);
- return json_decode($data);
- }
-
- static protected function http($url, $params=array())
- {
- $client = HTTPClient::start();
- if ($params) {
- $query = http_build_query($params, null, '&');
- if (strpos($url, '?') === false) {
- $url .= '?' . $query;
- } else {
- $url .= '&' . $query;
- }
- }
- $response = $client->get($url);
- if ($response->isOk()) {
- return $response->getBody();
- } else {
- throw new Exception('Bad HTTP response code: ' . $response->getStatus());
- }
- }
- }
- class oEmbedHelper_Exception extends Exception
- {
- public function __construct($message = "", $code = 0, $previous = null)
- {
- parent::__construct($message, $code);
- }
- }
- class oEmbedHelper_BadHtmlException extends oEmbedHelper_Exception
- {
- function __construct($previous=null)
- {
- return parent::__construct('Bad HTML in discovery data.', 0, $previous);
- }
- }
- class oEmbedHelper_DiscoveryException extends oEmbedHelper_Exception
- {
- function __construct($previous=null)
- {
- return parent::__construct('No oEmbed discovery data.', 0, $previous);
- }
- }
|