X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=app%2FModels%2FChatLog.php;h=792e9e7a9b59c3aa212edf5b59786c7dfec6b6ae;hb=d6d76247ada28bee99ff5f0a91706ce7edb68a7f;hp=f918269073a0fa733e7ea9765a0a57d514b2bca2;hpb=50ec833111c8a11711a98e642321c8dad25b01ae;p=alttp.git diff --git a/app/Models/ChatLog.php b/app/Models/ChatLog.php index f918269..792e9e7 100644 --- a/app/Models/ChatLog.php +++ b/app/Models/ChatLog.php @@ -34,7 +34,7 @@ class ChatLog extends Model { } if ($this->command == 'PRIVMSG') { - if ($this->isKnownBot()) { + if (static::isKnownBot($this->nick)) { $this->type = 'bot'; } else if (substr($this->params[0], 0, 1) == '#') { $this->type = 'chat'; @@ -53,14 +53,15 @@ class ChatLog extends Model { throw new \Exception('unidentified message'); } - public function isKnownBot() { - return in_array(strtolower($this->nick), [ + public static function isKnownBot($nick) { + return in_array(strtolower($nick), [ 'birrellthesquirrel', 'funtoon', 'nidbot2000', 'nightbot', 'pokemoncommunitygame', 'speedgaming', + 'starbase47', 'streamelements', 'wizebot', 'zockerstuebchen', @@ -85,7 +86,7 @@ class ChatLog extends Model { if (Str::contains($rawText, ['haha', 'hehe', 'hihi', 'kekw', 'lol', 'lul', 'xd'])) { return 'lol'; } - if (Str::startsWith($rawText, ['ahoi', 'hallo', 'hello', 'hi', 'huhu']) || Str::endsWith($rawText, ['hi', 'wave'])) { + if (Str::startsWith($rawText, ['ahoi', 'hallo', 'hello', 'hi ', 'huhu']) || Str::endsWith($rawText, ['hi', 'wave'])) { return 'hi'; } if (Str::contains($rawText, ['pog', 'wow'])) { @@ -94,6 +95,9 @@ class ChatLog extends Model { if (Str::contains($rawText, ['hype'])) { return 'hype'; } + if (Str::startsWith($rawText, 'o7') || Str::endsWith($rawText, 'o7') || Str::contains($rawText, 'salut')) { + return 'o7'; + } return 'unclassified'; } @@ -130,40 +134,54 @@ class ChatLog extends Model { } } - protected function scanForSpam() { - if (substr($this->text_content, 0, 1) == '!') { + public static function spammyText($raw_text) { + $text = strtolower($raw_text); + if (substr($text, 0, 1) == '!') { return true; } - if (strpos($this->text_content, '$') !== false) { + if (strpos($text, '$') !== false) { return true; } - if (strpos($this->text_content, '€') !== false) { + if (strpos($text, '€') !== false) { return true; } - if (strpos($this->text_content, '@') !== false) { + if (strpos($text, '@') !== false) { return true; } - if (strpos($this->text_content, '://') !== false) { + if (strpos($text, '://') !== false) { return true; } - if (is_numeric($this->text_content)) { + if (strpos($text, 'followers') !== false) { + return true; + } + if (strpos($text, 'horstie') !== false) { + return true; + } + if (strpos($text, 'promotion') !== false) { return true; } - if (strpos($this->text_content, 'followers') !== false) { + if (strpos($text, 'viewers') !== false) { return true; } - if (strpos($this->text_content, 'promotion') !== false) { + if (strpos($text, 'view ers') !== false) { return true; } - if (strpos($this->text_content, 'viewers') !== false) { + if (strpos($text, 'vielen dank für den raid') !== false) { return true; } - if (strpos($this->text_content, 'view ers') !== false) { + if (strpos($text, 'willkommen auf starbase 47') !== false) { return true; } return false; } + protected function scanForSpam() { + if (is_numeric($this->text_content)) { + return true; + } + return static::spammyText($this->text_content); + } + protected $casts = [ 'banned' => 'boolean', 'params' => 'array',