X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;ds=inline;f=app%2FHttp%2FControllers%2FRoundController.php;h=596628d072da19ceae60e2c5190d8c2e6c23404d;hb=9160186db0ea1b0da0edfec49cb3d99ead213bc4;hp=10e4d14857fd45000863df2fab536583a8404c6e;hpb=edd0e97bfdc544114f30bf4c13a929631c44a555;p=alttp.git diff --git a/app/Http/Controllers/RoundController.php b/app/Http/Controllers/RoundController.php index 10e4d14..596628d 100644 --- a/app/Http/Controllers/RoundController.php +++ b/app/Http/Controllers/RoundController.php @@ -2,6 +2,9 @@ namespace App\Http\Controllers; +use App\Events\RoundAdded; +use App\Events\RoundChanged; +use App\Models\Protocol; use App\Models\Round; use App\Models\Tournament; use Illuminate\Http\Request; @@ -16,10 +19,84 @@ class RoundController extends Controller $tournament = Tournament::findOrFail($validatedData['tournament_id']); $this->authorize('addRound', $tournament); + $tournament->loadMax('rounds', 'number'); + $round = Round::create([ + 'game' => $tournament->game, + 'number' => intval($tournament->rounds_max_number) + 1, + 'no_record' => $tournament->no_record, 'tournament_id' => $validatedData['tournament_id'], ]); + Protocol::roundAdded( + $tournament, + $round, + $request->user(), + ); + + RoundAdded::dispatch($round); + + return $round->toJson(); + } + + public function setSeed(Request $request, Round $round) { + $this->authorize('setSeed', $round); + + $validatedData = $request->validate([ + 'seed' => 'required|url', + ]); + + $round->seed = $validatedData['seed']; + $round->update(); + + Protocol::roundSeedSet( + $round->tournament, + $round, + $request->user(), + ); + + RoundChanged::dispatch($round); + + $round->load('results'); + + return $round->toJson(); + } + + public function lock(Request $request, Round $round) { + $this->authorize('lock', $round); + + $round->locked = true; + $round->update(); + + Protocol::roundLocked( + $round->tournament, + $round, + $request->user(), + ); + + RoundChanged::dispatch($round); + + $round->load('results'); + + return $round->toJson(); + } + + public function unlock(Request $request, Round $round) { + $this->authorize('unlock', $round); + + $round->locked = false; + $round->update(); + + Protocol::roundUnlocked( + $round->tournament, + $round, + $request->user(), + ); + + RoundChanged::dispatch($round); + + $round->load('results'); + return $round->toJson(); }