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/otouto/plugins/bible.lua

52 lines
1.5 KiB
Lua
Raw Normal View History

local bible = {}
local HTTP = require('socket.http')
local URL = require('socket.url')
2016-06-07 06:31:34 +02:00
local utilities = require('otouto.utilities')
2016-05-27 02:26:30 +02:00
function bible:init(config)
if not config.biblia_api_key then
print('Missing config value: biblia_api_key.')
print('bible.lua will not be enabled.')
return
end
bible.triggers = utilities.triggers(self.info.username, config.cmd_pat):t('bible', true):t('b', true).table
bible.doc = config.cmd_pat .. [[bible <reference>
Returns a verse from the American Standard Version of the Bible, or an apocryphal verse from the King James Version. Results from biblia.com.
Alias: ]] .. config.cmd_pat .. 'b'
end
2015-07-03 00:15:52 +02:00
bible.command = 'bible <reference>'
2015-07-03 00:15:52 +02:00
2016-05-27 02:26:30 +02:00
function bible:action(msg, config)
2015-07-03 00:15:52 +02:00
local input = utilities.input(msg.text)
2015-07-03 00:15:52 +02:00
if not input then
utilities.send_message(self, msg.chat.id, bible.doc, true, msg.message_id, true)
return
2015-07-03 00:15:52 +02:00
end
2016-05-27 02:26:30 +02:00
local url = 'http://api.biblia.com/v1/bible/content/ASV.txt?key=' .. config.biblia_api_key .. '&passage=' .. URL.escape(input)
2016-04-27 01:37:55 +02:00
local output, res = HTTP.request(url)
2015-07-03 00:15:52 +02:00
2016-04-27 01:37:55 +02:00
if not output or res ~= 200 or output:len() == 0 then
2016-05-27 02:26:30 +02:00
url = 'http://api.biblia.com/v1/bible/content/KJVAPOC.txt?key=' .. config.biblia_api_key .. '&passage=' .. URL.escape(input)
2016-04-27 01:37:55 +02:00
output, res = HTTP.request(url)
end
2016-04-27 01:37:55 +02:00
if not output or res ~= 200 or output:len() == 0 then
2016-05-27 02:26:30 +02:00
output = config.errors.results
2015-07-03 00:15:52 +02:00
end
2016-04-27 01:37:55 +02:00
if output:len() > 4000 then
output = 'The text is too long to post here. Try being more specific.'
end
utilities.send_reply(self, msg, output)
2015-07-03 00:15:52 +02:00
end
return bible