aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAdam Harrison <adamdharrison@gmail.com>2024-03-31 17:02:55 -0400
committerAdam Harrison <adamdharrison@gmail.com>2024-03-31 17:02:55 -0400
commit3145a7624adfb632245aa8bed9e39a727adf25cc (patch)
tree5720de067962e2faf2e5f1e39c7ca8711c740082 /src
parent388c1937c2990d5690cf3a8714a9d25ba1c7a4c1 (diff)
downloadlite-xl-plugin-manager-3145a7624adfb632245aa8bed9e39a727adf25cc.tar.gz
lite-xl-plugin-manager-3145a7624adfb632245aa8bed9e39a727adf25cc.zip
Added in complex plugins, as well as split up command and run.
Diffstat (limited to 'src')
-rw-r--r--src/lpm.lua28
1 files changed, 21 insertions, 7 deletions
diff --git a/src/lpm.lua b/src/lpm.lua
index 14ce0fc..8f70dce 100644
--- a/src/lpm.lua
+++ b/src/lpm.lua
@@ -3,7 +3,7 @@ function global(g) if #g > 0 then for i,v in ipairs(g) do rawset(_S, g[i], true)
setmetatable(_G, { __index = function(t, k) if not rawget(_S, k) then error("cannot get undefined global variable: " .. k, 2) end end, __newindex = function(t, k, v) if rawget(_S, k) then rawset(t, k, v) else error("cannot set global variable: " .. k, 2) end end })
-- Begin rxi JSON library.
-local json = { _version = "0.1.2" }
+global({ json = { _version = "0.1.2" } })
local encode
local escape_char_map = {
[ "\\" ] = "\\",
@@ -2135,7 +2135,7 @@ function lpm.setup()
if REPOSITORY then repositories = common.map(type(REPOSITORY) == "table" and REPOSITORY or { REPOSITORY }, function(url) local repo = Repository.url(url) repo:parse_manifest() return repo end) end
end
-function lpm.run_command(ARGS)
+function lpm.command(ARGS)
if not ARGS[2]:find("%S") then return
elseif ARGS[2] == "init" then return
elseif ARGS[2] == "repo" and ARGS[3] == "add" then lpm.repo_add(table.unpack(common.slice(ARGS, 4)))
@@ -2168,8 +2168,15 @@ function lpm.run_command(ARGS)
elseif ARGS[2] == "run" then return lpm.lite_xl_run(table.unpack(common.slice(ARGS, 3)))
elseif ARGS[2] == "switch" then return lpm.lite_xl_switch(table.unpack(common.slice(ARGS, 3)))
elseif ARGS[2] == "purge" then lpm.purge()
- else error("unknown command: " .. ARGS[2]) end
- if JSON then
+ else return false end
+ return true
+end
+
+function lpm.run(ARGS)
+ local result = lpm.command(ARGS)
+ if result == false then
+ error("unknown command: " .. ARGS[2])
+ elseif result == true and JSON then
io.stdout:write(json.encode({ actions = actions, warnings = warnings }))
end
end
@@ -2566,7 +2573,14 @@ not commonly used publically.
end
local lpm_plugins_path = HOME .. PATHSEP .. ".config" .. PATHSEP .. "lpm" .. PATHSEP .. "plugins"
- local lpm_plugins = system.stat(lpm_plugins_path) and common.map(common.grep(system.ls(lpm_plugins_path), function(path) return path:find("%.lua$") end), function(path) return lpm_plugins_path .. PATHSEP .. path end) or {}
+ local lpm_plugins = {}
+ if system.stat(lpm_plugins_path) then
+ local files = system.ls(lpm_plugins_path)
+ lpm_plugins = common.concat(
+ common.map(common.grep(files, function(path) return path:find("%.lua$") end), function(path) return lpm_plugins_path .. PATHSEP .. path end),
+ common.grep(common.map(common.grep(files, function(path) return not path:find("%.lua$") end), function(path) return lpm_plugins_path .. PATHSEP .. path .. PATHSEP .. "init.lua" end), function(path) system.stat(path) end)
+ )
+ end
local env = setmetatable({}, { __index = _G, __newindex = function(t, k, v) _G[k] = v end })
for i,v in ipairs(common.concat(ARGS["plugin"] or {}, { common.split(",", os.getenv("LPM_PLUGINS") or "") }, lpm_plugins)) do
@@ -2668,7 +2682,7 @@ not commonly used publically.
if ARGS[2] ~= '-' then
local res
engage_locks(function()
- res = lpm.run_command(ARGS)
+ res = lpm.run(ARGS)
end, error_handler, lock_warning)
if res then
res()
@@ -2688,7 +2702,7 @@ not commonly used publically.
xpcall(function()
local res
engage_locks(function()
- res = lpm.run_command(args)
+ res = lpm.run(args)
end, error_handler, lock_warning)
if res then
res()