File size: 3,270 Bytes
d7c5875 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | local _tl_compat; if (tonumber((_VERSION or ''):match('[%d.]*$')) or 0) < 5.3 then local p, m = pcall(require, 'compat53.module'); if p then _tl_compat = m end end; local ipairs = _tl_compat and _tl_compat.ipairs or ipairs; local string = _tl_compat and _tl_compat.string or string
local admin_remove = {}
local cfg = require("luarocks.core.cfg")
local util = require("luarocks.util")
local dir = require("luarocks.dir")
local writer = require("luarocks.manif.writer")
local fs = require("luarocks.fs")
local cache = require("luarocks.admin.cache")
local index = require("luarocks.admin.index")
function admin_remove.add_to_parser(parser)
local cmd = parser:command("remove", "Remove a rock or rockspec from a rocks server.", util.see_also())
cmd:argument("rocks", "A local rockspec or rock file."):
args("+")
cmd:option("--server", "The server to use. If not given, the default server " ..
"set in the upload_server variable from the configuration file is used instead.")
cmd:flag("--no-refresh", "Do not refresh the local cache prior to " ..
"generation of the updated manifest.")
end
local function remove_files_from_server(refresh, rockfiles, server, upload_server)
local download_url, _login_url = cache.get_server_urls(server, upload_server)
local at = fs.current_dir()
local refresh_fn = refresh and cache.refresh_local_cache or cache.split_server_url
local local_cache, protocol, server_path, user, _password = refresh_fn(download_url, cfg.upload_user, cfg.upload_password)
if not local_cache then
return nil, protocol
end
local ok, err = fs.change_dir(at)
if not ok then return nil, err end
local nr_files = 0
for _, rockfile in ipairs(rockfiles) do
local basename = dir.base_name(rockfile)
local file = dir.path(local_cache, basename)
util.printout("Removing file " .. file .. "...")
fs.delete(file)
if not fs.exists(file) then
nr_files = nr_files + 1
else
util.printerr("Failed removing " .. file)
end
end
if nr_files == 0 then
return nil, "No files removed."
end
ok, err = fs.change_dir(local_cache)
if not ok then return nil, err end
util.printout("Updating manifest...")
writer.make_manifest(local_cache, "one", true)
util.printout("Updating index.html...")
index.make_index(local_cache)
if protocol == "file" then
local cmd = cfg.variables.RSYNC .. " " .. cfg.variables.RSYNCFLAGS .. " --delete " .. local_cache .. "/ " .. server_path .. "/"
util.printout(cmd)
fs.execute(cmd)
return true
end
if protocol ~= "rsync" then
return nil, "This command requires 'rsync', check your configuration."
end
local srv, path = server_path:match("([^/]+)(/.+)")
local cmd = cfg.variables.RSYNC .. " " .. cfg.variables.RSYNCFLAGS .. " --delete -e ssh " .. local_cache .. "/ " .. user .. "@" .. srv .. ":" .. path .. "/"
util.printout(cmd)
fs.execute(cmd)
return true
end
function admin_remove.command(args)
local server, server_table, err = cache.get_upload_server(args.server)
if not server then return nil, err end
return remove_files_from_server(not args.no_refresh, args.rocks, server, server_table)
end
return admin_remove
|