3 namespace App\TwitchBot;
5 use App\Models\Channel;
6 use App\Models\ChatBotLog;
7 use App\Models\ChatLog;
8 use Illuminate\Support\Arr;
9 use Illuminate\Support\Str;
11 class TwitchChatBot extends TwitchBot {
13 public function __construct() {
14 parent::__construct('horstiebot');
15 $this->updateChannels();
17 $this->listenCommands();
20 public function joinChannels() {
21 $this->getLogger()->info('joining channels');
23 foreach ($this->channels as $channel) {
24 $names[] = $channel->twitch_chat;
26 $chunks = array_chunk($names, 10);
27 foreach ($chunks as $chunk) {
28 $this->sendIRCMessage(IRCMessage::join($chunk));
32 public function logMessage(IRCMessage $msg) {
33 $channel = $this->getMessageChannel($msg);
34 if ($channel && !$channel->join) {
39 public function handlePrivMsg(IRCMessage $msg) {
40 if ($msg->nick == 'horstiebot') return;
41 $channel = $this->getMessageChannel($msg);
42 if (!$channel) return;
43 $this->tagChannelRead($channel, $msg);
47 private function startTimer() {
48 $this->getLoop()->addPeriodicTimer(1, function () {
49 if (!$this->isReady()) return;
50 foreach ($this->channels as $channel) {
51 $this->decideSend($channel);
54 $this->getLoop()->addPeriodicTimer(60, function () {
55 $this->updateChannels();
59 private function updateChannels() {
60 $this->channels = Channel::where('twitch_chat', '!=', '')->where('chat', '=', true)->get();
63 private function decideSend(Channel $channel) {
64 $notes = $this->getNotes($channel);
65 if ($notes['read_since_last_write'] < $notes['wait_msgs']) {
68 if (time() - $notes['last_write'] < $notes['wait_time']) {
71 if ($notes['read_since_last_write'] == $notes['wait_msgs'] && time() - $notes['last_read'] < 3) {
72 // don't immediately respond if we crossed the msg threshold last
75 $text = $this->contextualMsg($channel);
76 if (!$text) $text = $this->randomChat($channel);
78 $actual_text = is_object($text) ? $text->text_content : $text;
79 $this->tagChannelWrite($channel);
80 $this->sendIRCMessage(IRCMessage::privmsg($channel->twitch_chat, $actual_text));
81 $log = new ChatBotLog();
82 $log->channel()->associate($channel);
83 if (is_object($text)) {
84 $log->origin()->associate($text);
86 $log->text = $actual_text;
90 private function getNotes(Channel $channel) {
91 if (!isset($this->notes[$channel->id])) {
92 $this->notes[$channel->id] = [
95 'last_write' => time(),
97 'queued_special' => false,
98 'read_since_last_write' => 0,
99 'wait_msgs' => $this->randomWaitMsgs($channel),
100 'wait_time' => $this->randomWaitTime($channel),
103 return $this->notes[$channel->id];
106 private function getNote(Channel $channel, $name, $default = null) {
107 $notes = $this->getNotes($channel);
108 if (array_key_exists($name, $notes)) {
109 return $notes[$name];
114 private function setNote(Channel $channel, $name, $value) {
115 $this->getNotes($channel);
116 $this->notes[$channel->id][$name] = $value;
119 private function collectClassifications(Channel $channel) {
120 $classifications = [];
121 $notes = $this->getNotes($channel);
122 foreach ($notes['latest_msgs'] as $msg) {
123 $classification = $msg->classify();
124 if ($classification == 'unclassified') continue;
125 if (isset($classifications[$classification])) {
126 ++$classifications[$classification];
128 $classifications[$classification] = 1;
131 arsort($classifications);
132 return $classifications;
135 private function contextualMsg(Channel $channel) {
136 if ($this->hasQueuedSpecial($channel)) {
137 $classification = $this->getQueuedSpecial($channel);
138 if (is_string($classification)) {
139 $this->tagChannelSpecialSent($channel, $classification);
141 $this->clearQueuedSpecial($channel);
142 if ($classification == 'number') {
143 return $this->randomContextualNumber($channel);
145 if ($classification == 'lol') {
146 return $this->randomLaughter($channel);
148 return $channel->randomOfClass($classification);
150 $last = $this->getLastSpecialSent($channel);
151 $classifications = $this->collectClassifications($channel);
176 foreach ($classifications as $classification => $count) {
177 if ($classification == $last) continue;
178 if (!isset($count_quotas[$classification]) || $count < $count_quotas[$classification]) continue;
179 if (!isset($time_quotas[$classification]) || $this->getTimeSinceSpecial($channel, $classification) < $time_quotas[$classification]) continue;
180 $this->tagChannelSpecialSent($channel, $classification);
181 if ($classification == 'number') {
182 return $this->randomContextualNumber($channel);
184 if ($classification == 'lol') {
185 return $this->randomLaughter($channel);
187 return $channel->randomOfClass($classification);
192 private function randomChat(Channel $channel) {
193 return $channel->queryChatlog()
194 ->whereNotIn('classification', ['gg', 'gl', 'number', 'o7'])
198 private function randomContextualNumber(Channel $channel) {
199 $notes = $this->getNotes($channel);
202 foreach ($notes['latest_msgs'] as $msg) {
203 if ($msg->classify() == 'number') {
204 $number = $msg->getNumericValue();
205 $min = min($min, $number);
206 $max = max($max, $number);
209 return random_int($min, $max);
212 private function randomLaughter(Channel $channel) {
213 if (!random_int(0, 2)) {
214 return $channel->randomOfClass('lol');
247 private function randomMsg(Channel $channel) {
248 return $channel->queryChatlog()->first();
251 private function randomWaitMsgs(Channel $channel) {
252 $min = $channel->getChatSetting('wait_msgs_min', 1);
253 $max = $channel->getChatSetting('wait_msgs_max', 10);
254 return random_int($min, $max);
257 private function randomWaitTime(Channel $channel) {
258 $min = $channel->getChatSetting('wait_time_min', 1);
259 $max = $channel->getChatSetting('wait_time_max', 900);
260 return random_int($min, $max);
263 private function queueSpecial(Channel $channel, $classification) {
264 $this->getNotes($channel);
265 $this->notes[$channel->id]['queued_special'] = $classification;
268 private function hasQueuedSpecial(Channel $channel) {
269 return !!$this->getQueuedSpecial($channel);
272 private function getQueuedSpecial(Channel $channel) {
273 $notes = $this->getNotes($channel);
274 return $notes['queued_special'];
277 private function clearQueuedSpecial(Channel $channel) {
278 $this->getNotes($channel);
279 $this->notes[$channel->id]['queued_special'] = false;
282 private function tagChannelRead(Channel $channel, IRCMessage $msg) {
283 $this->getNotes($channel);
284 $this->notes[$channel->id]['last_read'] = time();
285 ++$this->notes[$channel->id]['read_since_last_write'];
287 $tokenized = $msg->tokenize();
288 if (!ChatLog::isKnownBot($msg->nick) && !$tokenized->isSpammy()) {
289 $this->notes[$channel->id]['latest_msgs'][] = $tokenized;
290 if (count($this->notes[$channel->id]['latest_msgs']) > 10) {
291 array_shift($this->notes[$channel->id]['latest_msgs']);
294 if ($this->isDirectedAtMe($msg->getText()) && $this->shouldRespond($channel)) {
295 $this->notes[$channel->id]['wait_msgs'] = 0;
296 $this->notes[$channel->id]['wait_time'] = 0;
297 $response = $this->getResponseTo($tokenized);
299 $this->queueSpecial($channel, $response);
304 private function tagChannelWrite(Channel $channel) {
305 $this->getNotes($channel);
306 $this->notes[$channel->id]['last_write'] = time();
307 $this->notes[$channel->id]['read_since_last_write'] = 0;
308 $this->notes[$channel->id]['wait_msgs'] = $this->randomWaitMsgs($channel);
309 $this->notes[$channel->id]['wait_time'] = $this->randomWaitTime($channel);
312 private function tagChannelSpecialSent(Channel $channel, $classification) {
313 $this->getNotes($channel);
314 $this->notes[$channel->id]['last_special'][$classification] = time();
317 private function getLastSpecialSent(Channel $channel) {
318 $notes = $this->getNotes($channel);
320 $max_classification = '';
321 foreach ($notes['last_special'] as $classification => $time) {
322 if ($time > $max_time) {
324 $max_classification = $classification;
327 return $max_classification;
330 private function getTimeSinceSpecial(Channel $channel, $classification) {
331 $notes = $this->getNotes($channel);
332 if (isset($notes['last_special'][$classification])) {
333 return time() - $notes['last_special'][$classification];
338 private function isDirectedAtMe($raw_text) {
339 $text = strtolower($raw_text);
340 if (strpos($text, 'horsti') !== false) {
346 private function shouldRespond(Channel $channel) {
347 $setting = $channel->getChatSetting('respond', 'yes');
348 if ($setting == 'yes') {
351 if ($setting == '50') {
352 return random_int(0, 1);
357 private function getResponseTo(TokenizedMessage $msg) {
358 switch ($msg->classify()) {
360 return ['love', 'eyes', 'thx', 'pog', 'kappa'];
362 return ['love', 'eyes', 'thx'];
364 return ['hi', 'love', 'eyes', 'hype', 'pog'];
366 return ['kappa', 'lol', 'eyes'];
368 return ['hi', 'love', 'eyes', 'thx'];
370 return ['yes', 'no', 'kappa', 'lol', 'wtf', 'number'];
372 return ['kappa', 'lol', 'rage'];
374 return ['kappa', 'lol', 'rage'];