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/minecraft.lua

78 lines
2.6 KiB
Lua
Raw Normal View History

2015-05-11 20:04:09 +02:00
local usage = "/mine [IP]: Sucht Minecraft-Server und sendet Infos. Standard-Port: 25565, /mine [IP] [Port]: Sucht Minecraft-Server auf Port und sendet Infos."
local ltn12 = require "ltn12"
local function mineSearch(ip, port, receiver) --25565
local responseText = ""
local api = "https://api.syfaro.net/server/status"
local parameters = "?ip="..(URL.escape(ip) or "").."&port="..(URL.escape(port) or "").."&players=true&favicon=true"
local http = require("socket.http")
local respbody = {}
local body, code, headers, status = http.request{
url = api..parameters,
method = "GET",
redirect = true,
sink = ltn12.sink.table(respbody)
}
local body = table.concat(respbody)
2015-05-11 20:04:09 +02:00
if (status == nil) then return "FEHLER: status = nil" end
if code ~=200 then return "FEHLER: "..code..". Status: "..status end
local jsonData = json:decode(body)
responseText = responseText..ip..":"..port.." ->\n"
if (jsonData.motd ~= nil) then
local tempMotd = ""
tempMotd = jsonData.motd:gsub('%<25>.', '')
2015-05-11 20:04:09 +02:00
if (jsonData.motd ~= nil) then responseText = responseText.." MOTD: "..tempMotd.."\n" end
end
if (jsonData.online ~= nil) then
2015-05-11 20:04:09 +02:00
if jsonData.online == true then
server_online = "Ja"
else
server_online = "Nein"
end
responseText = responseText.." Online: "..server_online.."\n"
end
if (jsonData.players ~= nil) then
if (jsonData.players.max ~= nil) then
2015-05-11 20:04:09 +02:00
responseText = responseText.." Slots: "..jsonData.players.max.."\n"
end
if (jsonData.players.now ~= nil) then
2015-05-11 20:04:09 +02:00
responseText = responseText.." Spieler online: "..jsonData.players.now.."\n"
end
if (jsonData.players.sample ~= nil and jsonData.players.sample ~= false) then
2015-05-11 20:04:09 +02:00
responseText = responseText.." Spieler: "..table.concat(jsonData.players.sample, ", ").."\n"
end
end
if (jsonData.favicon ~= nil and false) then
2015-05-11 20:04:09 +02:00
--send_photo(receiver, jsonData.favicon) --(decode base64 and send)
end
return responseText
end
local function parseText(chat, text)
2015-05-11 20:04:09 +02:00
if (text == nil or text == "/mine") then
return usage
end
2015-05-11 20:04:09 +02:00
ip, port = string.match(text, "^/mine (.-) (.*)$")
if (ip ~= nil and port ~= nil) then
return mineSearch(ip, port, chat)
end
2015-05-11 20:04:09 +02:00
local ip = string.match(text, "^/mine (.*)$")
if (ip ~= nil) then
return mineSearch(ip, "25565", chat)
end
return "FEHLER: Keine Input IP?"
end
local function run(msg, matches)
local chat_id = tostring(msg.to.id)
local result = parseText(chat_id, msg.text)
return result
end
return {
2015-05-11 20:04:09 +02:00
description = "Dursucht Minecraft-Server und sendet Infos",
usage = usage,
patterns = {"^/mine (.*)$"},
run = run
}