2015-05-23 16:37:42 +02:00
|
|
|
do
|
|
|
|
|
2015-05-24 14:54:03 +02:00
|
|
|
local images_enabled = true;
|
|
|
|
|
|
|
|
local function get_sprite(path)
|
|
|
|
local url = "http://pokeapi.co/"..path
|
|
|
|
print(url)
|
|
|
|
local b,c = http.request(url)
|
|
|
|
local data = json:decode(b)
|
|
|
|
local image = data.image
|
|
|
|
return image
|
|
|
|
end
|
|
|
|
|
|
|
|
local function callback(extra)
|
|
|
|
send_msg(extra.receiver, extra.text, ok_cb, false)
|
|
|
|
end
|
|
|
|
|
|
|
|
local function send_pokemon(query, receiver)
|
2015-05-23 16:37:42 +02:00
|
|
|
local url = "http://pokeapi.co/api/v1/pokemon/" .. query .. "/"
|
|
|
|
local b,c = http.request(url)
|
|
|
|
local pokemon = json:decode(b)
|
|
|
|
|
|
|
|
if pokemon == nil then
|
2015-05-23 17:23:57 +02:00
|
|
|
return 'Kein Pokemon gefunden.'
|
2015-05-23 16:37:42 +02:00
|
|
|
end
|
2015-05-24 14:54:03 +02:00
|
|
|
|
|
|
|
local text = 'Pokédex ID: ' .. pokemon.pkdx_id
|
|
|
|
..'\nName: ' .. pokemon.name
|
|
|
|
..'\nGewicht: ' .. pokemon.weight
|
|
|
|
..'\nGröße: ' .. pokemon.height
|
|
|
|
..'\nSpeed: ' .. pokemon.speed
|
|
|
|
..'\nSpezies: ' .. pokemon.species
|
|
|
|
|
|
|
|
local image = nil
|
|
|
|
|
|
|
|
if images_enabled and pokemon.sprites and pokemon.sprites[1] then
|
|
|
|
local sprite = pokemon.sprites[1].resource_uri
|
|
|
|
image = get_sprite(sprite)
|
|
|
|
end
|
|
|
|
|
|
|
|
if image then
|
|
|
|
image = "http://pokeapi.co"..image
|
|
|
|
local extra = {
|
|
|
|
receiver = receiver,
|
|
|
|
text = text
|
|
|
|
}
|
|
|
|
send_photo_from_url(receiver, image, callback, extra)
|
|
|
|
else
|
|
|
|
return text
|
|
|
|
end
|
2015-05-23 16:37:42 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
local function run(msg, matches)
|
2015-05-24 14:54:03 +02:00
|
|
|
local receiver = get_receiver(msg)
|
|
|
|
local query = URL.escape(matches[1])
|
|
|
|
return send_pokemon(query, receiver)
|
2015-05-23 16:37:42 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
return {
|
2015-05-23 17:23:57 +02:00
|
|
|
description = "Pokedex für Telegram",
|
2015-05-24 14:54:03 +02:00
|
|
|
usage = {"/pokedex [Name/ID]","/pokemon [Name/ID]","/pkmn [Name/ID]"},
|
|
|
|
patterns = {"^/pokedex (.*)$","^/pokemon (.+)$","^/pkmn (.+)$"},
|
2015-05-23 16:37:42 +02:00
|
|
|
run = run
|
2015-05-24 14:54:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
end
|