2014-07-23 15:52:50 +02:00
|
|
|
<?php
|
2015-02-08 18:55:48 +01:00
|
|
|
|
2014-07-23 15:52:50 +02:00
|
|
|
require('../constants.php');
|
2015-02-08 18:55:48 +01:00
|
|
|
|
|
|
|
include(LIB_PATH . '/Favicon/Favicon.php');
|
|
|
|
include(LIB_PATH . '/Favicon/DataAccess.php');
|
|
|
|
require(LIB_PATH . '/http-conditional.php');
|
|
|
|
|
|
|
|
|
2014-07-23 15:52:50 +02:00
|
|
|
$favicons_dir = DATA_PATH . '/favicons/';
|
2015-02-08 18:55:48 +01:00
|
|
|
$default_favicon = PUBLIC_PATH . '/themes/icons/default_favicon.ico';
|
|
|
|
|
2014-07-23 15:52:50 +02:00
|
|
|
|
|
|
|
/* Télécharge le favicon d'un site et le place sur le serveur */
|
2015-02-08 18:55:48 +01:00
|
|
|
function download_favicon($website, $dest) {
|
|
|
|
global $favicons_dir, $default_favicon;
|
|
|
|
|
|
|
|
$favicon_getter = new \Favicon\Favicon();
|
|
|
|
$favicon_getter->setCacheDir($favicons_dir);
|
|
|
|
$favicon_url = $favicon_getter->get($website);
|
|
|
|
|
|
|
|
if ($favicon_url === false) {
|
|
|
|
return @copy($default_favicon, $dest);
|
|
|
|
}
|
|
|
|
|
|
|
|
$c = curl_init($favicon_url);
|
|
|
|
curl_setopt($c, CURLOPT_HEADER, false);
|
|
|
|
curl_setopt($c, CURLOPT_RETURNTRANSFER, true);
|
|
|
|
curl_setopt($c, CURLOPT_BINARYTRANSFER, true);
|
|
|
|
$img_raw = curl_exec($c);
|
|
|
|
$status_code = curl_getinfo($c, CURLINFO_HTTP_CODE);
|
|
|
|
curl_close($c);
|
|
|
|
|
|
|
|
if ($status_code === 200) {
|
|
|
|
$file = fopen($dest, 'w');
|
2014-07-23 15:52:50 +02:00
|
|
|
if ($file !== false) {
|
2015-02-08 18:55:48 +01:00
|
|
|
fwrite($file, $img_raw);
|
|
|
|
fclose($file);
|
|
|
|
return true;
|
2014-07-23 15:52:50 +02:00
|
|
|
}
|
|
|
|
}
|
2015-02-08 18:55:48 +01:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function show_default_favicon() {
|
|
|
|
global $default_favicon;
|
|
|
|
|
|
|
|
header('Content-Type: image/x-icon');
|
|
|
|
header('Content-Disposition: inline; filename="default_favicon.ico"');
|
|
|
|
|
|
|
|
$default_mtime = @filemtime($default_favicon);
|
|
|
|
if (!httpConditional($default_mtime, 2592000, 2)) {
|
|
|
|
readfile($default_favicon);
|
2014-07-23 15:52:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-02-08 18:55:48 +01:00
|
|
|
$id = isset($_SERVER['QUERY_STRING']) ? $_SERVER['QUERY_STRING'] : '0';
|
2014-07-23 15:52:50 +02:00
|
|
|
if (!ctype_xdigit($id)) {
|
|
|
|
$id = '0';
|
|
|
|
}
|
|
|
|
|
|
|
|
$txt = $favicons_dir . $id . '.txt';
|
|
|
|
$ico = $favicons_dir . $id . '.ico';
|
|
|
|
|
2015-02-08 18:55:48 +01:00
|
|
|
$ico_mtime = @filemtime($ico);
|
|
|
|
$txt_mtime = @filemtime($txt);
|
|
|
|
|
2014-07-23 15:52:50 +02:00
|
|
|
|
2015-02-08 18:55:48 +01:00
|
|
|
if ($ico_mtime == false || $txt_mtime > $ico_mtime) {
|
|
|
|
if ($txt_mtime == false) {
|
|
|
|
show_default_favicon();
|
|
|
|
return;
|
2014-07-23 15:52:50 +02:00
|
|
|
}
|
2015-02-08 18:55:48 +01:00
|
|
|
|
|
|
|
// no ico file or we should download a new one.
|
2014-07-23 15:52:50 +02:00
|
|
|
$url = file_get_contents($txt);
|
|
|
|
if (!download_favicon($url, $ico)) {
|
2015-02-08 18:55:48 +01:00
|
|
|
// Download failed, show the default favicon
|
|
|
|
show_default_favicon();
|
|
|
|
return;
|
2014-07-23 15:52:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
header('Content-Type: image/x-icon');
|
|
|
|
header('Content-Disposition: inline; filename="' . $id . '.ico"');
|
|
|
|
|
2015-02-08 18:55:48 +01:00
|
|
|
if (!httpConditional($ico_mtime, 2592000, 2)) {
|
2014-07-23 15:52:50 +02:00
|
|
|
readfile($ico);
|
|
|
|
}
|