text = $text; $this->tags = $tags; $this->raw = strtolower(preg_replace('/[^\w]/u', '', $text)); $this->tokens = preg_split('/\s+/', strtolower(trim($text))); $this->emoteless = $this->text; if (isset($this->tags['emotes']) && !empty($this->tags['emotes'])) { $emotes = explode('/', $this->tags['emotes']); foreach ($emotes as $emote) { $set = explode(':', $emote); $positions = explode(',', $set[1]); foreach ($positions as $position) { $coords = explode('-', $position); $this->emotes[] = strtolower(substr($this->text, $coords[0], $coords[1] - $coords[0] + 1)); for ($i = intval($coords[0]); $i <= intval($coords[1]); ++$i) { $this->emoteless[$i] = ' '; } } } $this->emoteless = trim(preg_replace('/\s+/', ' ', $this->emoteless)); } $this->emoteless_raw = strtolower(preg_replace('/[^\w]/', '', $this->emoteless)); $this->emoteless_tokens = preg_split('/\s+/', strtolower($this->emoteless)); } public static function fromIRC(IRCMessage $msg) { return new self($msg->getText(), $msg->tags); } public static function fromLog(ChatLog $log) { return new self($log->params[1], $log->tags); } public static function fromString($text, $tags = []) { return new self($text, $tags); } public function contains($text) { return Str::contains($this->text, $text); } public function containsRaw($text) { return Str::contains($this->raw, $text); } public function endsWith($text) { return Str::endsWith($this->text, $text); } public function endsWithRaw($text) { return Str::endsWith($this->raw, $text); } public function getNumericValue() { return intval($this->text); } public function hasEmote($text) { return in_array($text, $this->emotes); } public function hasEmoteThatContains($text) { foreach ($this->emotes as $emote) { if (Str::contains($emote, $text)) { return true; } } return false; } public function hasEmoteThatEndsWith($text) { foreach ($this->emotes as $emote) { if (Str::endsWith($emote, $text)) { return true; } } return false; } public function hasEmoteThatStartsOrEndsWith($text) { foreach ($this->emotes as $emote) { if (Str::startsWith($emote, $text) || Str::endsWith($emote, $text)) { return true; } } return false; } public function hasEmoteThatStartsWith($text) { foreach ($this->emotes as $emote) { if (Str::startsWith($emote, $text)) { return true; } } return false; } public function hasToken($text) { return in_array($text, $this->tokens); } public function hasTokenThatContains($text) { foreach ($this->tokens as $token) { if (Str::contains($token, $text)) { return true; } } return false; } public function hasTokenThatEndsWith($text) { foreach ($this->tokens as $token) { if (Str::endsWith($token, $text)) { return true; } } return false; } public function hasTokenThatStartsOrEndsWith($text) { foreach ($this->tokens as $token) { if (Str::startsWith($token, $text) || Str::endsWith($token, $text)) { return true; } } return false; } public function hasTokenThatStartsWith($text) { foreach ($this->tokens as $token) { if (Str::startsWith($token, $text)) { return true; } } return false; } public function startsOrEndsWith($text) { return $this->startsWith($text) || $this->endsWith($text); } public function startsOrEndsWithRaw($text) { return $this->startsWithRaw($text) || $this->endsWithRaw($text); } public function startsWith($text) { return Str::startsWith($this->text, $text); } public function startsWithRaw($text) { return Str::startsWith($this->raw, $text); } public function isSpammy() { if ($this->startsWith('!')) { return true; } if ($this->contains(['€', '$', '@', '://'])) { return true; } if ($this->containsRaw(['followers', 'promotion', 'viewers'])) { return true; } if ($this->containsRaw('horstie')) { return true; } if ($this->containsRaw(['vielendankfürdenraid', 'willkommenaufstarbase47'])) { return true; } return false; } public function classify() { if (is_null($this->classification)) { if (empty($this->raw)) { $this->classification = 'unclassified'; } else if (is_numeric($this->raw)) { $this->classification = 'number'; } else if ($this->hasTokenThatStartsOrEndsWith(['gg'])) { $this->classification = 'gg'; } else if ($this->containsRaw(['glgl', 'glhf', 'hfgl'])) { $this->classification = 'gl'; } else if ($this->containsRaw(['haha', 'hehe', 'hihi', 'kekw', 'lol', 'lul', 'xd']) || $this->hasTokenThatStartsWith(':d')) { $this->classification = 'lol'; } else if ($this->startsWithRaw(['ahoi', 'hallo', 'hello', 'huhu']) || $this->hasEmoteThatEndsWith(['hello', 'hi', 'wave']) || $this->hasToken('hi')) { $this->classification = 'hi'; } else if ($this->containsRaw(['pog', 'wow'])) { $this->classification = 'pog'; } else if ($this->containsRaw(['hype'])) { $this->classification = 'hype'; } else if ($this->startsOrEndsWithRaw(['o7']) || $this->hasEmoteThatContains('salut')) { $this->classification = 'o7'; } else { $this->classification = 'unclassified'; } } return $this->classification; } private $text; private $tags; private $raw; private $tokens; private $emotes = []; private $emoteless = ''; private $emoteless_raw = ''; private $emoteless_tokens = []; private $classification = null; }