mirror of
https://github.com/scummvm/scummvm-web.git
synced 2026-05-21 05:40:47 +00:00
89 lines
2.8 KiB
PHP
89 lines
2.8 KiB
PHP
<?php
|
|
namespace ScummVM\Objects;
|
|
|
|
use ScummVM\FileUtils;
|
|
|
|
/**
|
|
* The File object represents a file on the website.
|
|
*/
|
|
class File extends BasicObject
|
|
{
|
|
private $category_icon;
|
|
private $url;
|
|
private $extra_info;
|
|
private $user_agent;
|
|
|
|
public function __construct($data, $baseUrl = null)
|
|
{
|
|
parent::__construct($data);
|
|
$this->category = $data['category'];
|
|
$this->category_icon = $data['category_icon'];
|
|
$this->subcategory = $data['subcategory'] ?? null;
|
|
$this->user_agent = isset($data["user_agent"]) ? $data["user_agent"] : "";
|
|
$this->version = strtolower($data['version'] ?? null);
|
|
|
|
/* If it's not an array, we didn't get any attributes. */
|
|
if (!is_array($data['url'])) {
|
|
$url = $data['url'];
|
|
$attributes = array();
|
|
} else {
|
|
$url = $data['url'][0];
|
|
$attributes = $data['url']['@attributes'];
|
|
}
|
|
|
|
if (preg_match('/^((https?)|(ftp)):\/\//', $url)) {
|
|
// If the URL is given, keep it as is
|
|
$this->url = $url;
|
|
} else {
|
|
// Construct the URL based on its type
|
|
if ($this->category == 'scummvm' && $this->version == 'daily') {
|
|
$fname = DOWNLOADS_DAILY_URL . $url;
|
|
} elseif ($this->category == 'scummvm' && $this->subcategory == 'tools') {
|
|
$fname = DOWNLOADS_TOOLS_URL . $url;
|
|
} elseif ($this->category == 'games' || $this->category == 'addons') {
|
|
$fname = DOWNLOADS_EXTRAS_URL . $url;
|
|
} elseif (str_starts_with($url, '/frs') || str_starts_with($url, 'http')) {
|
|
$fname = $url;
|
|
} else {
|
|
$fname = DOWNLOADS_URL . $url;
|
|
}
|
|
$fname = str_replace('{$release_tools}', RELEASE_TOOLS, $fname);
|
|
$fname = str_replace('{$version}', "$this->version", $fname);
|
|
|
|
if (FileUtils::exists($fname)) {
|
|
$this->extra_info = array();
|
|
$this->extra_info['size'] = FileUtils::getFileSize($fname);
|
|
$this->extra_info['sha256'] = FileUtils::getSha256($fname);
|
|
$this->extra_info['ext'] = FileUtils::getExtension($fname);
|
|
$this->extra_info['date'] = FileUtils::getLastModified($fname);
|
|
$this->extra_info['msg'] = isset($data['notes']) ? $data['notes'] : '';
|
|
}
|
|
$this->url = $fname;
|
|
}
|
|
}
|
|
|
|
/* Get the category icon. */
|
|
public function getCategoryIcon()
|
|
{
|
|
return $this->category_icon;
|
|
}
|
|
|
|
/* Get the URL. */
|
|
public function getURL()
|
|
{
|
|
return $this->url;
|
|
}
|
|
|
|
/* Get the extra information. */
|
|
public function getExtraInfo()
|
|
{
|
|
return $this->extra_info;
|
|
}
|
|
|
|
/* Get the user-agent. */
|
|
public function getUserAgent()
|
|
{
|
|
return $this->user_agent;
|
|
}
|
|
}
|