725261fcf7
Relicense to AGPLv3, with consent of contributors. bindings.lua completely rewritten. Shift to multipart-post. Updated readme. New plugins: bing.lua, channel.lua. Removed plugins: floodcontrol.lua, librefm.lua. luarun.lua: Will now serialize returned tables. Aliased "/return" to "/lua return".
32 lines
750 B
Lua
Executable File
32 lines
750 B
Lua
Executable File
-- Requires that the "fortune" program is installed on your computer.
|
|
|
|
local fortune = {}
|
|
|
|
local utilities = require('utilities')
|
|
|
|
function fortune:init()
|
|
local s = io.popen('fortune'):read('*all')
|
|
if s:match('not found$') then
|
|
print('fortune is not installed on this computer.')
|
|
print('fortune.lua will not be enabled.')
|
|
return
|
|
end
|
|
|
|
fortune.triggers = utilities.triggers(self.info.username):t('fortune').table
|
|
end
|
|
|
|
fortune.command = 'fortune'
|
|
fortune.doc = '`Returns a UNIX fortune.`'
|
|
|
|
function fortune:action(msg)
|
|
|
|
local fortunef = io.popen('fortune')
|
|
local output = fortunef:read('*all')
|
|
output = '```\n' .. output .. '\n```'
|
|
utilities.send_message(self, msg.chat.id, output, true, nil, true)
|
|
fortunef:close()
|
|
|
|
end
|
|
|
|
return fortune
|