X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=app%2FModels%2FChatLog.php;h=f918269073a0fa733e7ea9765a0a57d514b2bca2;hb=50ec833111c8a11711a98e642321c8dad25b01ae;hp=8c890e707112acc3ade9ea8450b821def2c92915;hpb=ac4ef598bf174ff342a261787ba6e9555003cbbb;p=alttp.git diff --git a/app/Models/ChatLog.php b/app/Models/ChatLog.php index 8c890e7..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; } @@ -64,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() { }