aboutsummaryrefslogtreecommitdiff
path: root/p/f.php
blob: fefbf9a102ba03a2622bd18646bac9dcb31f30b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?php

require('../constants.php');

include(LIB_PATH . '/Favicon/Favicon.php');
include(LIB_PATH . '/Favicon/DataAccess.php');


$favicons_dir = DATA_PATH . '/favicons/';
$default_favicon = PUBLIC_PATH . '/themes/icons/default_favicon.ico';


/* Télécharge le favicon d'un site et le place sur le serveur */
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');
		if ($file !== false) {
			fwrite($file, $img_raw);
			fclose($file);
			return true;
		}
	}

	return false;
}


function show_default_favicon() {
	global $default_favicon;

	header('HTTP/1.1 404 Not Found');
	header('Content-Type: image/ico');
	readfile($default_favicon);
	die();
}


$id = isset($_SERVER['QUERY_STRING']) ? $_SERVER['QUERY_STRING'] : '0';
if (!ctype_xdigit($id)) {
	$id = '0';
}

$txt = $favicons_dir . $id . '.txt';
$ico = $favicons_dir . $id . '.ico';

$ico_mtime = @filemtime($ico);
$txt_mtime = @filemtime($txt);

if (($ico_mtime == false) || ($txt_mtime > $ico_mtime)) {
	if ($txt_mtime == false) {
		show_default_favicon();
	}

	$url = file_get_contents($txt);
	if (!download_favicon($url, $ico)) {
		show_default_favicon();
	}
}

require(LIB_PATH . '/http-conditional.php');

header('Content-Type: image/x-icon');
header('Content-Disposition: inline; filename="' . $id . '.ico"');

if (!httpConditional($ico_mtime, 2592000, 2)) {
	readfile($ico);
}