X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=app%2FModels%2FChatLog.php;fp=app%2FModels%2FChatLog.php;h=cad1bfead6668070b239e5b483f1d3fe199f5caf;hb=1dea58cb6fa9cf28966e75c1e1af87f67e6c0fd1;hp=2d43b2f08b008e3684e0b9c0ed6fb0532f8194af;hpb=5df7f3ed455c56370b3c4b690b0ca47b183fa829;p=alttp.git diff --git a/app/Models/ChatLog.php b/app/Models/ChatLog.php index 2d43b2f..cad1bfe 100644 --- a/app/Models/ChatLog.php +++ b/app/Models/ChatLog.php @@ -25,8 +25,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 +57,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(); @@ -62,7 +85,7 @@ 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()) {