X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=app%2FModels%2FChatLog.php;h=f918269073a0fa733e7ea9765a0a57d514b2bca2;hb=50ec833111c8a11711a98e642321c8dad25b01ae;hp=ae05be631deed3221f6b645f4fcfcb82da8048f9;hpb=9172e3073236646e7b2d5ca73d20bdf32711d1c2;p=alttp.git diff --git a/app/Models/ChatLog.php b/app/Models/ChatLog.php index ae05be6..f918269 100644 --- a/app/Models/ChatLog.php +++ b/app/Models/ChatLog.php @@ -4,6 +4,8 @@ namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; +use Illuminate\Support\Arr; +use Illuminate\Support\Str; use LanguageDetector\LanguageDetector; class ChatLog extends Model { @@ -44,6 +46,7 @@ class ChatLog extends Model { if ($this->scanForSpam()) { $this->banned = true; } + $this->classification = static::classify($this->text_content); return; } @@ -52,7 +55,9 @@ class ChatLog extends Model { public function isKnownBot() { return in_array(strtolower($this->nick), [ + 'birrellthesquirrel', 'funtoon', + 'nidbot2000', 'nightbot', 'pokemoncommunitygame', 'speedgaming', @@ -62,6 +67,36 @@ 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'; + } + return 'unclassified'; + } + protected function evaluateUser() { }