pp-planer/app/Http/Controllers/ServiceController.php
Thorsten Bus d915f8cfc2 feat: Wave 2 - Service list, Song CRUD, Slide upload, Arrangements, Song matching, Translation
T8: Service List Page
- ServiceController with index, finalize, reopen actions
- Services/Index.vue with status indicators (songs mapped/arranged, slides uploaded)
- German UI with finalize/reopen toggle buttons
- Status aggregation via SQL subqueries for efficiency
- Tests: 3 passing (46 assertions)

T9: Song CRUD Backend
- SongController with full REST API (index, store, show, update, destroy)
- SongService for default groups/arrangements creation
- SongRequest validation (title required, ccli_id unique)
- Search by title and CCLI ID
- last_used_in_service accessor via service_songs join
- Tests: 20 passing (85 assertions)

T10: Slide Upload Component
- SlideController with store, destroy, updateExpireDate
- SlideUploader.vue with vue3-dropzone drag-and-drop
- SlideGrid.vue with thumbnail grid and inline expire date editing
- Multi-format support: images (sync), PPT (async job), ZIP (extract)
- Type validation: information (global), moderation/sermon (service-specific)
- Tests: 15 passing (37 assertions)

T11: Arrangement Configurator
- ArrangementController with store, clone, update, destroy
- ArrangementConfigurator.vue with vue-draggable-plus
- Drag-and-drop arrangement editor with colored group pills
- Clone from default or existing arrangement
- Color picker for group customization
- Prevent deletion of last arrangement
- Tests: 4 passing (17 assertions)

T12: Song Matching Service
- SongMatchingService with autoMatch, manualAssign, requestCreation, unassign
- ServiceSongController API endpoints for song assignment
- Auto-match by CCLI ID during CTS sync
- Manual assignment with searchable song select
- Email request for missing songs (MissingSongRequest mailable)
- Tests: 14 passing (33 assertions)

T13: Translation Service
- TranslationService with fetchFromUrl, importTranslation, removeTranslation
- TranslationController API endpoints
- URL scraping (best-effort HTTP fetch with strip_tags)
- Line-count distribution algorithm (match original slide line counts)
- Mark song as translated, remove translation
- Tests: 18 passing (18 assertions)

All tests passing: 103/103 (488 assertions)
Build: ✓ Vite production build successful
German UI: All user-facing text in German with 'Du' form
2026-03-01 19:55:37 +01:00

85 lines
3.1 KiB
PHP

<?php
namespace App\Http\Controllers;
use App\Models\Service;
use App\Models\Slide;
use Illuminate\Http\RedirectResponse;
use Illuminate\Support\Carbon;
use Inertia\Inertia;
use Inertia\Response;
class ServiceController extends Controller
{
public function index(): Response
{
$services = Service::query()
->whereDate('date', '>=', Carbon::today())
->orderBy('date')
->withCount([
'serviceSongs as songs_total_count',
'serviceSongs as songs_mapped_count' => fn ($query) => $query->whereNotNull('song_id'),
'serviceSongs as songs_arranged_count' => fn ($query) => $query->whereNotNull('song_arrangement_id'),
])
->addSelect([
'has_sermon_slides' => Slide::query()
->selectRaw('CASE WHEN COUNT(*) > 0 THEN 1 ELSE 0 END')
->whereColumn('slides.service_id', 'services.id')
->where('slides.type', 'sermon'),
'info_slides_count' => Slide::query()
->selectRaw('COUNT(*)')
->where('slides.type', 'information')
->where(function ($query) {
$query
->whereNull('slides.service_id')
->orWhereColumn('slides.service_id', 'services.id');
})
->whereNotNull('slides.expire_date')
->whereColumn('slides.expire_date', '>=', 'services.date'),
])
->get()
->map(fn (Service $service) => [
'id' => $service->id,
'title' => $service->title,
'date' => $service->date?->toDateString(),
'preacher_name' => $service->preacher_name,
'beamer_tech_name' => $service->beamer_tech_name,
'last_synced_at' => $service->last_synced_at?->toJSON(),
'updated_at' => $service->updated_at?->toJSON(),
'finalized_at' => $service->finalized_at?->toJSON(),
'songs_total_count' => (int) $service->songs_total_count,
'songs_mapped_count' => (int) $service->songs_mapped_count,
'songs_arranged_count' => (int) $service->songs_arranged_count,
'has_sermon_slides' => (bool) $service->has_sermon_slides,
'info_slides_count' => (int) $service->info_slides_count,
])
->values();
return Inertia::render('Services/Index', [
'services' => $services,
]);
}
public function finalize(Service $service): RedirectResponse
{
$service->update([
'finalized_at' => now(),
]);
return redirect()
->route('services.index')
->with('success', 'Service wurde abgeschlossen.');
}
public function reopen(Service $service): RedirectResponse
{
$service->update([
'finalized_at' => null,
]);
return redirect()
->route('services.index')
->with('success', 'Service wurde wieder geoeffnet.');
}
}