| Current Path : /home/quelfutuu/www/lchg/plugins/auto/oembed/v3.3.0/inc/ |
| Current File : /home/quelfutuu/www/lchg/plugins/auto/oembed/v3.3.0/inc/oembed.php |
<?php
/**
* Plugin oEmbed
* Licence GPL3
*
*/
if (!defined('_ECRIRE_INC_VERSION')) {
return;
}
/**
* Lister les providers connus
* @return array
*/
function oembed_lister_providers($avec_provider_interdits = false) {
// liste des providers par defaut
// voir
// http://oembed.com/
// http://code.google.com/p/oohembed/source/browse/app/provider/endpoints.json
// https://github.com/starfishmod/jquery-oembed-all/blob/master/jquery.oembed.js
// https://github.com/panzi/oembedendpoints/blob/master/endpoints-simple.json
// voir aussi http://embed.ly/providers qui donne les scheme mais pas les endpoint
$providers = [
'http://*.youtube.com/watch*' => 'https://www.youtube.com/oembed',
'http://*.youtube.com/playlist*' => 'https://www.youtube.com/oembed',
'http://*.youtube.com/shorts*' => 'https://www.youtube.com/oembed',
'http://youtu.be/*' => 'https://www.youtube.com/oembed',
'http://*.vimeo.com/*' => 'https://vimeo.com/api/oembed.json',
'http://vimeo.com/*' => 'https://vimeo.com/api/oembed.json',
'http://*.dailymotion.com/*' => 'https://www.dailymotion.com/services/oembed',
'http://dai.ly/*' => 'https://www.dailymotion.com/services/oembed',
'http://*.flickr.com/*' => 'https://www.flickr.com/services/oembed/',
'http://flickr.com/*' => 'https://www.flickr.com/services/oembed/',
'http://flic.kr/*' => 'https://www.flickr.com/services/oembed/',
'http://soundcloud.com/*' => 'https://soundcloud.com/oembed',
'http://mixcloud.com/*' => 'https://mixcloud.com/oembed',
'http://*.soundcloud.com/*' => 'https://soundcloud.com/oembed',
'http://*.mixcloud.com/*' => 'https://mixcloud.com/oembed',
'http://*.slideshare.net/*/*' => 'https://www.slideshare.net/api/oembed/2',
'http://www.slideshare.net/*/*' => 'https://www.slideshare.net/api/oembed/2',
'http://huffduffer.com/*/*' => 'http://huffduffer.com/oembed',
'http://nfb.ca/film/*' => 'http://www.nfb.ca/remote/services/oembed/',
'http://dotsub.com/view/*' => 'http://dotsub.com/services/oembed',
'http://clikthrough.com/theater/video/*' => 'http://clikthrough.com/services/oembed',
'http://kinomap.com/*' => 'http://www.kinomap.com/oembed',
'http://photobucket.com/albums/*' => 'http://api.photobucket.com/oembed',
'http://photobucket.com/groups/*' => 'http://api.photobucket.com/oembed',
'http://*.smugmug.com/*' => 'https://api.smugmug.com/services/oembed/',
'http://meetup.com/*' => 'https://api.meetup.com/oembed',
'http://meetup.ps/*' => 'http://api.meetup.com/oembed',
'http://*.wordpress.com/*' => 'https://public-api.wordpress.com/oembed/1.0/',
'http://twitter.com/*/status/*' => 'https://publish.twitter.com/oembed',
'http://twitter.com/*/likes' => 'https://publish.twitter.com/oembed',
'http://twitter.com/*/lists/*' => 'https://publish.twitter.com/oembed',
'http://twitter.com/*/timelines/*' => 'https://publish.twitter.com/oembed',
'http://twitter.com/i/moments/*' => 'https://publish.twitter.com/oembed',
'http://techcrunch.com/*' => 'http://public-api.wordpress.com/oembed/1.0/',
'http://wp.me/*' => 'http://public-api.wordpress.com/oembed/1.0/',
'http://my.opera.com/*' => 'http://my.opera.com/service/oembed',
'http://www.collegehumor.com/video/*' => 'http://www.collegehumor.com/oembed.json',
'http://imgur.com/*' => 'http://api.imgur.com/oembed',
'http://*.imgur.com/*' => 'http://api.imgur.com/oembed',
'http://*.onf.ca/*' => 'http://www.onf.ca/remote/services/oembed/',
'http://vine.co/v/*' => 'https://vine.co/oembed.json',
'http://*.tumblr.com/post/*' => 'https://www.tumblr.com/oembed/1.0',
'http://*.kickstarter.com/projects/*' => 'https://www.kickstarter.com/services/oembed',
'http://speakerdeck.com/*' => 'https://speakerdeck.com/oembed.json',
'http://issuu.com/*/docs/*' => 'https://issuu.com/oembed',
'http://*.calameo.com/books/*' => 'https://www.calameo.com/services/oembed',
'http://*.calameo.com/read/*' => 'https://www.calameo.com/services/oembed',
'http://*.arte.tv/*/videos/*' => 'https://api.arte.tv/api/player/v1/oembed/',
'http://egliseinfo.catholique.fr/*' => 'http://egliseinfo.catholique.fr/api/oembed',
#'https://gist.github.com/*' => 'http://github.com/api/oembed?format=json'
];
// pipeline pour permettre aux plugins d'ajouter/supprimer/modifier des providers
$providers = pipeline('oembed_lister_providers', $providers);
// merger avec la globale pour perso mes_options dans un site
// pour supprimer un scheme il suffit de le renseigner avec un endpoint vide
if (isset($GLOBALS['oembed_providers'])) {
$providers = array_merge($providers, $GLOBALS['oembed_providers']);
}
if (!$avec_provider_interdits) {
$providers = array_filter($providers);
}
return $providers;
}
/**
* @param string $url
* @param bool|null $detecter_lien
* false : bloque la detection des liens quelle que soit la config du plugin
* true : force la detection des liens quelle que soit la config du plugin
* null : utilise la config du plugin
* @return array|null
*/
function oembed_provider_from_url($url, bool $detecter_lien = null) {
static $providers = [];
if (!isset($providers[$detecter_lien])) {
$providers[$detecter_lien] = [];
}
if (isset($providers[$detecter_lien][$url])) {
return $providers[$detecter_lien][$url];
}
include_spip('inc/config');
$provider = oembed_verifier_provider($url);
// inconnu ?
if (!$provider and $detecter_lien !== false) {
if ($detecter_lien or lire_config('oembed/detecter_lien', 'non') == 'oui') {
$provider = oembed_detecter_lien($url);
}
}
// inconnu ou interdit ?
if (!$provider or empty($provider['endpoint'])) {
return $providers[$detecter_lien][$url] = null;
}
return $providers[$detecter_lien][$url] = $provider;
}
// Merci WordPress :)
// http://core.trac.wordpress.org/browser/trunk/wp-includes/class-oembed.php
/**
* Récupérer les données oembed d'une url
*
* @param string $url url de la page qui contient le document à récupérer avec oembed
* @param int $maxwidth largeur max du document
* null : la valeur configuree par defaut ou pour le provider est utilisee
* '' : pas de valeur max
* @param int $maxheight hauteur max du document
* null : la valeur configuree par defaut ou pour le provider est utilisee
* '' : pas de valeur max
* @param string $format format à utiliser pour la requete oembed (json ou xml)
* @param bool|null $detecter_lien tenter la détection automatique de lien oembed dans la page indiquée
* false : bloque la detection des liens quelle que soit la config du plugin
* true : force la detection des liens quelle que soit la config du plugin
* null : utilise la config du plugin
* @param bool $force_reload forcer le rechargement de l'oembed depuis la source sans utiliser le cache local
* @return bool|array false si aucun retour ou erreur ; tableau des éléménents de la réponse oembed
*/
function oembed_recuperer_data($url, $maxwidth = null, $maxheight = null, $format = 'json', $detecter_lien = null, $force_reload = false) {
static $cache = [];
// compatibilite avec l'ancienne signature de la fonction : non equivalait a 'auto' (c'est a dire on applique la config du plugin)
if ($detecter_lien === 'non') {
$detecter_lien = null;
}
elseif ($detecter_lien) {
$detecter_lien = true;
}
$provider = oembed_provider_from_url($url, $detecter_lien);
// inconnu ou interdit ?
if (!$provider) {
return false;
}
$data_url = url_absolue($provider['endpoint'], url_de_base());
// certains oembed fournissent un endpoint qui contient deja l'URL, parfois differente de celle de la page
if (!parametre_url($data_url, 'url')) {
$data_url = parametre_url($data_url, 'url', $url, '&');
}
if (!$maxwidth) {
$maxwidth = lire_config('oembed/maxwidth', '600');
}
if (!$maxheight) {
$maxheight = lire_config('oembed/maxheight', '400');
}
$data_url = parametre_url($data_url, 'maxwidth', $maxwidth, '&');
$data_url = parametre_url($data_url, 'maxheight', $maxheight, '&');
$data_url = parametre_url($data_url, 'format', $format, '&');
if (isset($provider['provider_name']) and $provider['provider_name']) {
$provider_name = $provider['provider_name'];
} else {
// pre-traitement du provider si besoin
$provider_name = explode('//', $provider['endpoint']);
$provider_name = explode('/', $provider_name[1]);
$provider_name = reset($provider_name);
}
$provider_name = preg_replace(',\W+,', '_', strtolower($provider_name));
if ($oembed_endpoint_pretraite = charger_fonction("pretraite_$provider_name", 'oembed/input', true)) {
$a = func_get_args();
$args = ['url' => array_shift($a)];
if (count($a)) {
$args['maxwidth'] = array_shift($a);
}
if (count($a)) {
$args['maxheight'] = array_shift($a);
}
if (count($a)) {
$args['format'] = array_shift($a);
}
$args['endpoint'] = $provider['endpoint'];
$data_url = $oembed_endpoint_pretraite($data_url, $args);
}
if (isset($cache[$data_url])) {
return $cache[$data_url];
}
$oembed_cache = sous_repertoire(_DIR_CACHE, 'oembed') . md5($data_url) . '.' . $format;
// si cache oembed dispo et pas de recalcul demande, l'utiliser (perf issue)
if (!$force_reload and file_exists($oembed_cache) and _VAR_MODE !== 'recalcul') {
lire_fichier($oembed_cache, $cache[$data_url]);
$cache[$data_url] = unserialize($cache[$data_url]);
return $cache[$data_url];
}
$oembed_recuperer_url = charger_fonction('oembed_recuperer_url', 'inc');
$cache[$data_url] = $oembed_recuperer_url($data_url, $url, $format);
// si une fonction de post-traitement est fourni pour ce provider+type, l'utiliser
if ($cache[$data_url]) {
if (isset($cache[$data_url]['provider_name']) and $cache[$data_url]['provider_name']) {
$provider_name2 = str_replace(' ', '_', strtolower($cache[$data_url]['provider_name']));
} else {
$provider_name2 = '';
}
$type = strtolower($cache[$data_url]['type']);
// securisons le nom de la fonction (provider peut contenir n'importe quoi)
$f1 = preg_replace(',\W,', '', "posttraite_{$provider_name2}_$type");
$f2 = preg_replace(',\W,', '', "posttraite_{$provider_name2}");
$f3 = preg_replace(',\W,', '', "posttraite_{$provider_name}_$type");
$f4 = preg_replace(',\W,', '', "posttraite_{$provider_name}");
if (
$oembed_provider_posttraite = charger_fonction($f1, 'oembed/input', true)
or $oembed_provider_posttraite = charger_fonction($f2, 'oembed/input', true)
or $oembed_provider_posttraite = charger_fonction($f3, 'oembed/input', true)
or $oembed_provider_posttraite = charger_fonction($f4, 'oembed/input', true)
) {
$cache[$data_url] = $oembed_provider_posttraite($cache[$data_url], $url);
}
ecrire_fichier($oembed_cache, serialize($cache[$data_url]));
}
spip_log('infos oembed pour ' . $url . ' : ' . var_export($cache[$data_url], true), 'oembed.' . _LOG_DEBUG);
return $cache[$data_url];
}
/**
* Vérfier qu'une url est dans la liste des providers autorisés
*
* @param string $url l'url à tester
* @return bool|array
* false si l'url n'est pas dans la liste (provider inconnu) ; details du
* provider dans un tabeau associatif si oui (avec un endpoint vide si
* le provider est explicitement interdit)
*/
function oembed_verifier_provider($url) {
static $base = null;
if (is_null($base)) {
$base = url_de_base();
}
if (strpos($url, (string) $GLOBALS['meta']['adresse_site']) === 0 or strpos($url, (string) $base) === 0) {
return ['endpoint' => ''];
}
$providers = oembed_lister_providers(true);
foreach ($providers as $scheme => $endpoint) {
$regex = '#' . str_replace('\*', '(.+)', preg_quote($scheme, '#')) . '#';
$regex = preg_replace('|^#http\\\://|', '#https?\://', $regex);
if (preg_match($regex, $url)) {
return ['endpoint' => $endpoint];
}
}
return false;
}
/**
* Détecter les liens oembed dans le head d'une page web
*
* @param string $url url de la page à analyser
* @return bool|array false si pas de lien ; description du provider oembed associe au lien
*/
function oembed_detecter_lien($url) {
$providers = [];
// s'assurer que l'URL n'est pas une url direct vers un media mais ressemble bien à l'URL d'une page HTML
// pour eviter de faire des
$parts = parse_url($url);
// si on trouve une extension, verifier que c'est html ou htm, le reste ne nous interesse pas
if (!empty($parts['path'])) {
if (preg_match(',\.(\w+)$,', $parts['path'], $m)) {
if (!in_array(strtolower($m[1]), ['html', 'htm'])) {
spip_log("oembed_detecter_lien $url : on ignore l'extension " . $m[1], 'oembed' . _LOG_DEBUG);
return false;
}
}
}
// on recupere le contenu de la page
// on utilise recuperer_url_cache() avec un cache 24h pour ne pas passer son temps à faire de la detection sur les memes liens
include_spip('inc/distant');
$options = [
'delai_cache' => in_array(_VAR_MODE, ['preview', 'recalcul']) ? 0 : 24 * 3600,
'taille_max' => min(_INC_DISTANT_MAX_SIZE, 256000),
];
$res = recuperer_url_cache($url, $options);
$html = '';
if ($res and intval($res['status'] / 100) < 4 and !empty($res['page'])) {
$html = $res['page'];
// types de liens oembed à détecter
$linktypes = [
'application/json+oembed' => 'json',
'text/json+oembed' => 'json', // ex de 500px
'text/xml+oembed' => 'xml',
'application/xml+oembed' => 'xml', // uniquement pour Vimeo
];
// on ne garde que le head de la page
$head = substr($html, 0, stripos($html, '</head>'));
// un test rapide...
$tagfound = false;
foreach ($linktypes as $linktype => $format) {
if (stripos($head, $linktype)) {
$tagfound = true;
break;
}
}
if ($tagfound && preg_match_all('/<link([^<>]+)>/i', $head, $links)) {
if (!function_exists('extraire_attribut')) {
include_spip('inc/filtres');
}
foreach ($links[0] as $link) {
$type = extraire_attribut($link, 'type');
$href = extraire_attribut($link, 'href');
if (!empty($type) and !empty($linktypes[$type]) and !empty($href)) {
$providers[$linktypes[$type]] = $href;
// on a le json, ça nous suffit
if ('json' == $linktypes[$type]) {
break;
}
}
}
}
}
$res = [];
// on préfère le json au xml
if (!empty($providers['json'])) {
$res['endpoint'] = $providers['json'];
} elseif (!empty($providers['xml'])) {
$res['endpoint'] = $providers['xml'];
} else {
return false;
}
// detecter certains providers specifiques : ex mastodon, chaque instance a son nom et on peut pas l'identifier par son URL
if (strpos($html, '//github.com/tootsuite/mastodon') !== false or strpos($html, '//joinmastodon.org') !== false) {
$res['provider_name'] = 'Mastodon';
}
return $res;
}
/**
* Embarquer un lien oembed si possible
* @param string $lien
* @return string
*/
function oembed_embarquer_lien($lien) {
$url = extraire_attribut($lien, 'href');
$texte = null;
if ($url and oembed_provider_from_url($url)) {
$fond = recuperer_fond('modeles/oembed', ['url' => $url, 'lien' => $lien]);
if ($fond = trim($fond)) {
$texte = $fond;
}
}
return $texte;
}