X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;ds=sidebyside;f=app%2FTwitchBot%2FTokenizedMessage.php;fp=app%2FTwitchBot%2FTokenizedMessage.php;h=668634af6ef45f887d3360997d7fb85e1e1ee0c4;hb=907f392f8d2fbadb3f53a277cc90ae080da6d476;hp=e35299803c4753f369c5942c3d3c914b05f5208e;hpb=948653e5ae0412fbbee7945175470e328910245f;p=alttp.git diff --git a/app/TwitchBot/TokenizedMessage.php b/app/TwitchBot/TokenizedMessage.php index e352998..668634a 100644 --- a/app/TwitchBot/TokenizedMessage.php +++ b/app/TwitchBot/TokenizedMessage.php @@ -189,6 +189,18 @@ class TokenizedMessage { return false; } + public function isLong() { + return strlen($this->emoteless_raw) > 20; + } + + public function isShort() { + return strlen($this->emoteless_raw) < 15; + } + + public function isVeryLong() { + return strlen($this->emoteless_raw) > 40; + } + public function startsOrEndsWith($text) { return $this->startsWith($text) || $this->endsWith($text); } @@ -236,7 +248,7 @@ class TokenizedMessage { if ($this->containsRaw(['followers', 'promotion', 'viewers'])) { return true; } - if ($this->containsRaw('horstie')) { + if ($this->containsRaw('horsti')) { return true; } if ($this->containsRaw(['folgtjetzt', 'vielendankfürdenraid', 'thanksfortheraid', 'willkommenaufstarbase47'])) { @@ -248,21 +260,21 @@ class TokenizedMessage { public function classify() { if (is_null($this->classification)) { - if (empty($this->text)) { + if (empty($this->text) || $this->isVeryLong()) { $this->classification = 'unclassified'; } else if ($this->startsWith('!')) { $this->classification = 'cmd'; - } else if ($this->hasTokenThatStartsOrEndsWith(['gg']) || $this->hasEmoteThatEndsWith(['gg'])) { + } else if ($this->isShort() && ($this->hasTokenThatStartsOrEndsWith(['gg']) || $this->hasEmoteThatEndsWith(['gg']))) { $this->classification = 'gg'; - } else if ($this->containsRaw(['glgl', 'glhf', 'goodluck', 'hfgl'])) { + } else if ($this->isShort() && $this->containsRaw(['glgl', 'glhf', 'goodluck', 'hfgl', 'vielglück'])) { $this->classification = 'gl'; } else if ($this->hasToken(['danke', 'thanks', 'thx', 'ty']) && !$this->hasToken(['nah', 'nee', 'nein', 'no'])) { $this->classification = 'thx'; - } else if ($this->startsWithRaw(['ahoi', 'hallo', 'hello', 'hey', 'huhu', 'moin']) || $this->hasEmoteThatEndsWith(['hello', 'heyguys', 'hi', 'vohiyo', 'wave']) || $this->hasToken(['hi', 'hey', 'yo']) || $this->containsRaw(['gutenmorgen', 'gutenabend'])) { + } else if (!$this->isLong() && ($this->startsWithRaw(['ahoi', 'hallo', 'hello', 'hey', 'huhu', 'moin']) || $this->hasEmoteThatEndsWith(['hello', 'heyguys', 'hi', 'vohiyo', 'wave']) || $this->hasToken(['hi', 'hey', 'yo']) || $this->containsRaw(['gutenmorgen', 'gutenabend']))) { $this->classification = 'hi'; - } else if ($this->hasTokenThatStartsOrEndsWith(['pog', 'wow'])) { + } else if ($this->isShort() && $this->hasTokenThatStartsOrEndsWith(['pog', 'wow'])) { $this->classification = 'pog'; - } else if ($this->containsRaw(['hype']) || $this->hasEmoteThatEndsWith(['dance', 'jam', 'party', 'rave', 'troete'])) { + } else if ($this->containsRaw(['hype', 'letsgo']) || $this->hasEmoteThatEndsWith(['dance', 'jam', 'party', 'rave', 'troete'])) { $this->classification = 'hype'; } else if ($this->hasToken(['<3']) || $this->hasEmoteThatEndsWith(['heart', 'herz', 'hug', 'love'])) { $this->classification = 'love'; @@ -286,7 +298,7 @@ class TokenizedMessage { $this->classification = 'kappa'; } else if ($this->startsOrEndsWithRaw(['o7']) || $this->hasEmoteThatContains('salut')) { $this->classification = 'o7'; - } else if ($this->containsRaw(['haha', 'hehe', 'hihi', 'kekw', 'lol', 'lul']) || $this->hasTokenThatStartsWith(['xd']) || $this->hasConsecutiveTokens([':', 'd'])) { + } else if (!$this->isLong() && ($this->containsRaw(['haha', 'hehe', 'hihi', 'kekw', 'lol', 'lul']) || $this->hasTokenThatStartsWith(['xd']) || $this->hasConsecutiveTokens([':', 'd']))) { $this->classification = 'lol'; } else if (is_numeric($this->raw)) { $this->classification = 'number'; @@ -297,6 +309,36 @@ class TokenizedMessage { return $this->classification; } + public function getResponseCategory() { + switch ($this->classify()) { + case 'gg': + return ['love', 'eyes', 'thx', 'pog', 'kappa']; + case 'gl': + return ['love', 'eyes', 'thx']; + case 'hi': + return ['hi', 'love', 'eyes', 'hype', 'pog']; + case 'kappa': + return ['kappa', 'lol', 'eyes']; + case 'love': + return ['hi', 'love', 'eyes', 'thx']; + case 'question': + if ( + $this->hasToken(['number', 'nummer', 'wieviel', 'zahl']) || + $this->hasConsecutiveTokens(['how', 'many']) || + $this->hasConsecutiveTokens(['how', 'much']) || + $this->hasConsecutiveTokens(['wie', 'viele']) + ) { + return ['yes', 'no', 'kappa', 'lol', 'wtf', 'number']; + } + return ['yes', 'no', 'kappa', 'lol', 'wtf']; + case 'rage': + return ['kappa', 'lol', 'rage']; + case 'wtf': + return ['kappa', 'lol', 'rage']; + } + return false; + } + private $text; private $tags;