]> git.localhorst.tv Git - alttp.git/blobdiff - app/TwitchBotCommands/BaseCommand.php
adlib chat
[alttp.git] / app / TwitchBotCommands / BaseCommand.php
index 881d4ed03e91c3611ac5fe7d65e4564be0154b8a..32ef41d19d5959fd3b2cca8a30cb1099906250ab 100644 (file)
@@ -10,12 +10,18 @@ abstract class BaseCommand {
 
        public static function resolve(TwitchBot $bot, TwitchBotCommand $cmd) {
                switch ($cmd->command) {
+                       case 'adlib-chat':
+                               return new AdlibChatCommand($bot, $cmd);
+                       case 'chat':
+                               return new ChatCommand($bot, $cmd);
                        case 'join':
                                return new JoinCommand($bot, $cmd);
                        case 'part':
                                return new PartCommand($bot, $cmd);
+                       case 'random-chat':
+                               return new RandomChatCommand($bot, $cmd);
                        default:
-                               throw new Exception('unrecognized command');
+                               throw new \Exception('unrecognized command');
                }
        }
 
@@ -40,6 +46,10 @@ abstract class BaseCommand {
                return User::findOrFail($this->getParameter('user'));
        }
 
+       protected function getExecutingUser() {
+               return $this->command->user;
+       }
+
        protected function hasParameter($name) {
                return array_key_exists($name, $this->command->parameters);
        }