I am developing a lightroom plugin and have a requirement to update the plugin with the plugin manager. I am storing all the plugin versions on the server in a zip file. Now I wanted to download and extract that file to the plugin directory. I can download that zip file on the plugin directory but don't have an idea to extract that zip file. The plugin is compatible with windows and mac so I need some solution that can extract that plugin file into the plugin directory. Below is the code for downloading the zip file.
local downloadButton = f:push_button { -- create button
enabled = bind 'downloadButton',
visible = false,
title = "Download",
bind_to_object = prefs,
action = function( button )
local headers = {
{ field = 'Content-Type', value = "application/json" }
}
LrTasks.startAsyncTask(
function()
local url = "https://WEBSITEPATH/assets/plugins/staging/1.3.5/BatchAI.lrdevplugin.zip"
local response, hdrs = LrHttp.get(url,headers)
local saveFile = assert(io.open(downloadPath .. "BatchAI.lrdevplugin", 'wb'))
saveFile:write(response)
saveFile:close()
LrDialogs.message('Plugin updated')
end
)
end
}
If anyone has a solution on how to extract the zip file or any other solution to update the plugin withing the plugin manager, please share your thoughts here. Thank you.
Have you considered doing it via a shell command using LrTasks.execute(cmd)? You can then use LrPathUtils and LrFileUtils namespaces of the Lightroom API for copying/moving/deleting files as needed.
MacOS has native unzip support:
In Windows 10, PowerShell can do it using "Expand-Archive" cmdlet, available in PowerShell version V5+, which is installed by default in Windows 10.
Windows 10 using PowerShell v5+:
or if you want to be more precise:
or when called through LrTasks.execute(cmd):
But, since April 2018, Windows 10 has tar support, available in both the Command Prompt and PowerShell, bringing Windows 10 in line with MacOS and Linux, making everything more convenient:
or the (more clear) long form:
That said, a good practice is to check for the existence of a command in Windows and take further steps accordingly.
In the Command Prompt, you can check if a command exists using WHERE:
If command exists, it will return the path of the executable, if it doesn't, it will return a message to that effect.
In PowerShell, you can check if a command exists using Get-Command:
If command exists, PowerShell will display the version of it, or an error otherwise:
In any cases, Lightroom's LrTasks.execute(cmd) will return the exit status of the OS shell command, which is 0 for success or 1 (or some other numbers) if erros or not found:
Here's a sample gist I made for this, for checking for a command support using Lua and the Lightroom SDK: https://gist.github.com/27shutterclicks/6fb07c58d3bc5477612c6e0257d20e6f
My own preference is to stick with tar since it allows for the same command across operating systems, with the added benefit of a special feature that allows for the removal of the root folder of an archive:
This is useful when downloading release packages from GitHub which creates archives that include the repo name and version as the root folder.