44 lines
1.2 KiB
Lua
44 lines
1.2 KiB
Lua
local preview = {}
|
|
|
|
local HTTP = require('socket.http')
|
|
local utilities = require('otouto.utilities')
|
|
|
|
preview.command = 'preview <link>'
|
|
|
|
function preview:init(config)
|
|
preview.triggers = utilities.triggers(self.info.username, config.cmd_pat):t('preview', true).table
|
|
preview.doc = config.cmd_pat .. 'preview <link> \nReturns a full-message, "unlinked" preview.'
|
|
end
|
|
|
|
function preview:action(msg)
|
|
|
|
local input = utilities.input_from_msg(msg)
|
|
if not input then
|
|
utilities.send_reply(self, msg, preview.doc, true)
|
|
return
|
|
end
|
|
|
|
input = utilities.get_word(input, 1)
|
|
if not input:match('^https?://.+') then
|
|
input = 'http://' .. input
|
|
end
|
|
|
|
local res = HTTP.request(input)
|
|
if not res then
|
|
utilities.send_reply(self, msg, 'Please provide a valid link.')
|
|
return
|
|
end
|
|
|
|
if res:len() == 0 then
|
|
utilities.send_reply(self, msg, 'Sorry, the link you provided is not letting us make a preview.')
|
|
return
|
|
end
|
|
|
|
-- Invisible zero-width, non-joiner.
|
|
local output = '<a href="' .. input .. '">' .. utilities.char.zwnj .. '</a>'
|
|
utilities.send_message(self, msg.chat.id, output, false, nil, 'html')
|
|
|
|
end
|
|
|
|
return preview
|