This repository has been archived on 2021-04-24. You can view files and clone it, but cannot push or open issues or pull requests.
Mikubot-2/plugins/chatter.lua

40 lines
904 B
Lua
Raw Normal View History

2015-07-05 18:14:41 +02:00
-- shout-out to @luksi_reiku for showing me this site
2015-07-05 04:51:12 +02:00
local PLUGIN = {}
PLUGIN.triggers = {
'^@' .. bot.username .. ', ',
'^' .. bot.first_name .. ', '
}
function PLUGIN.action(msg)
local input = get_input(msg.text)
2015-07-05 18:14:41 +02:00
local url = 'http://www.simsimi.com/requestChat?lc=en&ft=1.0&req=' .. URL.escape(input)
2015-07-05 04:51:12 +02:00
local jstr, res = HTTP.request(url)
if res ~= 200 then
return send_message(msg.chat.id, "I don't feel like talking right now.")
end
local jdat = JSON.decode(jstr)
if string.match(jdat.res, '^I HAVE NO RESPONSE.') then
jdat.res = "I don't know what to say to that."
end
2015-07-05 18:14:41 +02:00
-- Let's clean up the response a little. Capitalization & punctuation.
local message = jdat.res:gsub('simsimi', 'clive')
local message = message:gsub("^%l", string.upper)
if not string.match(message, '%p$') then
message = message .. '.'
end
2015-07-05 04:51:12 +02:00
send_message(msg.chat.id, jdat.res)
end
return PLUGIN