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

37 lines
1.0 KiB
Lua

local twitch = {}
twitch.triggers = {
"twitch.tv/([A-Za-z0-9-_-]+)"
}
local BASE_URL = 'https://api.twitch.tv'
function twitch:send_twitch_info(twitch_name)
local url = BASE_URL..'/kraken/channels/'..twitch_name
local res,code = https.request(url)
if code ~= 200 then return "HTTP-FEHLER" end
local data = json.decode(res)
local display_name = data.display_name
local name = data.name
if not data.game then
game = 'nichts'
else
game = data.game
end
local status = data.status
local views = comma_value(data.views)
local followers = comma_value(data.followers)
local text = '*'..display_name..'* ('..name..') streamt *'..game..'*\n'..status..'\n_'..views..' Zuschauer insgesamt und '..followers..' Follower_'
return text
end
function twitch:action(msg, config, matches)
local text = twitch:send_twitch_info(matches[1])
if not text then utilities.send_reply(msg, config.errors.connection) return end
utilities.send_reply(msg, text, true)
end
return twitch