mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-26 16:54:30 +02:00
* refactor(api): remove redundant statements that convert API resources to response * style: fix StyleCI findigns
146 lines
4.3 KiB
PHP
146 lines
4.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Http\Controllers\Api\Pivot\Wiki;
|
|
|
|
use App\Actions\Http\Api\DestroyAction;
|
|
use App\Actions\Http\Api\IndexAction;
|
|
use App\Actions\Http\Api\ShowAction;
|
|
use App\Actions\Http\Api\StoreAction;
|
|
use App\Actions\Http\Api\UpdateAction;
|
|
use App\Http\Api\Query\Query;
|
|
use App\Http\Controllers\Api\Pivot\PivotController;
|
|
use App\Http\Requests\Api\IndexRequest;
|
|
use App\Http\Requests\Api\ShowRequest;
|
|
use App\Http\Requests\Api\StoreRequest;
|
|
use App\Http\Requests\Api\UpdateRequest;
|
|
use App\Http\Resources\Pivot\Wiki\Collection\ArtistSongCollection;
|
|
use App\Http\Resources\Pivot\Wiki\Resource\ArtistSongResource;
|
|
use App\Models\Wiki\Artist;
|
|
use App\Models\Wiki\Song;
|
|
use App\Pivots\Wiki\ArtistSong;
|
|
use Illuminate\Http\JsonResponse;
|
|
|
|
/**
|
|
* Class ArtistSongController.
|
|
*/
|
|
class ArtistSongController extends PivotController
|
|
{
|
|
/**
|
|
* Create a new controller instance.
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct(Artist::class, 'artist', Song::class, 'song');
|
|
}
|
|
|
|
/**
|
|
* Display a listing of the resource.
|
|
*
|
|
* @param IndexRequest $request
|
|
* @param IndexAction $action
|
|
* @return ArtistSongCollection
|
|
*/
|
|
public function index(IndexRequest $request, IndexAction $action): ArtistSongCollection
|
|
{
|
|
$query = new Query($request->validated());
|
|
|
|
$resources = $action->index(ArtistSong::query(), $query, $request->schema());
|
|
|
|
return new ArtistSongCollection($resources, $query);
|
|
}
|
|
|
|
/**
|
|
* Store a newly created resource.
|
|
*
|
|
* @param StoreRequest $request
|
|
* @param Artist $artist
|
|
* @param Song $song
|
|
* @param StoreAction $action
|
|
* @return ArtistSongResource
|
|
*/
|
|
public function store(StoreRequest $request, Artist $artist, Song $song, StoreAction $action): ArtistSongResource
|
|
{
|
|
$validated = array_merge(
|
|
$request->validated(),
|
|
[
|
|
ArtistSong::ATTRIBUTE_ARTIST => $artist->getKey(),
|
|
ArtistSong::ATTRIBUTE_SONG => $song->getKey(),
|
|
]
|
|
);
|
|
|
|
$artistSong = $action->store(ArtistSong::query(), $validated);
|
|
|
|
return new ArtistSongResource($artistSong, new Query());
|
|
}
|
|
|
|
/**
|
|
* Display the specified resource.
|
|
*
|
|
* @param ShowRequest $request
|
|
* @param Artist $artist
|
|
* @param Song $song
|
|
* @param ShowAction $action
|
|
* @return ArtistSongResource
|
|
*/
|
|
public function show(ShowRequest $request, Artist $artist, Song $song, ShowAction $action): ArtistSongResource
|
|
{
|
|
$artistSong = ArtistSong::query()
|
|
->where(ArtistSong::ATTRIBUTE_ARTIST, $artist->getKey())
|
|
->where(ArtistSong::ATTRIBUTE_SONG, $song->getKey())
|
|
->firstOrFail();
|
|
|
|
$query = new Query($request->validated());
|
|
|
|
$show = $action->show($artistSong, $query, $request->schema());
|
|
|
|
return new ArtistSongResource($show, $query);
|
|
}
|
|
|
|
/**
|
|
* Update the specified resource.
|
|
*
|
|
* @param UpdateRequest $request
|
|
* @param Artist $artist
|
|
* @param Song $song
|
|
* @param UpdateAction $action
|
|
* @return ArtistSongResource
|
|
*/
|
|
public function update(UpdateRequest $request, Artist $artist, Song $song, UpdateAction $action): ArtistSongResource
|
|
{
|
|
$artistSong = ArtistSong::query()
|
|
->where(ArtistSong::ATTRIBUTE_ARTIST, $artist->getKey())
|
|
->where(ArtistSong::ATTRIBUTE_SONG, $song->getKey())
|
|
->firstOrFail();
|
|
|
|
$query = new Query($request->validated());
|
|
|
|
$updated = $action->update($artistSong, $request->validated());
|
|
|
|
return new ArtistSongResource($updated, $query);
|
|
}
|
|
|
|
/**
|
|
* Remove the specified resource.
|
|
*
|
|
* @param Artist $artist
|
|
* @param Song $song
|
|
* @param DestroyAction $action
|
|
* @return JsonResponse
|
|
*/
|
|
public function destroy(Artist $artist, Song $song, DestroyAction $action): JsonResponse
|
|
{
|
|
$artistSong = ArtistSong::query()
|
|
->where(ArtistSong::ATTRIBUTE_ARTIST, $artist->getKey())
|
|
->where(ArtistSong::ATTRIBUTE_SONG, $song->getKey())
|
|
->firstOrFail();
|
|
|
|
$action->destroy($artistSong);
|
|
|
|
return new JsonResponse([
|
|
'message' => "Song '{$song->getName()}' has been detached from Artist '{$artist->getName()}'.",
|
|
]);
|
|
}
|
|
}
|