noodles/src/Image.php

91 lines
2.7 KiB
PHP

<?php
/**
* @brief noodles, a plugin for Dotclear 2
*
* @package Dotclear
* @subpackage Plugin
*
* @author Jean-Christian Denis and contributors
*
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
declare(strict_types=1);
namespace Dotclear\Plugin\noodles;
use dcCore;
use Dotclear\Helper\File\Path;
class Image
{
/** @var string The current class major version */
public const VERSION = '2';
/**
* @return array<string, array{dir: null|string, url: null|string}> The Image possible paths
*/
public static function getArray(): array
{
if (is_null(dcCore::app()->blog)
|| !dcCore::app()->url->getBase('noodles_file')
) {
return [
'theme' => ['dir' => null, 'url' => null],
'public' => ['dir' => null, 'url' => null],
'module' => ['dir' => null, 'url' => null],
];
}
$public_url = dcCore::app()->blog->settings->get('system')->get('public_url');
if (!is_string($public_url)) {
$public_url = '';
}
return [
'theme' => [
'dir' => Path::real(dcCore::app()->blog->themes_path . '/' . dcCore::app()->blog->settings->get('system')->get('theme') . '/img') . '/' . My::IMAGE,
'url' => dcCore::app()->blog->settings->get('system')->get('themes_url') . dcCore::app()->blog->settings->get('system')->get('theme') . '/img/' . My::IMAGE,
],
'public' => [
'dir' => Path::real(dcCore::app()->blog->public_path) . '/' . My::IMAGE,
'url' => dcCore::app()->blog->host . Path::clean($public_url) . '/' . My::IMAGE,
],
'module' => [
'dir' => Path::real(My::path() . '/default-templates/img') . '/' . My::IMAGE,
'url' => dcCore::app()->blog->url . dcCore::app()->url->getBase('noodles_file') . '/img/' . My::IMAGE,
],
];
}
/**
* @return null|string The image URL
*/
public static function getUrl(): ?string
{
$files = self::getArray();
foreach ($files as $k => $file) {
if (is_string($files[$k]['dir']) && file_exists($files[$k]['dir'])) {
return $files[$k]['url'];
}
}
return null;
}
/**
* @return null|string The image path
*/
public static function getPath(): ?string
{
$files = self::getArray();
foreach ($files as $k => $file) {
if (is_string($files[$k]['dir']) && file_exists($files[$k]['dir'])) {
return $files[$k]['dir'];
}
}
return null;
}
}