Replace all SongGroup/SongArrangementGroup model usages with Label/SongArrangementLabel after the schema migration to global labels. Updates 12 app files and 11 test files: - SongService: createDefaultGroups now finds-or-creates global Labels by name - ArrangementController: validates label_id (labels are global, no song-ownership) - ProImportService: imports groups as Labels (firstOrCreate by name); does not overwrite existing label colors per spec - ProExportService/SongPdfController/TranslationService/etc: traverse via arrangements -> arrangementLabels -> label -> songSlides chain - All test factories and assertions adapted to label-based schema
169 lines
5.7 KiB
PHP
169 lines
5.7 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Http\Requests\SongRequest;
|
|
use App\Models\Song;
|
|
use App\Services\SongService;
|
|
use Illuminate\Http\JsonResponse;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
class SongController extends Controller
|
|
{
|
|
public function __construct(
|
|
private readonly SongService $songService,
|
|
) {}
|
|
|
|
public function index(Request $request): JsonResponse
|
|
{
|
|
$query = Song::query();
|
|
|
|
if ($search = $request->input('search')) {
|
|
$query->where(function ($q) use ($search) {
|
|
$q->where('title', 'like', "%{$search}%")
|
|
->orWhere('ccli_id', 'like', "%{$search}%");
|
|
});
|
|
}
|
|
|
|
$songs = $query->orderBy('title')
|
|
->paginate($request->input('per_page', 20));
|
|
|
|
return response()->json([
|
|
'data' => $songs->map(fn (Song $song) => [
|
|
'id' => $song->id,
|
|
'title' => $song->title,
|
|
'ccli_id' => $song->ccli_id,
|
|
'author' => $song->author,
|
|
'has_translation' => $song->has_translation,
|
|
'last_used_at' => $song->last_used_at?->toDateString(),
|
|
'last_used_in_service' => $song->last_used_in_service,
|
|
'created_at' => $song->created_at->toDateTimeString(),
|
|
'updated_at' => $song->updated_at->toDateTimeString(),
|
|
]),
|
|
'meta' => [
|
|
'current_page' => $songs->currentPage(),
|
|
'last_page' => $songs->lastPage(),
|
|
'per_page' => $songs->perPage(),
|
|
'total' => $songs->total(),
|
|
],
|
|
]);
|
|
}
|
|
|
|
public function store(SongRequest $request): JsonResponse
|
|
{
|
|
$song = DB::transaction(function () use ($request) {
|
|
$song = Song::create($request->validated());
|
|
|
|
$this->songService->createDefaultArrangement($song);
|
|
|
|
return $song;
|
|
});
|
|
|
|
return response()->json([
|
|
'message' => 'Song erfolgreich erstellt',
|
|
'data' => $this->formatSongDetail($song->fresh(['arrangements.arrangementLabels.label.songSlides'])),
|
|
], 201);
|
|
}
|
|
|
|
public function show(int $id): JsonResponse
|
|
{
|
|
$song = Song::with(['arrangements.arrangementLabels.label.songSlides'])->find($id);
|
|
|
|
if (! $song) {
|
|
return response()->json(['message' => 'Song nicht gefunden'], 404);
|
|
}
|
|
|
|
return response()->json([
|
|
'data' => $this->formatSongDetail($song),
|
|
]);
|
|
}
|
|
|
|
public function update(SongRequest $request, int $id): JsonResponse
|
|
{
|
|
$song = Song::find($id);
|
|
|
|
if (! $song) {
|
|
return response()->json(['message' => 'Song nicht gefunden'], 404);
|
|
}
|
|
|
|
$song->update($request->validated());
|
|
|
|
return response()->json([
|
|
'message' => 'Song erfolgreich aktualisiert',
|
|
'data' => $this->formatSongDetail($song->fresh(['arrangements.arrangementLabels.label.songSlides'])),
|
|
]);
|
|
}
|
|
|
|
public function destroy(int $id): JsonResponse
|
|
{
|
|
$song = Song::find($id);
|
|
|
|
if (! $song) {
|
|
return response()->json(['message' => 'Song nicht gefunden'], 404);
|
|
}
|
|
|
|
$song->delete();
|
|
|
|
return response()->json([
|
|
'message' => 'Song erfolgreich gelöscht',
|
|
]);
|
|
}
|
|
|
|
private function formatSongDetail(Song $song): array
|
|
{
|
|
$defaultArr = $song->arrangements->firstWhere('is_default', true);
|
|
|
|
$groupsPayload = [];
|
|
if ($defaultArr !== null) {
|
|
$groupsPayload = $defaultArr->arrangementLabels
|
|
->sortBy('order')
|
|
->values()
|
|
->map(fn ($al) => [
|
|
'id' => $al->label?->id,
|
|
'name' => $al->label?->name,
|
|
'color' => $al->label?->color,
|
|
'order' => $al->order,
|
|
'slides' => $al->label
|
|
? $al->label->songSlides
|
|
->sortBy('order')
|
|
->values()
|
|
->map(fn ($slide) => [
|
|
'id' => $slide->id,
|
|
'order' => $slide->order,
|
|
'text_content' => $slide->text_content,
|
|
'text_content_translated' => $slide->text_content_translated,
|
|
'notes' => $slide->notes,
|
|
])->toArray()
|
|
: [],
|
|
])->toArray();
|
|
}
|
|
|
|
return [
|
|
'id' => $song->id,
|
|
'title' => $song->title,
|
|
'ccli_id' => $song->ccli_id,
|
|
'author' => $song->author,
|
|
'copyright_text' => $song->copyright_text,
|
|
'copyright_year' => $song->copyright_year,
|
|
'publisher' => $song->publisher,
|
|
'has_translation' => $song->has_translation,
|
|
'last_used_at' => $song->last_used_at?->toDateString(),
|
|
'last_used_in_service' => $song->last_used_in_service,
|
|
'created_at' => $song->created_at->toDateTimeString(),
|
|
'updated_at' => $song->updated_at->toDateTimeString(),
|
|
'groups' => $groupsPayload,
|
|
'arrangements' => $song->arrangements->map(fn ($arr) => [
|
|
'id' => $arr->id,
|
|
'name' => $arr->name,
|
|
'is_default' => $arr->is_default,
|
|
'arrangement_groups' => $arr->arrangementLabels->sortBy('order')->values()->map(fn ($al) => [
|
|
'id' => $al->id,
|
|
'label_id' => $al->label_id,
|
|
'order' => $al->order,
|
|
])->toArray(),
|
|
])->toArray(),
|
|
];
|
|
}
|
|
}
|