X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=app%2FTwitchBotCommands%2FBaseCommand.php;h=32ef41d19d5959fd3b2cca8a30cb1099906250ab;hb=f0d1a566f5afd76ab7a56b295b71d5756dfd2bc3;hp=881d4ed03e91c3611ac5fe7d65e4564be0154b8a;hpb=e10222af705e3475fcea6e0b17d1c9984a62db26;p=alttp.git diff --git a/app/TwitchBotCommands/BaseCommand.php b/app/TwitchBotCommands/BaseCommand.php index 881d4ed..32ef41d 100644 --- a/app/TwitchBotCommands/BaseCommand.php +++ b/app/TwitchBotCommands/BaseCommand.php @@ -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); }