68 lines
2.2 KiB
PHP
68 lines
2.2 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Models\Category;
|
|
use App\Models\Channel;
|
|
use Illuminate\Http\Request;
|
|
use Inertia\Inertia;
|
|
use Inertia\Response;
|
|
use Laravel\Fortify\Features;
|
|
|
|
class HomeController extends Controller
|
|
{
|
|
public function __invoke(Request $request): Response
|
|
{
|
|
$liveChannels = Channel::query()
|
|
->where('is_live', true)
|
|
->whereNull('suspended_at')
|
|
->with(['category', 'liveBroadcast', 'user'])
|
|
->withCount('follows')
|
|
->orderByDesc('viewer_count')
|
|
->latest()
|
|
->limit(24)
|
|
->get()
|
|
->map(fn (Channel $channel) => $this->channelCard($channel));
|
|
|
|
return Inertia::render('welcome', [
|
|
'canRegister' => Features::enabled(Features::registration()),
|
|
'liveChannels' => $liveChannels,
|
|
'categories' => Category::query()
|
|
->orderBy('name')
|
|
->get(['id', 'name', 'slug'])
|
|
->map(fn (Category $category) => [
|
|
'id' => $category->id,
|
|
'name' => $category->name,
|
|
'slug' => $category->slug,
|
|
]),
|
|
]);
|
|
}
|
|
|
|
private function channelCard(Channel $channel): array
|
|
{
|
|
return [
|
|
'id' => $channel->id,
|
|
'slug' => $channel->slug,
|
|
'display_name' => $channel->display_name,
|
|
'description' => $channel->description,
|
|
'thumbnail_path' => $channel->thumbnail_path,
|
|
'viewer_count' => $channel->viewer_count,
|
|
'followers_count' => $channel->follows_count ?? 0,
|
|
'category' => $channel->category ? [
|
|
'id' => $channel->category->id,
|
|
'name' => $channel->category->name,
|
|
'slug' => $channel->category->slug,
|
|
] : null,
|
|
'broadcast' => $channel->liveBroadcast ? [
|
|
'id' => $channel->liveBroadcast->id,
|
|
'title' => $channel->liveBroadcast->title,
|
|
'started_at' => $channel->liveBroadcast->started_at?->toIso8601String(),
|
|
] : null,
|
|
'owner' => [
|
|
'id' => $channel->user->id,
|
|
'name' => $channel->user->name,
|
|
],
|
|
];
|
|
}
|
|
}
|