fb9d3652f3
- self muss nicht mehr überall übergeben werden - alle Plugins wurden angepasst Eigene Updates: - abort_inline_query() hinzugefügt - Mehr Plugins zum Standard-Set hinzugefügt - Eventuell noch etwas, was ich vergessen hab
21 lines
582 B
Lua
21 lines
582 B
Lua
local images = {}
|
|
|
|
images.triggers = {
|
|
"(https?://[%w-_%%%.%?%.:,/%+=~&%[%]]+%.[Pp][Nn][Gg])$",
|
|
"(https?://[%w-_%%%.%?%.:,/%+=~&%[%]]+%.[Jj][Pp][Ee]?[Gg])$"
|
|
}
|
|
|
|
function images:action(msg, config, matches)
|
|
local url = matches[1]
|
|
local file, last_modified, nocache = get_cached_file(url, nil, msg.chat.id, 'upload_photo')
|
|
local result = utilities.send_photo(msg.chat.id, file, nil, msg.message_id)
|
|
|
|
if nocache then return end
|
|
if not result then return end
|
|
|
|
-- Cache File-ID und Last-Modified-Header in Redis
|
|
cache_file(result, url, last_modified)
|
|
end
|
|
|
|
return images
|