}
+ public function getText() {
+ return $this->text;
+ }
+
+
public function contains($text) {
return Str::contains($this->text, $text);
}
$this->classification = 'cmd';
} else if ($this->isShort() && ($this->hasTokenThatStartsOrEndsWith(['gg']) || $this->hasEmoteThatEndsWith(['gg']))) {
$this->classification = 'gg';
- } else if ($this->isShort() && $this->containsRaw(['glgl', 'glhf', 'goodluck', 'hfgl', 'vielglück'])) {
+ } else if ($this->isShort() && ($this->containsRaw(['glgl', 'glhf', 'goodluck', 'hfgl', 'vielglück']) || $this->hasToken('gl'))) {
$this->classification = 'gl';
} else if ($this->hasToken(['danke', 'thanks', 'thx', 'ty']) && !$this->hasToken(['nah', 'nee', 'nein', 'no'])) {
$this->classification = 'thx';
$this->hasConsecutiveTokens(['how', 'much']) ||
$this->hasConsecutiveTokens(['wie', 'viele'])
) {
- return ['yes', 'no', 'kappa', 'lol', 'wtf', 'number'];
+ return ['yes', 'no', 'kappa', 'wtf', 'number'];
}
- return ['yes', 'no', 'kappa', 'lol', 'wtf'];
+ return ['yes', 'no', 'kappa', 'wtf'];
case 'rage':
return ['kappa', 'lol', 'rage'];
case 'wtf':
return;
}
$text = $this->contextualMsg($channel);
- if ($this->shouldAdlib($channel)) {
+ if (!$text && $this->shouldAdlib($channel)) {
$this->performAdlib($channel);
return;
}
private function performAdlib(Channel $channel) {
$db = $this->getChatlibDatabase($channel);
- $text = $db->generate();
+ $latest_msg = $this->getLatestMessage($channel);
+ $text = $db->generate($latest_msg->getText());
$this->tagChannelWrite($channel);
$this->sendIRCMessage(IRCMessage::privmsg($channel->twitch_chat, $text));
$log = new ChatBotLog();
$tokenized = $msg->tokenize();
if (!ChatLog::isKnownBot($msg->nick) && !$tokenized->isSpammy()) {
- $this->notes[$channel->id]['latest_msgs'][] = $tokenized;
- if (count($this->notes[$channel->id]['latest_msgs']) > 10) {
- array_shift($this->notes[$channel->id]['latest_msgs']);
- }
+ $this->noteChannelMessage($channel, $tokenized);
}
if ($this->isDirectedAtMe($msg->getText()) && $this->shouldRespond($channel)) {
+ $this->noteChannelMessage($channel, $tokenized);
$this->notes[$channel->id]['wait_msgs'] = 0;
$this->notes[$channel->id]['wait_time'] = 0;
$response = $tokenized->getResponseCategory();
}
}
+ private function noteChannelMessage(Channel $channel, TokenizedMessage $tokenized) {
+ $this->notes[$channel->id]['latest_msgs'][] = $tokenized;
+ if (count($this->notes[$channel->id]['latest_msgs']) > 10) {
+ array_shift($this->notes[$channel->id]['latest_msgs']);
+ }
+ }
+
private function tagChannelWrite(Channel $channel) {
$this->getNotes($channel);
$this->notes[$channel->id]['last_write'] = time();
}
private function getLatestMessage(Channel $channel) {
- $this->getNotes($channel);
+ $notes = $this->getNotes($channel);
if (!empty($notes['latest_msgs'])) {
return $notes['latest_msgs'][count($notes['latest_msgs']) - 1];
}