mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-31 02:59:15 +02:00
48 lines
1.6 KiB
PHP
48 lines
1.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Http\Controllers\Api\List\External;
|
|
|
|
use App\Actions\Http\Api\IndexAction;
|
|
use App\Actions\Http\Api\ShowAction;
|
|
use App\Http\Api\Query\Query;
|
|
use App\Http\Controllers\Api\BaseController;
|
|
use App\Http\Middleware\Api\EnabledOnlyOnLocalhost;
|
|
use App\Http\Requests\Api\IndexRequest;
|
|
use App\Http\Requests\Api\ShowRequest;
|
|
use App\Http\Resources\List\External\Collection\ExternalEntryCollection;
|
|
use App\Http\Resources\List\External\Resource\ExternalEntryJsonResource;
|
|
use App\Models\List\External\ExternalEntry;
|
|
use App\Models\List\ExternalProfile;
|
|
|
|
class ExternalEntryController extends BaseController
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct(ExternalEntry::class, 'externalentry,externalprofile');
|
|
|
|
$this->middleware(EnabledOnlyOnLocalhost::class);
|
|
}
|
|
|
|
public function index(IndexRequest $request, ExternalProfile $externalprofile, IndexAction $action): ExternalEntryCollection
|
|
{
|
|
$query = new Query($request->validated());
|
|
|
|
$builder = ExternalEntry::query()->where(ExternalEntry::ATTRIBUTE_PROFILE, $externalprofile->getKey());
|
|
|
|
$resources = $action->index($builder, $query, $request->schema());
|
|
|
|
return new ExternalEntryCollection($resources, $query);
|
|
}
|
|
|
|
public function show(ShowRequest $request, ExternalProfile $externalprofile, ExternalEntry $externalentry, ShowAction $action): ExternalEntryJsonResource
|
|
{
|
|
$query = new Query($request->validated());
|
|
|
|
$show = $action->show($externalentry, $query, $request->schema());
|
|
|
|
return new ExternalEntryJsonResource($show, $query);
|
|
}
|
|
}
|