]> git.localhorst.tv Git - alttp.git/blobdiff - app/Http/Controllers/ChannelController.php
chat adlib prototype
[alttp.git] / app / Http / Controllers / ChannelController.php
index 883ca65eff2360d93bcd20d9fb2d2bf93640caad..026b9aa8ce9fe18c7d0978be820fc1e911c12018 100644 (file)
@@ -68,15 +68,27 @@ class ChannelController extends Controller {
                return $this->sendChannel($channel);
        }
 
+       public function chatBotLog(Request $request, Channel $channel) {
+               $this->authorize('editRestream', $channel);
+               $log = $channel->chat_bot_logs()
+                       ->with(['origin', 'user'])
+                       ->orderBy('created_at', 'DESC')
+                       ->limit(150)
+                       ->get();
+               return $log->values()->toJson();
+       }
+
        public function chatSettings(Request $request, Channel $channel) {
                if (!$channel->twitch_chat) {
                        throw new \Exception('channel has no twitch chat set');
                }
                $validatedData = $request->validate([
                        'language' => 'string|in:de,en,es,fr',
+                       'min_age' => 'integer|min:1',
                        'respond' => 'string|in:50,no,yes',
+                       'source' => 'string|in:any,cat,catchan,chan',
                        'wait_msgs_min' => 'integer|min:1',
-                       'wait_msgs_max' => 'integer',
+                       'wait_msgs_max' => 'integer|min:1',
                        'wait_time_min' => 'integer',
                        'wait_time_max' => 'integer',
                ]);