21 lines
437 B
Lua
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
|