X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=app%2FModels%2FProtocol.php;h=995f9c02ab8707f33825d88147ba0191efa54cad;hb=1c91e5dcedd930bea5fe44ea95a77a9ecd0177a4;hp=5b871f43a71d87adbc8170963b89bd46629f39a4;hpb=7016f4b28fa1324269ae9e2a8aad28dd562927d4;p=alttp.git diff --git a/app/Models/Protocol.php b/app/Models/Protocol.php index 5b871f4..995f9c0 100644 --- a/app/Models/Protocol.php +++ b/app/Models/Protocol.php @@ -10,6 +10,20 @@ class Protocol extends Model { use HasFactory; + public static function resultCommented(Tournament $tournament, Result $result, User $user) { + $protocol = static::create([ + 'tournament_id' => $tournament->id, + 'user_id' => $user->id, + 'type' => 'result.comment', + 'details' => [ + 'tournament' => static::tournamentMemo($tournament), + 'result' => static::resultMemo($result), + 'round' => static::roundMemo($result->round), + ], + ]); + ProtocolAdded::dispatch($protocol); + } + public static function resultReported(Tournament $tournament, Result $result, User $user) { $protocol = static::create([ 'tournament_id' => $tournament->id, @@ -18,6 +32,7 @@ class Protocol extends Model 'details' => [ 'tournament' => static::tournamentMemo($tournament), 'result' => static::resultMemo($result), + 'round' => static::roundMemo($result->round), ], ]); ProtocolAdded::dispatch($protocol); @@ -62,6 +77,19 @@ class Protocol extends Model ProtocolAdded::dispatch($protocol); } + public static function roundUnlocked(Tournament $tournament, Round $round, User $user = null) { + $protocol = static::create([ + 'tournament_id' => $tournament->id, + 'user_id' => $user ? $user->id : null, + 'type' => 'round.unlock', + 'details' => [ + 'tournament' => static::tournamentMemo($tournament), + 'round' => static::roundMemo($round), + ], + ]); + ProtocolAdded::dispatch($protocol); + } + public static function tournamentCreated(Tournament $tournament, User $user) { $protocol = static::create([ 'tournament_id' => $tournament->id, @@ -90,6 +118,7 @@ class Protocol extends Model protected static function resultMemo(Result $result) { return [ 'id' => $result->id, + 'comment' => $result->comment, 'forfeit' => $result->forfeit, 'time' => $result->time, ]; @@ -98,6 +127,9 @@ class Protocol extends Model protected static function roundMemo(Round $round) { return [ 'id' => $round->id, + 'locked' => $round->locked, + 'no_record' => $round->no_record, + 'number' => $round->number, 'seed' => $round->seed, ]; } @@ -105,6 +137,8 @@ class Protocol extends Model protected static function tournamentMemo(Tournament $tournament) { return [ 'id' => $tournament->id, + 'locked' => $tournament->locked, + 'no_record' => $tournament->no_record, 'title' => $tournament->title, ]; }