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/images.lua
2015-03-04 23:22:00 +01:00

21 lines
437 B
Lua

do
function run(msg, matches)
local url = matches[1]
local receiver = get_receiver(msg)
send_photo_from_url(receiver, url)
end
return {
description = "When user sends image URL (ends with png, jpg, jpeg) download and send it to origin.",
usage = "",
patterns = {
"(https?://[%w-_%.%?%.:/%+=&]+%.png)$",
"(https?://[%w-_%.%?%.:/%+=&]+%.jpg)$",
"(https?://[%w-_%.%?%.:/%+=&]+%.jpeg)$",
},
run = run
}
end