X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=app%2FModels%2FChatLog.php;h=05c1584e44a306dc47d4abc130fcde3f598370bc;hb=05862d3235a4472abe49ae994bd927943744e451;hp=1da62d5af27e3debbd967d735cf3f349d4b301ad;hpb=c85a9e1de80d4a68e9b1b730e60906475682455b;p=alttp.git diff --git a/app/Models/ChatLog.php b/app/Models/ChatLog.php index 1da62d5..05c1584 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,8 +53,8 @@ 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', @@ -134,40 +134,50 @@ class ChatLog extends Model { } } - protected function scanForSpam() { - if (substr($this->text_content, 0, 1) == '!') { + public static function spammyText($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($this->text_content, 'followers') !== false) { + if (strpos($text, 'promotion') !== false) { return true; } - if (strpos($this->text_content, 'promotion') !== false) { + if (strpos($text, 'viewers') !== false) { return true; } - if (strpos($this->text_content, 'viewers') !== false) { + if (strpos($text, 'view ers') !== false) { return true; } - if (strpos($this->text_content, 'view ers') !== false) { + if (strpos($text, 'vielen Dank für den Raid') !== false) { + return true; + } + 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',