X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;ds=sidebyside;f=app%2FModels%2FChatLog.php;h=49a57c25a626b5ade8c6b072899591539fc74739;hb=HEAD;hp=2d43b2f08b008e3684e0b9c0ed6fb0532f8194af;hpb=ac6921da72ff4b0beab9e5f1308788a55aae3ad9;p=alttp.git diff --git a/app/Models/ChatLog.php b/app/Models/ChatLog.php index 2d43b2f..6b525b2 100644 --- a/app/Models/ChatLog.php +++ b/app/Models/ChatLog.php @@ -5,8 +5,6 @@ namespace App\Models; use App\TwitchBot\TokenizedMessage; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; -use Illuminate\Support\Arr; -use Illuminate\Support\Str; use LanguageDetection\Language; class ChatLog extends Model { @@ -25,8 +23,24 @@ class ChatLog extends Model { 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) { @@ -41,6 +55,13 @@ class ChatLog extends Model { 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(); @@ -53,8 +74,12 @@ class ChatLog extends Model { $this->type = 'self'; return; } + if (!empty($this->params) && $this->params[0] == '#'.$this->nick) { + $this->type = 'owner'; + 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) == '#') { @@ -62,12 +87,13 @@ class ChatLog extends Model { } else { $this->type = 'dm'; } - $this->text_content = $this->params[1]; + $this->text_content = $this->getTextWithoutReply(); $this->detectLanguage(); $tokenized = $this->tokenize(); if ($tokenized->isSpammy()) { $this->banned = true; } + $this->emote_only = $tokenized->isEmoteOnly(); $this->classification = $tokenized->classify(); return; } @@ -79,11 +105,20 @@ class ChatLog extends Model { return in_array(strtolower($nick), [ 'a_n_i_v', 'birrellthesquirrel', + 'brokkobot', + 'creatisbot', + 'duden22', + 'fossabot', 'funtoon', + 'kofistreambot', + 'lord_helmut_', 'nidbot2000', 'nightbot', + 'phnxtyrolbot', 'pokemoncommunitygame', + 'raccbutler', 'sery_bot', + 'soundalerts', 'speedgaming', 'starbase47', 'streamelements',