mirror of
https://github.com/daledavies/jump.git
synced 2025-11-18 02:40:42 +01:00
49 lines
1.7 KiB
PHP
49 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace Jump;
|
|
|
|
/**
|
|
* Parse the data required to represent a site and provide method for generating
|
|
* and/or retrieving the site's icon.
|
|
*
|
|
* @author Dale Davies <dale@daledavies.co.uk>
|
|
* @license MIT
|
|
*/
|
|
class Site {
|
|
|
|
private Config $config;
|
|
public string $name;
|
|
public bool $nofollow;
|
|
public string $icon;
|
|
public string $url;
|
|
|
|
public function __construct(Config $config, array $sitearray) {
|
|
$this->config = $config;
|
|
if (!isset($sitearray['name'], $sitearray['url'])) {
|
|
throw new \Exception('The array passed to Site() must contain the keys "name" and "url"!');
|
|
}
|
|
$this->name = $sitearray['name'];
|
|
$this->url = $sitearray['url'];
|
|
$this->nofollow = isset($sitearray['nofollow']) ? $sitearray['nofollow'] : false;
|
|
$this->icon = isset($sitearray['icon']) ? $this->get_favicon_datauri($sitearray['icon']) : $this->get_favicon_datauri();
|
|
}
|
|
|
|
public function get_favicon_datauri(?string $icon = null): string {
|
|
if ($icon === null) {
|
|
$favicon = new \Favicon\Favicon();
|
|
$favicon->cache([
|
|
'dir' => $this->config->get('cachedir').'/icons/',
|
|
'timeout' => 86400
|
|
]);
|
|
$rawimage = $favicon->get($this->url, \Favicon\FaviconDLType::RAW_IMAGE);
|
|
if (!$rawimage) {
|
|
$rawimage = file_get_contents($this->config->get('defaulticonpath'));
|
|
}
|
|
} else {
|
|
$rawimage = file_get_contents($this->config->get('sitesdir').'/icons/'.$icon);
|
|
}
|
|
$mimetype = (new \finfo(FILEINFO_MIME_TYPE))->buffer($rawimage);
|
|
return 'data:'.$mimetype.';base64,'.base64_encode($rawimage);
|
|
}
|
|
|
|
} |