0
0
mirror of https://github.com/anthonyaxenov/iptv.git synced 2024-11-01 01:26:00 +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_HANDLE_ERRORS=1
FLIGHT_LOG_ERRORS=1
PAGE_SIZE=10
SORT_BY=

View File

@ -5,6 +5,7 @@ declare(strict_types=1);
namespace App\Controllers;
use App\Core\PlaylistProcessor;
use App\Core\RedirectedPlaylist;
use Exception;
use Flight;
@ -26,17 +27,6 @@ class HomeController extends Controller
$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));
die;
}
// иначе формируем и сортируем список при необходимости, рисуем страницу
$per_page = $this->getPageSize();
$list = $this->ini->playlists->where('redirect_id', null);
if ($sort_by = config('app.sort_by')) {
$list = $list->sortBy($sort_by);
}
$list = $list->forPage($page, $per_page);
$per_page = 10;
$list = $this->ini->playlists
->filter(static fn ($playlist) => !($playlist instanceof RedirectedPlaylist))
->forPage($page, $per_page);
view('list', [
'updated_at' => $this->ini->updatedAt(),
'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), '/');
}
/**
* 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
*
@ -50,17 +39,6 @@ function cache_path(string $path = ''): string
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
*
@ -137,23 +115,14 @@ function app(): Engine
*/
function bool(mixed $value): bool
{
if (is_bool($value)) {
return $value;
}
if (is_object($value)) {
is_string($value) && $value = strtolower(trim($value));
if (in_array($value, [true, 1, '1', '+', 'y', 'yes', 'on', 'true', 'enable', 'enabled'], true)) {
return true;
}
if (is_string($value)) {
return match ($value = trim($value)) {
'1', 'yes', 'true' => true,
'0', 'no', 'false' => false,
default => empty($value),
};
if (in_array($value, [false, 0, '0', '-', 'n', 'no', 'off', 'false', 'disable', 'disabled'], true)) {
return false;
}
if ($is_resource = is_resource($value)) {
return $is_resource; // false if closed
}
return !empty($value);
return (bool)$value;
}
/**

View File

@ -26,7 +26,5 @@ return [
// 'CP866',
// '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