mirror of
https://codeberg.org/vlw/vlw.se.git
synced 2025-09-13 21:13:40 +02:00
51 lines
No EOL
1.2 KiB
PHP
51 lines
No EOL
1.2 KiB
PHP
<?php
|
|
|
|
use vlw\MySQL\Operators;
|
|
use Reflect\{Response, Path};
|
|
use ReflectRules\{Ruleset, Rules, Type};
|
|
|
|
use VLW\Database\Database;
|
|
use VLW\Database\Tables\Search\SearchTable;
|
|
|
|
require_once Path::root("src/Database/Database.php");
|
|
require_once Path::root("src/Database/Tables/Search/Search.php");
|
|
|
|
class GET_Search extends Database {
|
|
protected Ruleset $ruleset;
|
|
|
|
public function __construct() {
|
|
$this->ruleset = new Ruleset(strict: true);
|
|
|
|
$this->ruleset->GET([
|
|
(new Rules(SearchTable::QUERY->value))
|
|
->required()
|
|
->type(Type::STRING)
|
|
->min(2)
|
|
->max(parent::SIZE_VARCHAR)
|
|
]);
|
|
|
|
$this->ruleset->validate_or_exit();
|
|
|
|
parent::__construct();
|
|
}
|
|
|
|
public function main(): Response {
|
|
$result = $this->db
|
|
->for(SearchTable::NAME)
|
|
->where([
|
|
SearchTable::QUERY->value => [
|
|
Operators::LIKE->value => "%{$_GET[SearchTable::QUERY->value]}%"
|
|
]
|
|
])
|
|
->select([
|
|
SearchTable::TITLE->value,
|
|
SearchTable::SUMMARY->value,
|
|
SearchTable::CATEGORY->value,
|
|
SearchTable::HREF->value
|
|
]);
|
|
|
|
return $result->num_rows > 0
|
|
? new Response($result->fetch_all(MYSQLI_ASSOC))
|
|
: new Response([], 404);
|
|
}
|
|
} |