1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- --Luanti
- --Copyright (C) 2023-24 rubenwardy
- --
- --This program is free software; you can redistribute it and/or modify
- --it under the terms of the GNU Lesser General Public License as published by
- --the Free Software Foundation; either version 2.1 of the License, or
- --(at your option) any later version.
- --
- --This program is distributed in the hope that it will be useful,
- --but WITHOUT ANY WARRANTY; without even the implied warranty of
- --MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- --GNU Lesser General Public License for more details.
- --
- --You should have received a copy of the GNU Lesser General Public License along
- --with this program; if not, write to the Free Software Foundation, Inc.,
- --51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- -- Screenshot
- local screenshot_dir = core.get_cache_path() .. DIR_DELIM .. "cdb"
- assert(core.create_dir(screenshot_dir))
- local screenshot_downloading = {}
- local screenshot_downloaded = {}
- local function get_filename(path)
- local parts = path:split("/")
- return parts[#parts]
- end
- local function get_file_extension(path)
- local parts = path:split(".")
- return parts[#parts]
- end
- function get_screenshot(package, screenshot_url, level)
- if not screenshot_url then
- return defaulttexturedir .. "no_screenshot.png"
- end
- -- Luanti only supports png and jpg
- local ext = get_file_extension(screenshot_url)
- if ext ~= "png" and ext ~= "jpg" then
- screenshot_url = screenshot_url:sub(0, -#ext - 1) .. "png"
- end
- -- Set thumbnail level
- screenshot_url = screenshot_url:gsub("/thumbnails/[0-9]+/", "/thumbnails/" .. level .. "/")
- screenshot_url = screenshot_url:gsub("/uploads/", "/thumbnails/" .. level .. "/")
- if screenshot_downloading[screenshot_url] then
- return defaulttexturedir .. "loading_screenshot.png"
- end
- local filepath = screenshot_dir .. DIR_DELIM ..
- ("%s-%s-%s-l%d-%s"):format(package.type, package.author, package.name,
- level, get_filename(screenshot_url))
- -- Return if already downloaded
- local file = io.open(filepath, "r")
- if file then
- file:close()
- return filepath
- end
- -- Show error if we've failed to download before
- if screenshot_downloaded[screenshot_url] then
- return defaulttexturedir .. "error_screenshot.png"
- end
- -- Download
- local function download_screenshot(params)
- return core.download_file(params.url, params.dest)
- end
- local function callback(success)
- screenshot_downloading[screenshot_url] = nil
- screenshot_downloaded[screenshot_url] = true
- if not success then
- core.log("warning", "Screenshot download failed for some reason")
- end
- ui.update()
- end
- if core.handle_async(download_screenshot,
- { dest = filepath, url = screenshot_url }, callback) then
- screenshot_downloading[screenshot_url] = true
- else
- core.log("error", "ERROR: async event failed")
- return defaulttexturedir .. "error_screenshot.png"
- end
- return defaulttexturedir .. "loading_screenshot.png"
- end
|