mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-10 18:30:51 +08:00
105 lines
3.1 KiB
PHP
105 lines
3.1 KiB
PHP
<?php
|
|
|
|
namespace App\Repositories;
|
|
|
|
use App\Models\Icon;
|
|
use App\Models\NexusModel;
|
|
use App\Models\SearchBox;
|
|
use App\Models\SearchBoxField;
|
|
use Illuminate\Support\Arr;
|
|
|
|
class SearchBoxRepository extends BaseRepository
|
|
{
|
|
public function getList(array $params): \Illuminate\Contracts\Pagination\LengthAwarePaginator
|
|
{
|
|
$query = SearchBox::query();
|
|
list($sortField, $sortType) = $this->getSortFieldAndType($params);
|
|
$query->orderBy($sortField, $sortType);
|
|
return $query->paginate();
|
|
}
|
|
|
|
public function store(array $params)
|
|
{
|
|
$result = SearchBox::query()->create($params);
|
|
return $result;
|
|
}
|
|
|
|
public function update(array $params, $id)
|
|
{
|
|
$result = SearchBox::query()->findOrFail($id);
|
|
$result->update($params);
|
|
return $result;
|
|
}
|
|
|
|
public function getDetail($id)
|
|
{
|
|
$result = SearchBox::query()->findOrFail($id);
|
|
return $result;
|
|
}
|
|
|
|
public function delete($id)
|
|
{
|
|
$result = SearchBox::query()->findOrFail($id);
|
|
$success = $result->delete();
|
|
return $success;
|
|
}
|
|
|
|
public function buildSearchBox($id)
|
|
{
|
|
$searchBox = SearchBox::query()->with(['categories', 'normal_fields'])->findOrFail($id);
|
|
$fieldData = [];
|
|
foreach ($searchBox->normal_fields as $normalField) {
|
|
$fieldType = $normalField->field_type;
|
|
$info = SearchBoxField::$fieldTypes[$fieldType] ?? null;
|
|
if ($info) {
|
|
/** @var NexusModel $model */
|
|
$model = new $info[$fieldType]['model'];
|
|
$fieldData[$fieldType] = $model::query()->get();
|
|
}
|
|
}
|
|
$searchBox->setRelation('normal_fields_data', $fieldData);
|
|
return $searchBox;
|
|
}
|
|
|
|
public function initSearchBoxField($id)
|
|
{
|
|
$searchBox = SearchBox::query()->findOrFail($id);
|
|
$logPrefix = "searchBox: $id";
|
|
$result = $searchBox->normal_fields()->delete();
|
|
do_log("$logPrefix, remove all normal fields: $result");
|
|
foreach (SearchBoxField::$fieldTypes as $fieldType => $info) {
|
|
if ($fieldType == SearchBoxField::FIELD_TYPE_CUSTOM) {
|
|
continue;
|
|
}
|
|
$name = str_replace('_', '', "show{$fieldType}");
|
|
$log = "$logPrefix, name: $name, fieldType: $fieldType";
|
|
if ($searchBox->{$name}) {
|
|
$searchBox->normal_fields()->create([
|
|
'field_type' => $fieldType,
|
|
]);
|
|
do_log("$log, create.");
|
|
}
|
|
}
|
|
}
|
|
|
|
public function listIcon(array $idArr)
|
|
{
|
|
$searchBoxList = SearchBox::query()->with('categories')->find($idArr);
|
|
if ($searchBoxList->isEmpty()) {
|
|
return $searchBoxList;
|
|
}
|
|
$iconIdArr = [];
|
|
foreach ($searchBoxList as $value) {
|
|
foreach ($value->categories as $category) {
|
|
$iconId = $category->icon_id;
|
|
if (!isset($iconIdArr[$iconId])) {
|
|
$iconIdArr[$iconId] = $iconId;
|
|
}
|
|
}
|
|
}
|
|
return Icon::query()->find(array_keys($iconIdArr));
|
|
}
|
|
|
|
|
|
}
|