refactor languages module to domain/controller and release 0.254 update package
This commit is contained in:
330
autoload/Domain/Languages/LanguagesRepository.php
Normal file
330
autoload/Domain/Languages/LanguagesRepository.php
Normal file
@@ -0,0 +1,330 @@
|
||||
<?php
|
||||
namespace Domain\Languages;
|
||||
|
||||
class LanguagesRepository
|
||||
{
|
||||
private const MAX_PER_PAGE = 100;
|
||||
|
||||
private $db;
|
||||
|
||||
public function __construct($db)
|
||||
{
|
||||
$this->db = $db;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array{items: array<int, array<string, mixed>>, total: int}
|
||||
*/
|
||||
public function listForAdmin(
|
||||
array $filters,
|
||||
string $sortColumn = 'o',
|
||||
string $sortDir = 'ASC',
|
||||
int $page = 1,
|
||||
int $perPage = 15
|
||||
): array {
|
||||
$allowedSortColumns = [
|
||||
'id' => 'pl.id',
|
||||
'name' => 'pl.name',
|
||||
'status' => 'pl.status',
|
||||
'start' => 'pl.start',
|
||||
'o' => 'pl.o',
|
||||
];
|
||||
|
||||
$sortSql = $allowedSortColumns[$sortColumn] ?? 'pl.o';
|
||||
$sortDir = strtoupper(trim($sortDir)) === 'DESC' ? 'DESC' : 'ASC';
|
||||
$page = max(1, $page);
|
||||
$perPage = min(self::MAX_PER_PAGE, max(1, $perPage));
|
||||
$offset = ($page - 1) * $perPage;
|
||||
|
||||
$where = ['1 = 1'];
|
||||
$params = [];
|
||||
|
||||
$name = trim((string)($filters['name'] ?? ''));
|
||||
if ($name !== '') {
|
||||
if (strlen($name) > 255) {
|
||||
$name = substr($name, 0, 255);
|
||||
}
|
||||
$where[] = 'pl.name LIKE :name';
|
||||
$params[':name'] = '%' . $name . '%';
|
||||
}
|
||||
|
||||
$status = trim((string)($filters['status'] ?? ''));
|
||||
if ($status === '0' || $status === '1') {
|
||||
$where[] = 'pl.status = :status';
|
||||
$params[':status'] = (int)$status;
|
||||
}
|
||||
|
||||
$start = trim((string)($filters['start'] ?? ''));
|
||||
if ($start === '0' || $start === '1') {
|
||||
$where[] = 'pl.start = :start';
|
||||
$params[':start'] = (int)$start;
|
||||
}
|
||||
|
||||
$whereSql = implode(' AND ', $where);
|
||||
|
||||
$sqlCount = "
|
||||
SELECT COUNT(0)
|
||||
FROM pp_langs AS pl
|
||||
WHERE {$whereSql}
|
||||
";
|
||||
|
||||
$stmtCount = $this->db->query($sqlCount, $params);
|
||||
$countRows = $stmtCount ? $stmtCount->fetchAll() : [];
|
||||
$total = isset($countRows[0][0]) ? (int)$countRows[0][0] : 0;
|
||||
|
||||
$sql = "
|
||||
SELECT
|
||||
pl.id,
|
||||
pl.name,
|
||||
pl.status,
|
||||
pl.start,
|
||||
pl.o
|
||||
FROM pp_langs AS pl
|
||||
WHERE {$whereSql}
|
||||
ORDER BY {$sortSql} {$sortDir}, pl.o ASC, pl.id ASC
|
||||
LIMIT {$perPage} OFFSET {$offset}
|
||||
";
|
||||
|
||||
$stmt = $this->db->query($sql, $params);
|
||||
$items = $stmt ? $stmt->fetchAll() : [];
|
||||
|
||||
return [
|
||||
'items' => is_array($items) ? $items : [],
|
||||
'total' => $total,
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array{items: array<int, array<string, mixed>>, total: int}
|
||||
*/
|
||||
public function listTranslationsForAdmin(
|
||||
array $filters,
|
||||
string $sortColumn = 'text',
|
||||
string $sortDir = 'ASC',
|
||||
int $page = 1,
|
||||
int $perPage = 15
|
||||
): array {
|
||||
$allowedSortColumns = [
|
||||
'id' => 'plt.id',
|
||||
'text' => 'plt.text',
|
||||
];
|
||||
|
||||
$sortSql = $allowedSortColumns[$sortColumn] ?? 'plt.text';
|
||||
$sortDir = strtoupper(trim($sortDir)) === 'DESC' ? 'DESC' : 'ASC';
|
||||
$page = max(1, $page);
|
||||
$perPage = min(self::MAX_PER_PAGE, max(1, $perPage));
|
||||
$offset = ($page - 1) * $perPage;
|
||||
|
||||
$where = ['1 = 1'];
|
||||
$params = [];
|
||||
|
||||
$text = trim((string)($filters['text'] ?? ''));
|
||||
if ($text !== '') {
|
||||
if (strlen($text) > 255) {
|
||||
$text = substr($text, 0, 255);
|
||||
}
|
||||
$where[] = 'plt.text LIKE :text';
|
||||
$params[':text'] = '%' . $text . '%';
|
||||
}
|
||||
|
||||
$whereSql = implode(' AND ', $where);
|
||||
|
||||
$sqlCount = "
|
||||
SELECT COUNT(0)
|
||||
FROM pp_langs_translations AS plt
|
||||
WHERE {$whereSql}
|
||||
";
|
||||
|
||||
$stmtCount = $this->db->query($sqlCount, $params);
|
||||
$countRows = $stmtCount ? $stmtCount->fetchAll() : [];
|
||||
$total = isset($countRows[0][0]) ? (int)$countRows[0][0] : 0;
|
||||
|
||||
$sql = "
|
||||
SELECT
|
||||
plt.id,
|
||||
plt.text
|
||||
FROM pp_langs_translations AS plt
|
||||
WHERE {$whereSql}
|
||||
ORDER BY {$sortSql} {$sortDir}, plt.id ASC
|
||||
LIMIT {$perPage} OFFSET {$offset}
|
||||
";
|
||||
|
||||
$stmt = $this->db->query($sql, $params);
|
||||
$items = $stmt ? $stmt->fetchAll() : [];
|
||||
|
||||
return [
|
||||
'items' => is_array($items) ? $items : [],
|
||||
'total' => $total,
|
||||
];
|
||||
}
|
||||
|
||||
public function languageDetails(string $languageId): ?array
|
||||
{
|
||||
$language = $this->db->get('pp_langs', '*', ['id' => $languageId]);
|
||||
return $language ?: null;
|
||||
}
|
||||
|
||||
public function translationDetails(int $translationId): ?array
|
||||
{
|
||||
$translation = $this->db->get('pp_langs_translations', '*', ['id' => $translationId]);
|
||||
return $translation ?: null;
|
||||
}
|
||||
|
||||
public function maxOrder(): int
|
||||
{
|
||||
$max = $this->db->max('pp_langs', 'o');
|
||||
return $max ? (int)$max : 0;
|
||||
}
|
||||
|
||||
public function languagesList(bool $onlyActive = false): array
|
||||
{
|
||||
$where = [];
|
||||
if ($onlyActive) {
|
||||
$where['status'] = 1;
|
||||
}
|
||||
|
||||
$rows = $this->db->select('pp_langs', '*', array_merge(['ORDER' => ['o' => 'ASC']], $where));
|
||||
return is_array($rows) ? $rows : [];
|
||||
}
|
||||
|
||||
public function deleteLanguage(string $languageId): bool
|
||||
{
|
||||
$languageId = $this->sanitizeLanguageId($languageId);
|
||||
if ($languageId === null) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if ((int)$this->db->count('pp_langs') <= 1) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!$this->db->count('pp_langs', ['id' => $languageId])) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$dropResult = $this->db->query('ALTER TABLE pp_langs_translations DROP COLUMN `' . $languageId . '`');
|
||||
if (!$dropResult) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$deleteResult = $this->db->delete('pp_langs', ['id' => $languageId]);
|
||||
if (!$deleteResult) {
|
||||
return false;
|
||||
}
|
||||
|
||||
\S::htacces();
|
||||
\S::delete_dir('../temp/');
|
||||
return true;
|
||||
}
|
||||
|
||||
public function saveLanguage(string $languageId, string $name, $status, $start, int $order): ?string
|
||||
{
|
||||
$languageId = $this->sanitizeLanguageId($languageId);
|
||||
if ($languageId === null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
$statusVal = $this->toSwitchValue($status);
|
||||
$startVal = $this->toSwitchValue($start);
|
||||
|
||||
$exists = (bool)$this->db->count('pp_langs', ['id' => $languageId]);
|
||||
|
||||
if ($startVal === 1) {
|
||||
$this->db->update('pp_langs', ['start' => 0], ['id[!]' => $languageId]);
|
||||
}
|
||||
|
||||
if ($exists) {
|
||||
$this->db->update('pp_langs', [
|
||||
'status' => $statusVal,
|
||||
'start' => $startVal,
|
||||
'name' => $name,
|
||||
'o' => $order,
|
||||
], [
|
||||
'id' => $languageId,
|
||||
]);
|
||||
} else {
|
||||
$addResult = $this->db->query('ALTER TABLE pp_langs_translations ADD COLUMN `' . $languageId . '` TEXT NULL DEFAULT NULL');
|
||||
if (!$addResult) {
|
||||
return null;
|
||||
}
|
||||
|
||||
$insertResult = $this->db->insert('pp_langs', [
|
||||
'id' => $languageId,
|
||||
'name' => $name,
|
||||
'status' => $statusVal,
|
||||
'start' => $startVal,
|
||||
'o' => $order,
|
||||
]);
|
||||
if (!$insertResult) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
if (!(int)$this->db->count('pp_langs', ['start' => 1])) {
|
||||
$idTmp = (string)$this->db->get('pp_langs', 'id', ['ORDER' => ['o' => 'ASC']]);
|
||||
if ($idTmp !== '') {
|
||||
$this->db->update('pp_langs', ['start' => 1], ['id' => $idTmp]);
|
||||
}
|
||||
}
|
||||
|
||||
\S::htacces();
|
||||
\S::delete_dir('../temp/');
|
||||
return $languageId;
|
||||
}
|
||||
|
||||
public function deleteTranslation(int $translationId): bool
|
||||
{
|
||||
$result = $this->db->delete('pp_langs_translations', ['id' => $translationId]);
|
||||
return (bool)$result;
|
||||
}
|
||||
|
||||
public function saveTranslation(int $translationId, string $text, array $translations): ?int
|
||||
{
|
||||
if ($translationId > 0) {
|
||||
$this->db->update('pp_langs_translations', ['text' => $text], ['id' => $translationId]);
|
||||
} else {
|
||||
$insertResult = $this->db->insert('pp_langs_translations', ['text' => $text]);
|
||||
if (!$insertResult) {
|
||||
return null;
|
||||
}
|
||||
$translationId = (int)$this->db->id();
|
||||
}
|
||||
|
||||
if ($translationId <= 0) {
|
||||
return null;
|
||||
}
|
||||
|
||||
foreach ($translations as $languageId => $value) {
|
||||
$safeLanguageId = $this->sanitizeLanguageId((string)$languageId);
|
||||
if ($safeLanguageId === null) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$this->db->update('pp_langs_translations', [
|
||||
$safeLanguageId => (string)$value,
|
||||
], [
|
||||
'id' => $translationId,
|
||||
]);
|
||||
}
|
||||
|
||||
\S::htacces();
|
||||
\S::delete_dir('../temp/');
|
||||
return $translationId;
|
||||
}
|
||||
|
||||
private function sanitizeLanguageId(string $languageId): ?string
|
||||
{
|
||||
$languageId = strtolower(trim($languageId));
|
||||
if (!preg_match('/^[a-z]{2}$/', $languageId)) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return $languageId;
|
||||
}
|
||||
|
||||
private function toSwitchValue($value): int
|
||||
{
|
||||
return ($value === 'on' || $value === 1 || $value === '1' || $value === true) ? 1 : 0;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user