]> git.localhorst.tv Git - alttp.git/commitdiff
add emote stats command
authorDaniel Karbach <daniel.karbach@localhorst.tv>
Thu, 9 May 2024 10:32:01 +0000 (12:32 +0200)
committerDaniel Karbach <daniel.karbach@localhorst.tv>
Thu, 9 May 2024 10:32:01 +0000 (12:32 +0200)
app/Console/Commands/TwitchTopEmotes.php [new file with mode: 0644]
app/Models/ChatLog.php
app/TwitchBot/TokenizedMessage.php

diff --git a/app/Console/Commands/TwitchTopEmotes.php b/app/Console/Commands/TwitchTopEmotes.php
new file mode 100644 (file)
index 0000000..81436d9
--- /dev/null
@@ -0,0 +1,62 @@
+<?php
+
+namespace App\Console\Commands;
+
+use App\Models\ChatLog;
+use Illuminate\Console\Command;
+
+class TwitchTopEmotes extends Command {
+
+       /**
+        * The name and signature of the console command.
+        *
+        * @var string
+        */
+       protected $signature = 'twitch:top-emotes {amount=10}';
+
+       /**
+        * The console command description.
+        *
+        * @var string
+        */
+       protected $description = 'Compiles a list of top N emotes in the chatbot catalog';
+
+       /**
+        * Execute the console command.
+        *
+        * @return int
+        */
+       public function handle() {
+               $counts = [];
+
+               ChatLog::where('type', '=', 'chat')
+                       ->where('banned', '=', false)
+                       ->whereNotNull('evaluated_at')
+                       ->chunk(5000, function ($msgs) use (&$counts) {
+                               foreach ($msgs as $msg) {
+                                       $tokenized = $msg->tokenize();
+                                       foreach ($tokenized->getOriginalEmotes() as $emote) {
+                                               if (!isset($counts[$emote])) {
+                                                       $counts[$emote] = 1;
+                                               } else {
+                                                       ++$counts[$emote];
+                                               }
+                                       }
+                               }
+                       });
+
+               arsort($counts);
+
+               $amount = intval($this->argument('amount'));
+               $counts = array_slice($counts, 0, $amount);
+
+               foreach ($counts as $emote => $count) {
+                       $this->line(mb_str_pad($emote, 20).$count);
+               }
+
+               return 0;
+       }
+
+}
+
+?>
index 6af158784247045dcd4c6c4a0e0fcdbbbe2f5f9f..2d43b2f08b008e3684e0b9c0ed6fb0532f8194af 100644 (file)
@@ -34,9 +34,7 @@ class ChatLog extends Model {
                                $positions = explode(',', $set[1]);
                                foreach ($positions as $position) {
                                        $coords = explode('-', $position);
-                                       for ($i = intval($coords[0]); $i <= intval($coords[1]); ++$i) {
-                                               $text[$i] = ' ';
-                                       }
+                                       $text = mb_substr($text, 0, $coords[0]).str_repeat(' ', $coords[1] - $coords[0] + 1).mb_substr($text, $coords[1] + 1);
                                }
                        }
                }
index 37836a915235c7356d7bcac8b1d4939a90b63ce4..4b7d758221d71aa9a9a3d9cbfdd9cf3cde77cb73 100644 (file)
@@ -22,7 +22,9 @@ class TokenizedMessage {
                                $positions = explode(',', $set[1]);
                                foreach ($positions as $position) {
                                        $coords = explode('-', $position);
-                                       $this->emotes[] = preg_replace('/\d+$/', '', strtolower(mb_substr($this->text, $coords[0], $coords[1] - $coords[0] + 1)));
+                                       $emote_text = mb_substr($this->text, $coords[0], $coords[1] - $coords[0] + 1);
+                                       $this->original_emotes[] = $emote_text;
+                                       $this->emotes[] = preg_replace('/\d+$/', '', strtolower($emote_text));
                                        $this->emoteless = mb_substr($this->emoteless, 0, $coords[0]).str_repeat(' ', $coords[1] - $coords[0] + 1).mb_substr($this->emoteless, $coords[1] + 1);
                                }
                        }
@@ -77,10 +79,18 @@ class TokenizedMessage {
                return !empty($this->tokens) && $this->tokens[count($this->tokens) - 1] == $text;
        }
 
+       public function getEmotes() {
+               return $this->emotes;
+       }
+
        public function getNumericValue() {
                return intval($this->text);
        }
 
+       public function getOriginalEmotes() {
+               return $this->original_emotes;
+       }
+
        public function hasConsecutiveTokens($tokens) {
                for ($i = 0; $i < count($this->tokens) - count($tokens) + 1; ++$i) {
                        for ($j = 0; $j < count($tokens); ++$j) {
@@ -344,6 +354,7 @@ class TokenizedMessage {
        private $tokens;
 
        private $emotes = [];
+       private $original_emotes = [];
        private $emoteless = '';
        private $emoteless_raw = '';
        private $emoteless_tokens = [];