aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Harrison <adamdharrison@gmail.com>2024-03-02 23:41:13 -0500
committerAdam Harrison <adamdharrison@gmail.com>2024-03-02 23:41:13 -0500
commit1b294574518b43cd8a786e6f380ff7869c5250e1 (patch)
tree0ce0df2723254fad7e78908bb72a2befaac90be1
parent134c144ab7deceafa14eed60722ae3604917ea92 (diff)
downloadlite-xl-plugin-manager-1b294574518b43cd8a786e6f380ff7869c5250e1.tar.gz
lite-xl-plugin-manager-1b294574518b43cd8a786e6f380ff7869c5250e1.zip
Added in ability to self-upgrade.
-rw-r--r--src/lpm.c25
-rw-r--r--src/lpm.lua55
2 files changed, 57 insertions, 23 deletions
diff --git a/src/lpm.c b/src/lpm.c
index e287808..c969f1e 100644
--- a/src/lpm.c
+++ b/src/lpm.c
@@ -1289,14 +1289,6 @@ static const luaL_Reg system_lib[] = {
{ NULL, NULL }
};
-
-#ifndef LPM_VERSION
- #define LPM_VERSION "unknown"
-#endif
-#ifndef LPM_DEFAULT_REPO
- #define LPM_DEFAULT_REPOSITORY "https://github.com/lite-xl/lite-xl-plugin-manager.git:latest"
-#endif
-
#ifndef ARCH_PROCESSOR
#if defined(__x86_64__) || defined(_M_AMD64) || defined(__MINGW64__)
#define ARCH_PROCESSOR "x86_64"
@@ -1331,6 +1323,21 @@ static const luaL_Reg system_lib[] = {
#define LITE_ARCH_TUPLE ARCH_PROCESSOR "-" ARCH_PLATFORM
#endif
+
+#ifndef LPM_VERSION
+ #define LPM_VERSION "unknown"
+#endif
+#ifndef LPM_DEFAULT_REPOSITORY
+ #define LPM_DEFAULT_REPOSITORY "https://github.com/lite-xl/lite-xl-plugin-manager.git:latest"
+#endif
+#ifndef LPM_DEFAULT_RELEASE
+ #if _WIN32
+ #define LPM_DEFAULT_RELEASE "https://github.com/lite-xl/lite-xl-plugin-manager/releases/download/%r/lpm." LITE_ARCH_TUPLE ".exe"
+ #else
+ #define LPM_DEFAULT_RELEASE "https://github.com/lite-xl/lite-xl-plugin-manager/releases/download/%r/lpm." LITE_ARCH_TUPLE
+ #endif
+#endif
+
#ifdef LPM_STATIC
extern const char lpm_luac[];
extern unsigned int lpm_luac_len;
@@ -1363,6 +1370,8 @@ int main(int argc, char* argv[]) {
lua_setglobal(L, "ARCH");
lua_pushliteral(L, LPM_DEFAULT_REPOSITORY);
lua_setglobal(L, "DEFAULT_REPO_URL");
+ lua_pushliteral(L, LPM_DEFAULT_RELEASE);
+ lua_setglobal(L, "DEFAULT_RELEASE_URL");
#ifndef LPM_STATIC
if (luaL_loadfile(L, "src/lpm.lua") || lua_pcall(L, 0, 1, 0)) {
#else
diff --git a/src/lpm.lua b/src/lpm.lua
index 956a9f5..a87dfbe 100644
--- a/src/lpm.lua
+++ b/src/lpm.lua
@@ -581,6 +581,21 @@ function common.get(source, target, checksum, callback, depth)
end
+-- Determines whether two addons located at different paths are actually different based on their contents.
+-- If path1 is a directory, will still return true if it's a subset of path2 (accounting for binary downloads).
+function common.is_path_different(path1, path2)
+ local stat1, stat2 = system.stat(path1), system.stat(path2)
+ if not stat1 or not stat2 or stat1.type ~= stat2.type or (stat1 == "file" and stat1.size ~= stat2.size) then return true end
+ if stat1.type == "dir" then
+ for i, file in ipairs(system.ls(path1)) do
+ if not common.basename(file):find("^%.") and Addon.is_path_different(path1 .. PATHSEP .. file, path2 .. PATHSEP.. file) then return true end
+ end
+ return false
+ end
+ return system.hash(path1, "file") ~= system.hash(path2, "file")
+end
+
+
local function compare_version(a, b) -- compares semver
if not a or not b then return false end
@@ -683,25 +698,11 @@ function Addon:unstub()
return repo
end
--- Determines whether two addons located at different paths are actually different based on their contents.
--- If path1 is a directory, will still return true if it's a subset of path2 (accounting for binary downloads).
-function Addon.is_path_different(path1, path2)
- local stat1, stat2 = system.stat(path1), system.stat(path2)
- if not stat1 or not stat2 or stat1.type ~= stat2.type or (stat1 == "file" and stat1.size ~= stat2.size) then return true end
- if stat1.type == "dir" then
- for i, file in ipairs(system.ls(path1)) do
- if not common.basename(file):find("^%.") and Addon.is_path_different(path1 .. PATHSEP .. file, path2 .. PATHSEP.. file) then return true end
- end
- return false
- end
- return system.hash(path1, "file") ~= system.hash(path2, "file")
-end
-
function Addon.is_addon_different(downloaded_path, installed_path)
local is_downloaded_single = downloaded_path:find("%.lua$")
local is_installed_single = installed_path:find("%.lua$")
local target = is_downloaded_single and not is_installed_single and installed_path .. PATHSEP .. "init.lua" or installed_path
- return Addon.is_path_different(downloaded_path, target)
+ return common.is_path_different(downloaded_path, target)
end
function Addon:get_install_path(bottle)
@@ -1978,6 +1979,26 @@ local function lpm_addon_upgrade()
end
end
+local function lpm_self_upgrade(release)
+ local path = system.stat(ARGV[1]) and ARGV[1] or common.path(ARGV[1])
+ if not path then error("can't find path to lpm") end
+ local release_url = release and release:find("^https://") and release or (DEFAULT_RELEASE_URL:gsub("%%r", release or "latest"))
+ local stat = system.stat(path)
+ if not stat then error("can't find lpm at " .. path) end
+ local status, err = pcall(common.get, release_url, TMPDIR .. PATHSEP .. "lpm.upgrade", nil, write_progress_bar)
+ if not status then error("can't find release for lpm at " .. release_url .. (VERBOSE and (": " .. err) or "")) end
+ if common.is_path_different(path .. ".new", path) then
+ status, err = pcall(common.rename, path, path .. ".bak")
+ if not status then error("can't move lpm executable; do you need to " .. (PLATFOM == "windows" and "run as administrator" or "be root") .. "?" .. (VERBOSE and ": " .. err or "")) end
+ common.rename(TMPDIR .. PATHSEP .. "lpm.upgrade", path)
+ system.chmod(path, stat.mode)
+ common.rmrf(path .. ".bak")
+ else
+ log_warning("aborting upgrade; remote executable is identical to current")
+ common.rmrf(path .. ".new")
+ end
+end
+
local function lpm_bottle_purge()
common.rmrf(CACHEDIR .. PATHSEP .. "bottles")
end
@@ -2035,6 +2056,7 @@ local function run_command(ARGS)
elseif (ARGS[2] == "plugin" or ARGS[2] == "color" or ARGS[2] == "library" or ARGS[2] == "font") and ARGS[3] == "reinstall" then lpm_addon_reinstall(ARGS[2], table.unpack(common.slice(ARGS, 4)))
elseif (ARGS[2] == "plugin" or ARGS[2] == "color" or ARGS[2] == "library" or ARGS[2] == "font") and (#ARGS == 2 or ARGS[3] == "list") then return lpm_addon_list(ARGS[2], ARGS[4], ARGS)
elseif ARGS[2] == "upgrade" then return lpm_addon_upgrade(table.unpack(common.slice(ARGS, 3)))
+ elseif ARGS[2] == "self-upgrade" then return lpm_self_upgrade(table.unpack(common.slice(ARGS, 3)))
elseif ARGS[2] == "install" then lpm_install(nil, table.unpack(common.slice(ARGS, 3)))
elseif ARGS[2] == "unstub" then return lpm_unstub(nil, table.unpack(common.slice(ARGS, 3)))
elseif ARGS[2] == "uninstall" then lpm_addon_uninstall(nil, table.unpack(common.slice(ARGS, 3)))
@@ -2133,6 +2155,9 @@ It has the following commands:
lpm upgrade Upgrades all installed addons
to new version if applicable.
+ lpm self-upgrade [version] Upgrades lpm to a new version,
+ if applicable. Defaults to
+ latest.
lpm [lite-xl] install <version> Installs lite-xl. Infers the
[binary] [datadir] paths on your system if not
supplied. Automatically