0
0
mirror of https://github.com/anthonyaxenov/iptv.git synced 2024-11-22 05:24:45 +00:00

Убраны лишние енвы PAGE_SIZE и SORT_BY

This commit is contained in:
Anthony Axenov 2024-09-15 19:37:31 +08:00
parent 2d5b9be5a0
commit 0b49de5d90
Signed by: anthony
GPG Key ID: EA9EC32FF7CCD4EC
5 changed files with 12 additions and 57 deletions

View File

@ -5,5 +5,3 @@ TWIG_DEBUG=0
FLIGHT_CASE_SENSITIVE=0 FLIGHT_CASE_SENSITIVE=0
FLIGHT_HANDLE_ERRORS=1 FLIGHT_HANDLE_ERRORS=1
FLIGHT_LOG_ERRORS=1 FLIGHT_LOG_ERRORS=1
PAGE_SIZE=10
SORT_BY=

View File

@ -5,6 +5,7 @@ declare(strict_types=1);
namespace App\Controllers; namespace App\Controllers;
use App\Core\PlaylistProcessor; use App\Core\PlaylistProcessor;
use App\Core\RedirectedPlaylist;
use Exception; use Exception;
use Flight; use Flight;
@ -26,17 +27,6 @@ class HomeController extends Controller
$this->ini = new PlaylistProcessor(); $this->ini = new PlaylistProcessor();
} }
/**
* Возвращает размер одной страницы списка плейлистов
*
* @return int Указанный в конфиге размер либо 10, если он выходит за диапазоны от 5 до 100
*/
protected function getPageSize(): int
{
$size = config('app.page_size');
return empty($size) || $size < 5 || $size > 100 ? 10 : $size;
}
/** /**
* Отображает главную страницу на указанной странице списка плейлистов * Отображает главную страницу на указанной странице списка плейлистов
* *
@ -52,13 +42,13 @@ class HomeController extends Controller
Flight::redirect(base_url($id)); Flight::redirect(base_url($id));
die; die;
} }
// иначе формируем и сортируем список при необходимости, рисуем страницу // иначе формируем и сортируем список при необходимости, рисуем страницу
$per_page = $this->getPageSize(); $per_page = 10;
$list = $this->ini->playlists->where('redirect_id', null); $list = $this->ini->playlists
if ($sort_by = config('app.sort_by')) { ->filter(static fn ($playlist) => !($playlist instanceof RedirectedPlaylist))
$list = $list->sortBy($sort_by); ->forPage($page, $per_page);
}
$list = $list->forPage($page, $per_page);
view('list', [ view('list', [
'updated_at' => $this->ini->updatedAt(), 'updated_at' => $this->ini->updatedAt(),
'count' => $this->ini->playlists->count(), 'count' => $this->ini->playlists->count(),

View File

@ -17,17 +17,6 @@ function root_path(string $path = ''): string
return rtrim(sprintf('%s/%s', dirname($_SERVER['DOCUMENT_ROOT']), $path), '/'); return rtrim(sprintf('%s/%s', dirname($_SERVER['DOCUMENT_ROOT']), $path), '/');
} }
/**
* Returns path to app
*
* @param string $path
* @return string
*/
function app_path(string $path = ''): string
{
return root_path("app/$path");
}
/** /**
* Return path to application configuration directory * Return path to application configuration directory
* *
@ -50,17 +39,6 @@ function cache_path(string $path = ''): string
return root_path("cache/$path"); return root_path("cache/$path");
} }
/**
* Return path to public part of application
*
* @param string $path
* @return string
*/
function public_path(string $path = ''): string
{
return root_path("public/$path");
}
/** /**
* Returns path to app views * Returns path to app views
* *
@ -137,23 +115,14 @@ function app(): Engine
*/ */
function bool(mixed $value): bool function bool(mixed $value): bool
{ {
if (is_bool($value)) { is_string($value) && $value = strtolower(trim($value));
return $value; if (in_array($value, [true, 1, '1', '+', 'y', 'yes', 'on', 'true', 'enable', 'enabled'], true)) {
}
if (is_object($value)) {
return true; return true;
} }
if (is_string($value)) { if (in_array($value, [false, 0, '0', '-', 'n', 'no', 'off', 'false', 'disable', 'disabled'], true)) {
return match ($value = trim($value)) { return false;
'1', 'yes', 'true' => true,
'0', 'no', 'false' => false,
default => empty($value),
};
} }
if ($is_resource = is_resource($value)) { return (bool)$value;
return $is_resource; // false if closed
}
return !empty($value);
} }
/** /**

View File

@ -26,7 +26,5 @@ return [
// 'CP866', // 'CP866',
// 'ISO-8859-5', // 'ISO-8859-5',
], ],
'page_size' => (int)(env('PAGE_SIZE', 10)),
'sort_by' => env('SORT_BY'),
], ],
]; ];

View File

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB