belongsTo(Channel::class); } public function user() { return $this->belongsTo(User::class); } public function getTextWithoutEmotes() { $text = $this->text_content; 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); for ($i = intval($coords[0]); $i <= intval($coords[1]); ++$i) { $text[$i] = ' '; } } } } return trim(preg_replace('/\s+/', ' ', $text)); } public function evaluate() { $this->evaluateUser(); $this->evaluateChannel(); if (is_null($this->nick)) { $this->type = 'system'; return; } if (in_array($this->nick, ['horstiebot', 'localhorsttv'])) { $this->type = 'self'; return; } if ($this->command == 'PRIVMSG') { if (static::isKnownBot($this->nick)) { $this->type = 'bot'; } else if (substr($this->params[0], 0, 1) == '#') { $this->type = 'chat'; } else { $this->type = 'dm'; } $this->text_content = $this->params[1]; $this->detectLanguage(); if ($this->scanForSpam()) { $this->banned = true; } $this->classification = static::classify($this->text_content); return; } throw new \Exception('unidentified message'); } public static function isKnownBot($nick) { return in_array(strtolower($nick), [ 'birrellthesquirrel', 'funtoon', 'nidbot2000', 'nightbot', 'pokemoncommunitygame', 'speedgaming', 'starbase47', 'streamelements', 'wizebot', 'zockerstuebchen', ]); } 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]; if (substr($cname, 0, 1) != '#') { $cname = '#'.$cname; } $channel = Channel::firstWhere('twitch_chat', '=', $cname); $this->channel()->associate($channel); } protected function detectLanguage() { $languages = ['de', 'en', 'es', 'fr']; if (!is_null($this->channel)) { $languages = array_values($this->channel->languages); if (!in_array('en', $languages)) { $languages[] = 'en'; } } $detector = (new Language($languages))->detect($this->getTextWithoutEmotes()); $scores = $detector->close(); $lang = strval($detector); //var_dump($scores, $lang, $this->text_content); if (!empty($lang) && $scores[$lang] > 0.4) { $this->detected_language = $lang; } } 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', 'tags' => 'array', 'user_id' => 'string', ]; protected $fillable = [ 'command', 'nick', 'params', 'tags', ]; }