3 namespace App\TwitchBot;
5 use App\Models\ChatLog;
6 use Illuminate\Support\Arr;
7 use Illuminate\Support\Str;
9 class TokenizedMessage {
11 public function __construct($text, $tags = []) {
12 $this->text = trim($text);
14 $this->raw = strtolower(preg_replace('/[^\w]/u', '', $this->text));
15 $this->tokens = array_values(array_map('trim', array_filter(preg_split('/\b/', strtolower($this->text)))));
17 $this->emoteless = $this->text;
18 if (isset($this->tags['emotes']) && !empty($this->tags['emotes'])) {
19 $emotes = explode('/', $this->tags['emotes']);
20 foreach ($emotes as $emote) {
21 $set = explode(':', $emote);
22 $positions = explode(',', $set[1]);
23 foreach ($positions as $position) {
24 $coords = explode('-', $position);
25 $this->emotes[] = preg_replace('/\d+$/', '', strtolower(substr($this->text, $coords[0], $coords[1] - $coords[0] + 1)));
26 for ($i = intval($coords[0]); $i <= intval($coords[1]); ++$i) {
27 $this->emoteless[$i] = ' ';
31 $this->emoteless = trim(preg_replace('/\s+/', ' ', $this->emoteless));
33 $this->emoteless_raw = strtolower(preg_replace('/[^\w]/', '', $this->emoteless));
34 $this->emoteless_tokens = array_values(array_map('trim', array_filter(preg_split('/\b/', strtolower($this->emoteless)))));
37 public static function fromIRC(IRCMessage $msg) {
38 return new self($msg->getText(), $msg->tags);
41 public static function fromLog(ChatLog $log) {
42 return new self($log->params[1], $log->tags);
45 public static function fromString($text, $tags = []) {
46 return new self($text, $tags);
50 public function contains($text) {
51 return Str::contains($this->text, $text);
54 public function containsEmoteless($text) {
55 return Str::contains($this->emoteless, $text);
58 public function containsRaw($text) {
59 return Str::contains($this->raw, $text);
62 public function endsWith($text) {
63 return Str::endsWith($this->text, $text);
66 public function endsWithEmoteless($text) {
67 return Str::endsWith($this->emoteless, $text);
70 public function endsWithEmotelessToken($text) {
71 return !empty($this->emoteless_tokens) && $this->emoteless_tokens[count($this->emoteless_tokens) - 1] == $text;
74 public function endsWithRaw($text) {
75 return Str::endsWith($this->raw, $text);
78 public function endsWithToken($text) {
79 return !empty($this->tokens) && $this->tokens[count($this->tokens) - 1] == $text;
82 public function getNumericValue() {
83 return intval($this->text);
86 public function hasConsecutiveTokens($tokens) {
87 for ($i = 0; $i < count($this->tokens) - count($tokens) + 1; ++$i) {
88 for ($j = 0; $j < count($tokens); ++$j) {
89 if ($this->tokens[$i + $j] != $tokens[$j]) break;
91 if ($j == count($tokens)) return true;
96 public function hasEmote($text) {
97 if (is_array($text)) {
98 foreach ($text as $token) {
99 if (in_array($token, $this->emotes)) {
105 return in_array($text, $this->emotes);
108 public function hasEmoteThatContains($text) {
109 foreach ($this->emotes as $emote) {
110 if (Str::contains($emote, $text)) {
117 public function hasEmoteThatEndsWith($text) {
118 foreach ($this->emotes as $emote) {
119 if (Str::endsWith($emote, $text)) {
126 public function hasEmoteThatStartsOrEndsWith($text) {
127 foreach ($this->emotes as $emote) {
128 if (Str::startsWith($emote, $text) || Str::endsWith($emote, $text)) {
135 public function hasEmoteThatStartsWith($text) {
136 foreach ($this->emotes as $emote) {
137 if (Str::startsWith($emote, $text)) {
144 public function hasToken($text) {
145 if (is_array($text)) {
146 foreach ($text as $token) {
147 if (in_array($token, $this->tokens)) {
153 return in_array($text, $this->tokens);
156 public function hasTokenThatContains($text) {
157 foreach ($this->tokens as $token) {
158 if (Str::contains($token, $text)) {
165 public function hasTokenThatEndsWith($text) {
166 foreach ($this->tokens as $token) {
167 if (Str::endsWith($token, $text)) {
174 public function hasTokenThatStartsOrEndsWith($text) {
175 foreach ($this->tokens as $token) {
176 if (Str::startsWith($token, $text) || Str::endsWith($token, $text)) {
183 public function hasTokenThatStartsWith($text) {
184 foreach ($this->tokens as $token) {
185 if (Str::startsWith($token, $text)) {
192 public function isLong() {
193 return strlen($this->emoteless_raw) > 20;
196 public function isShort() {
197 return strlen($this->emoteless_raw) < 15;
200 public function isVeryLong() {
201 return strlen($this->emoteless_raw) > 40;
204 public function startsOrEndsWith($text) {
205 return $this->startsWith($text) || $this->endsWith($text);
208 public function startsOrEndsWithEmotelessToken($text) {
209 return $this->startsWithEmotelessToken($text) || $this->endsWithEmotelessToken($text);
212 public function startsOrEndsWithRaw($text) {
213 return $this->startsWithRaw($text) || $this->endsWithRaw($text);
216 public function startsOrEndsWithToken($text) {
217 return $this->startsWithToken($text) || $this->endsWithToken($text);
220 public function startsWith($text) {
221 return Str::startsWith($this->text, $text);
224 public function startsWithEmoteless($text) {
225 return Str::startsWith($this->emoteless, $text);
228 public function startsWithEmotelessToken($text) {
229 return isset($this->emoteless_tokens[0]) && $this->emoteless_tokens[0] == $text;
232 public function startsWithRaw($text) {
233 return Str::startsWith($this->raw, $text);
236 public function startsWithToken($text) {
237 return isset($this->tokens[0]) && $this->tokens[0] == $text;
241 public function isSpammy() {
242 if ($this->startsWith('!')) {
245 if ($this->contains(['€', '$', '@', '://'])) {
248 if ($this->containsRaw(['followers', 'promotion', 'viewers'])) {
251 if ($this->containsRaw('horsti')) {
254 if ($this->containsRaw(['folgtjetzt', 'vielendankfürdenraid', 'thanksfortheraid', 'willkommenaufstarbase47'])) {
261 public function classify() {
262 if (is_null($this->classification)) {
263 if (empty($this->text) || $this->isVeryLong()) {
264 $this->classification = 'unclassified';
265 } else if ($this->startsWith('!')) {
266 $this->classification = 'cmd';
267 } else if ($this->isShort() && ($this->hasTokenThatStartsOrEndsWith(['gg']) || $this->hasEmoteThatEndsWith(['gg']))) {
268 $this->classification = 'gg';
269 } else if ($this->isShort() && $this->containsRaw(['glgl', 'glhf', 'goodluck', 'hfgl', 'vielglück'])) {
270 $this->classification = 'gl';
271 } else if ($this->hasToken(['danke', 'thanks', 'thx', 'ty']) && !$this->hasToken(['nah', 'nee', 'nein', 'no'])) {
272 $this->classification = 'thx';
273 } else if (!$this->isLong() && ($this->startsWithRaw(['ahoi', 'hallo', 'hello', 'hey', 'huhu', 'moin']) || $this->hasEmoteThatEndsWith(['hello', 'heyguys', 'hi', 'vohiyo', 'wave']) || $this->hasToken(['hi', 'hey', 'yo']) || $this->containsRaw(['gutenmorgen', 'gutenabend']))) {
274 $this->classification = 'hi';
275 } else if ($this->isShort() && $this->hasTokenThatStartsOrEndsWith(['pog', 'wow'])) {
276 $this->classification = 'pog';
277 } else if ($this->containsRaw(['hype', 'letsgo']) || $this->hasEmoteThatEndsWith(['dance', 'jam', 'party', 'rave', 'troete'])) {
278 $this->classification = 'hype';
279 } else if ($this->hasToken(['<3']) || $this->hasEmoteThatEndsWith(['heart', 'herz', 'hug', 'love'])) {
280 $this->classification = 'love';
281 } else if ($this->hasToken(['nani', 'wat', 'wtf']) || $this->hasEmoteThatEndsWith(['wat', 'wtf'])) {
282 $this->classification = 'wtf';
283 } else if ($this->hasConsecutiveTokens([':', 'eyes', ':']) || $this->hasEmoteThatEndsWith(['eyes'])) {
284 $this->classification = 'eyes';
285 } else if ($this->hasEmoteThatEndsWith(['angry', 'rage', 'ree'])) {
286 $this->classification = 'rage';
287 } else if ($this->hasToken([':(']) || $this->hasEmoteThatEndsWith(['cry', 'sad'])) {
288 $this->classification = 'sad';
289 } else if ($this->hasToken(['monkas', 'sweat_smile']) || $this->hasEmoteThatEndsWith(['sweat'])) {
290 $this->classification = 'sweat';
291 } else if ($this->endsWithEmoteless('?')) {
292 $this->classification = 'question';
293 } else if ($this->hasToken(['jo', 'yep', 'yes']) || $this->startsOrEndsWithEmotelessToken('ja') || $this->containsRaw('nodders') || $this->hasEmoteThatEndsWith(['nod', 'nodders', 'yea'])) {
294 $this->classification = 'yes';
295 } else if ($this->hasToken(['nah', 'nee', 'nein', 'no']) || $this->containsRaw('nopers') || $this->hasEmoteThatEndsWith(['nay', 'nope', 'nopers'])) {
296 $this->classification = 'no';
297 } else if ($this->hasEmoteThatContains(['kappa', 'keepo'])) {
298 $this->classification = 'kappa';
299 } else if ($this->startsOrEndsWithRaw(['o7']) || $this->hasEmoteThatContains('salut')) {
300 $this->classification = 'o7';
301 } else if (!$this->isLong() && ($this->containsRaw(['haha', 'hehe', 'hihi', 'kekw', 'lol', 'lul']) || $this->hasTokenThatStartsWith(['xd']) || $this->hasConsecutiveTokens([':', 'd']))) {
302 $this->classification = 'lol';
303 } else if (is_numeric($this->raw)) {
304 $this->classification = 'number';
306 $this->classification = 'unclassified';
309 return $this->classification;
312 public function getResponseCategory() {
313 switch ($this->classify()) {
315 return ['love', 'eyes', 'thx', 'pog', 'kappa'];
317 return ['love', 'eyes', 'thx'];
319 return ['hi', 'love', 'eyes', 'hype', 'pog'];
321 return ['kappa', 'lol', 'eyes'];
323 return ['hi', 'love', 'eyes', 'thx'];
326 $this->hasToken(['number', 'nummer', 'wieviel', 'zahl']) ||
327 $this->hasConsecutiveTokens(['how', 'many']) ||
328 $this->hasConsecutiveTokens(['how', 'much']) ||
329 $this->hasConsecutiveTokens(['wie', 'viele'])
331 return ['yes', 'no', 'kappa', 'lol', 'wtf', 'number'];
333 return ['yes', 'no', 'kappa', 'lol', 'wtf'];
335 return ['kappa', 'lol', 'rage'];
337 return ['kappa', 'lol', 'rage'];
348 private $emotes = [];
349 private $emoteless = '';
350 private $emoteless_raw = '';
351 private $emoteless_tokens = [];
353 private $classification = null;