aboutsummaryrefslogtreecommitdiff
path: root/lib/favicons.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2016-12-26 16:33:47 +0100
committerGravatar GitHub <noreply@github.com> 2016-12-26 16:33:47 +0100
commit5f637bd816b7323885bfe1751a1724ee59a822f6 (patch)
tree67028e45792c575c25c92616633f64cc7a4a13eb /lib/favicons.php
parentc3d2496bb3ce665faf4a0f24a4aa2ab300ab56d3 (diff)
parent109f63be2620cf108efdfebd43f491e2720c824a (diff)
Merge pull request #1399 from FreshRSS/dev1.6.2
Release 1.6.2
Diffstat (limited to 'lib/favicons.php')
-rw-r--r--lib/favicons.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/favicons.php b/lib/favicons.php
index 6709f6745..d8c97964e 100644
--- a/lib/favicons.php
+++ b/lib/favicons.php
@@ -9,7 +9,7 @@ $default_favicon = PUBLIC_PATH . '/themes/icons/default_favicon.ico';
function download_favicon($website, $dest) {
global $favicons_dir, $default_favicon;
- syslog(LOG_DEBUG, 'FreshRSS Favicon discovery GET ' . $website);
+ syslog(LOG_INFO, 'FreshRSS Favicon discovery GET ' . $website);
$favicon_getter = new \Favicon\Favicon();
$favicon_getter->setCacheDir($favicons_dir);
$favicon_url = $favicon_getter->get($website);
@@ -18,11 +18,12 @@ function download_favicon($website, $dest) {
return @copy($default_favicon, $dest);
}
- syslog(LOG_DEBUG, 'FreshRSS Favicon GET ' . $favicon_url);
+ syslog(LOG_INFO, 'FreshRSS Favicon GET ' . $favicon_url);
$c = curl_init($favicon_url);
curl_setopt($c, CURLOPT_HEADER, false);
curl_setopt($c, CURLOPT_RETURNTRANSFER, true);
curl_setopt($c, CURLOPT_BINARYTRANSFER, true);
+ curl_setopt($c, CURLOPT_USERAGENT, 'FreshRSS/' . FRESHRSS_VERSION . ' (' . PHP_OS . '; ' . FRESHRSS_WEBSITE . ')');
$img_raw = curl_exec($c);
$status_code = curl_getinfo($c, CURLINFO_HTTP_CODE);
curl_close($c);
@@ -34,6 +35,8 @@ function download_favicon($website, $dest) {
fclose($file);
return true;
}
+ } else {
+ syslog(LOG_WARNING, 'FreshRSS Favicon GET ' . $favicon_url . ' error ' . $status_code);
}
return false;