]> git.localhorst.tv Git - alttp.git/blobdiff - app/Http/Controllers/ChannelController.php
clean up forgotten guessing games
[alttp.git] / app / Http / Controllers / ChannelController.php
index 78648af8dea8ece74e65e2987ea06a37e7479a58..c47a4066a20a2d80112558498c1f198c9538786b 100644 (file)
@@ -13,12 +13,17 @@ class ChannelController extends Controller {
 
        public function search(Request $request) {
                $validatedData = $request->validate([
+                       'id' => 'array',
+                       'id.*' => 'integer|numeric',
                        'joinable' => 'boolean|nullable',
                        'manageable' => 'boolean|nullable',
                        'phrase' => 'string|nullable',
                ]);
 
                $channels = Channel::query();
+               if (!empty($validatedData['id'])) {
+                       $channels = $channels->whereIn('id', $validatedData['id']);
+               }
                if (isset($validatedData['joinable']) && $validatedData['joinable']) {
                        $channels = $channels->where('twitch_chat', '!=', '');
                }
@@ -159,18 +164,7 @@ class ChannelController extends Controller {
                        case 'solve':
                                if ($channel->hasActiveGuessing() && $channel->isValidGuess($validatedData['solution'])) {
                                        $winners = $channel->solveGuessing($validatedData['solution']);
-                                       $names = [];
-                                       foreach ($winners as $winner) {
-                                               if ($winner->score > 0) {
-                                                       $names[] = $winner->uname;
-                                               }
-                                       }
-                                       if (empty($names)) {
-                                               $msg = $channel->getGuessingSetting('no_winners_message');
-                                       } else {
-                                               $msg = $channel->getGuessingSetting('winners_message');
-                                               $msg = str_replace('{names}', $channel->listAnd($names), $msg);
-                                       }
+                                       $msg = $channel->listGuessingWinners($winners);
                                        if (!empty($msg)) {
                                                TwitchBotCommand::chat($channel->twitch_chat, $msg);
                                        }
@@ -216,6 +210,12 @@ class ChannelController extends Controller {
                ];
        }
 
+       public function getGuessingGameLeaderboard(Channel $channel, $type) {
+               return [
+                       'all' => $channel->getGuessingLeaderboard(),
+               ];
+       }
+
        public function getGuessingGameMonitor($key) {
                $channel = Channel::where('access_key', '=', $key)->firstOrFail();
 
@@ -239,7 +239,9 @@ class ChannelController extends Controller {
                $validatedData = $request->validate([
                        'active_message' => 'string',
                        'cancel_message' => 'string',
+                       'close_winners_message' => 'string',
                        'invalid_solution_message' => 'string',
+                       'leaderboard_type' => 'string',
                        'no_winners_message' => 'string',
                        'not_active_message' => 'string',
                        'points_exact_first' => 'numeric|min:1|max:5',