X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=app%2FModels%2FChatLog.php;h=49a57c25a626b5ade8c6b072899591539fc74739;hb=refs%2Fheads%2Fmaster;hp=3b4df15f2ac9596846729b91fc564c5780ca68b8;hpb=9a4e2305bb37cb8c62e3ad332f4a2bf45f720a18;p=alttp.git diff --git a/app/Models/ChatLog.php b/app/Models/ChatLog.php index 3b4df15..f1777b8 100644 --- a/app/Models/ChatLog.php +++ b/app/Models/ChatLog.php @@ -2,6 +2,7 @@ namespace App\Models; +use App\TwitchBot\TokenizedMessage; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Support\Arr; @@ -20,8 +21,28 @@ class ChatLog extends Model { return $this->belongsTo(User::class); } + public function tokenize() { + return TokenizedMessage::fromLog($this); + } + + public function isReply() { + return !empty($this->tags['reply-parent-msg-body']); + } + + public function getReplyParent() { + return str_replace('\\s', ' ', $this->tags['reply-parent-msg-body']); + } + + public function getReplyParentUser() { + return $this->tags['reply-parent-display-name']; + } + + public function getText() { + return $this->params[1]; + } + public function getTextWithoutEmotes() { - $text = $this->text_content; + $text = $this->params[1]; if (isset($this->tags['emotes']) && !empty($this->tags['emotes'])) { $emotes = explode('/', $this->tags['emotes']); foreach ($emotes as $emote) { @@ -29,15 +50,20 @@ class ChatLog extends Model { $positions = explode(',', $set[1]); foreach ($positions as $position) { $coords = explode('-', $position); - for ($i = intval($coords[0]); $i <= intval($coords[1]); ++$i) { - $text[$i] = ' '; - } + $text = mb_substr($text, 0, $coords[0]).str_repeat(' ', $coords[1] - $coords[0] + 1).mb_substr($text, $coords[1] + 1); } } } return trim(preg_replace('/\s+/', ' ', $text)); } + public function getTextWithoutReply() { + if ($this->isReply()) { + return mb_substr($this->params[1], mb_strlen($this->getReplyParentUser()) + 2); + } + return $this->params[1]; + } + public function evaluate() { $this->evaluateUser(); $this->evaluateChannel(); @@ -51,7 +77,7 @@ class ChatLog extends Model { return; } - if ($this->command == 'PRIVMSG') { + if ($this->command == 'PRIVMSG' || $this->command == 'WHISPER') { if (static::isKnownBot($this->nick)) { $this->type = 'bot'; } else if (substr($this->params[0], 0, 1) == '#') { @@ -59,12 +85,13 @@ class ChatLog extends Model { } else { $this->type = 'dm'; } - $this->text_content = $this->params[1]; + $this->text_content = $this->getTextWithoutReply(); $this->detectLanguage(); - if ($this->scanForSpam()) { + $tokenized = $this->tokenize(); + if ($tokenized->isSpammy()) { $this->banned = true; } - $this->classification = static::classify($this->text_content); + $this->classification = $tokenized->classify(); return; } @@ -73,11 +100,14 @@ class ChatLog extends Model { public static function isKnownBot($nick) { return in_array(strtolower($nick), [ + 'a_n_i_v', 'birrellthesquirrel', + 'creatisbot', 'funtoon', 'nidbot2000', 'nightbot', 'pokemoncommunitygame', + 'sery_bot', 'speedgaming', 'starbase47', 'streamelements', @@ -86,45 +116,11 @@ class ChatLog extends Model { ]); } - public static function classify($text) { - if (empty($text)) { - return 'unclassified'; - } - if (is_numeric(trim($text))) { - return 'number'; - } - $rawText = strtolower(preg_replace('/[^\w]/', '', $text)); - $tokenizedText = preg_split('/\s+/', strtolower(trim($text))); - if (Str::startsWith($rawText, 'gg') || Str::endsWith($rawText, 'gg')) { - return 'gg'; - } - if (Str::contains($rawText, ['glgl', 'glhf', 'hfgl'])) { - return 'gl'; - } - 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'])) { - return 'hi'; - } - if (Str::contains($rawText, ['pog', 'wow'])) { - return 'pog'; - } - if (Str::contains($rawText, ['hype'])) { - return 'hype'; - } - if (Str::startsWith($rawText, 'o7') || Str::endsWith($rawText, 'o7') || Str::contains($rawText, 'salut')) { - return 'o7'; - } - return 'unclassified'; - } - protected function evaluateUser() { } protected function evaluateChannel() { if (empty($this->params)) { - $this->channel()->associate(null); return; } $cname = $this->params[0]; @@ -132,7 +128,12 @@ class ChatLog extends Model { $cname = '#'.$cname; } $channel = Channel::firstWhere('twitch_chat', '=', $cname); - $this->channel()->associate($channel); + if (!is_null($channel)) { + $this->channel()->associate($channel); + if (empty($this->twitch_category) && now()->sub(15, 'minute')->isBefore($this->created_at)) { + $this->twitch_category = $channel->twitch_category; + } + } } protected function detectLanguage() { @@ -152,54 +153,6 @@ class ChatLog extends Model { } } - public static function spammyText($raw_text) { - $text = strtolower($raw_text); - if (substr($text, 0, 1) == '!') { - return true; - } - if (strpos($text, '$') !== false) { - return true; - } - if (strpos($text, '€') !== false) { - return true; - } - if (strpos($text, '@') !== false) { - return true; - } - if (strpos($text, '://') !== false) { - return true; - } - if (strpos($text, 'followers') !== false) { - return true; - } - if (strpos($text, 'horstie') !== false) { - return true; - } - if (strpos($text, 'promotion') !== false) { - return true; - } - if (strpos($text, 'viewers') !== false) { - return true; - } - if (strpos($text, 'view ers') !== false) { - return true; - } - 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',