3 namespace App\Http\Controllers;
5 use App\Events\RoundAdded;
6 use App\Events\RoundChanged;
7 use App\Models\Protocol;
9 use App\Models\Tournament;
10 use Illuminate\Http\Request;
12 class RoundController extends Controller
15 public function create(Request $request) {
16 $validatedData = $request->validate([
17 'tournament_id' => 'required|exists:App\\Models\\Tournament,id',
19 $tournament = Tournament::findOrFail($validatedData['tournament_id']);
20 $this->authorize('addRound', $tournament);
22 $tournament->loadMax('rounds', 'number');
24 $round = Round::create([
25 'game' => $tournament->game,
26 'number' => intval($tournament->rounds_max_number) + 1,
27 'no_record' => $tournament->no_record,
28 'tournament_id' => $validatedData['tournament_id'],
37 RoundAdded::dispatch($round);
39 return $round->toJson();
42 public function update(Request $request, Round $round) {
43 $this->authorize('update', $round);
45 $validatedData = $request->validate([
48 'rolled_by' => 'nullable|exists:App\\Models\\User,id',
53 $round->code = array_filter($validatedData['code']);
54 $round->rolled_by = $validatedData['rolled_by'];
55 $round->seed = $validatedData['seed'];
56 $round->title = $validatedData['title'];
59 Protocol::roundEdited(
65 RoundChanged::dispatch($round);
67 $round->load(['results', 'results.user']);
69 return $round->toJson();
72 public function setSeed(Request $request, Round $round) {
73 $this->authorize('setSeed', $round);
75 $validatedData = $request->validate([
76 'seed' => 'required|url',
79 $round->seed = $validatedData['seed'];
82 Protocol::roundSeedSet(
88 RoundChanged::dispatch($round);
90 $round->load(['results', 'results.user']);
92 return $round->toJson();
95 public function lock(Request $request, Round $round) {
96 $this->authorize('lock', $round);
98 $round->locked = true;
101 Protocol::roundLocked(
107 RoundChanged::dispatch($round);
109 $round->load(['results', 'results.user']);
111 return $round->toJson();
114 public function unlock(Request $request, Round $round) {
115 $this->authorize('unlock', $round);
117 $round->locked = false;
120 Protocol::roundUnlocked(
126 RoundChanged::dispatch($round);
128 $round->load(['results', 'results.user']);
130 return $round->toJson();