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

52 lines
1.2 KiB
Lua
Raw Normal View History

2015-12-17 17:54:04 +01:00
do
local makeOurDate = function(dateString)
local pattern = "(%d+)%-(%d+)%-(%d+)"
local year, month, day = dateString:match(pattern)
return day..'.'..month..'.'..year
end
local function get_post(post)
2016-01-31 19:08:28 +01:00
local url = 'https://ponywave.de/?json=get_recent_posts'
2015-12-17 17:54:04 +01:00
local res,code = https.request(url)
2016-01-31 19:08:28 +01:00
local data = json:decode(res).posts[1]
2015-12-17 17:54:04 +01:00
if code ~= 200 then return "HTTP-Fehler" end
if not data then return "HTTP-Fehler" end
2016-03-04 16:34:52 +01:00
local title = data.title
2015-12-17 17:54:04 +01:00
local from = data.author.name
local date = makeOurDate(data.date)
2016-03-04 16:34:52 +01:00
local content = string.match(data.excerpt, '<p>(.*)</p>')
2015-12-17 17:54:04 +01:00
local url = data.url
if data.thumbnail then
image_url = data.thumbnail
end
2016-03-04 16:34:52 +01:00
local text = unescape(title..' ('..from..' am '..date..')\n\n'..content)..'...\n'..url
2015-12-17 17:54:04 +01:00
2016-02-02 16:13:34 +01:00
if data.thumbnail then
2015-12-17 17:54:04 +01:00
return text, image_url
else
return text
end
end
local function run(msg, matches)
local text, image_url = get_post(post)
local receiver = get_receiver(msg)
if image_url then
local receiver = get_receiver(msg)
local file = download_to_file(image_url)
send_photo(receiver, file, ok_cb, false)
end
return text
end
return {
description = "Sendet letzten PonyWave Beitrag",
usage = "#pw",
patterns = {"^#[Pp][Ww]$"},
2015-12-17 17:54:04 +01:00
run = run
}
end