-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcget.lua
More file actions
450 lines (379 loc) · 10 KB
/
cget.lua
File metadata and controls
450 lines (379 loc) · 10 KB
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
--[[
CraftGet by Ale32bit
MIT License https://github.com/Ale32bit-CC/CraftGet/blob/master/LICENSE
]] --
local cget = {
_VERSION = "0.0.6",
_AUTHORS = {
"AlexDevs"
},
BASE_DIR = ".craftget",
cache = {},
sources = {},
packages = {},
binDir = "bin"
}
local SOURCES =
[[
# CraftGet sources list
# Each line is a source URL
# Comment with #
https://raw.githubusercontent.com/Ale32bit-CC/CraftGet/master/index.json
]]
local json = {
encode = textutils.serialiseJSON,
decode = textutils.unserialiseJSON
}
cget.cachePath = fs.combine(cget.BASE_DIR, "cache")
cget.packagesPath = fs.combine(cget.BASE_DIR, "packages")
cget.sourcesPath = fs.combine(cget.BASE_DIR, "sources")
local function fetch(url)
local h, err = http.get(url)
if not h then
return nil, err
end
local content = h.readAll()
h.close()
return content
end
local function wget(url, path)
local content, err = fetch(url)
if not content then
return false, err
end
local f = fs.open(path, "w")
f.write(content)
f.close()
return true
end
-- Setup config
if not fs.exists(cget.BASE_DIR) then
fs.makeDir(cget.BASE_DIR)
end
if not fs.exists(cget.cachePath) then
local f = fs.open(cget.cachePath, "w")
f.write("{}")
f.close()
end
if not fs.exists(cget.packagesPath) then
local f = fs.open(cget.packagesPath, "w")
f.write("{}")
f.close()
end
if not fs.exists(cget.sourcesPath) then
local f = fs.open(cget.sourcesPath, "w")
f.write(SOURCES)
f.close()
end
if not fs.exists(fs.combine(cget.BASE_DIR, "bin")) then
fs.makeDir(fs.combine(cget.BASE_DIR, "bin"))
end
local f = fs.open(cget.cachePath, "r")
cget.cache = textutils.unserialize(f.readAll())
f.close()
local f = fs.open(cget.packagesPath, "r")
cget.packages = textutils.unserialize(f.readAll())
f.close()
for line in io.lines(cget.sourcesPath) do
if line:sub(1, 1) ~= "#" then
table.insert(cget.sources, line)
end
end
if not fs.exists(cget.binDir) then
fs.makeDir(cget.binDir)
end
local function getPackage(address)
for k, v in ipairs(cget.cache) do
if v.meta.address == address then
return v
end
end
end
local function installPackage(address, force) -- install packages, recursive stuff
local pkg = getPackage(address)
if not force and cget.packages[address] then
if cget.packages[address].version == pkg.version then
return true
end
end
print("Installing " .. address)
if not pkg then
printError("Package " .. address .. " not found")
return false
end
if type(pkg.files) == "table" then
for path, url in pairs(pkg.files) do
local ok, err = wget(url, path)
if not ok then
printError("Cannot fetch " .. url .. ": " .. err)
end
end
end
cget.packages[address] = pkg
if type(pkg.dependencies) == "table" then
for _, dAddr in ipairs(pkg.dependencies) do
local dep = getPackage(dAddr)
if dep then
installPackage(dAddr)
else
printError("Dependency " .. dAddr .. " not found")
end
end
end
if type(pkg.autorun) == "table" then
for _, cmd in ipairs(pkg.autorun) do
if shell then
shell.run(cmd)
else
printError('Cannot execute "' .. cmd .. '": Shell not found')
end
end
end
local f = fs.open(cget.packagesPath, "w")
f.write(textutils.serialize(cget.packages))
f.close()
return true
end
local function sync()
print("Syncing with sources...")
local final = {}
for i, url in ipairs(cget.sources) do
print(i .. ": " .. url)
local source, err = fetch(url)
if source then
source = json.decode(source)
for maintainer, indexURL in pairs(source) do
local index, err = fetch(indexURL)
if index then
index = json.decode(index)
for name, pkg in pairs(index.packages) do
pkg.meta = {
name = name,
address = maintainer .. "/" .. name,
maintainer = maintainer
}
final[maintainer .. "/" .. name] = pkg -- Avoid duplicates
end
else
printError("Cannot fetch " .. indexURL .. ": " .. err)
end
end
else
printError("Cannot fetch: " .. err)
end
end
cget.cache = {}
for address, pkg in pairs(final) do
table.insert(cget.cache, pkg)
end
local f = fs.open(cget.cachePath, "w")
f.write(textutils.serialize(cget.cache))
f.close()
print("Updated " .. #cget.cache .. " entries")
end
local function install(...)
local args = {...}
if args[1] == "-S" then
sync()
local newArgs = {}
for i = 2, #args do
table.insert(newArgs, args[i])
end
args = newArgs
end
local requestedPackages = {}
for _, v in ipairs(args) do
requestedPackages[v] = true
end
local forceYes = requestedPackages["-y"] or false
requestedPackages["-y"] = nil
local packages = {}
local willInstall = {}
for name in pairs(requestedPackages) do
local possibilities = {}
for _, pkg in ipairs(cget.cache) do
if name == pkg.meta.address then
possibilities = {pkg}
break
elseif name == pkg.meta.name then
table.insert(possibilities, pkg)
end
end
local pkg
if #possibilities > 1 then
print("There are multiple packages with the same name.")
print("Pick the package you need:")
for i = 1, #possibilities do
print("- " .. i .. ": " .. possibilities[i].meta.address)
end
while true do
write("> ")
local input = tonumber(read())
if not input or not possibilities[input] then
printError("Invalid input")
else
pkg = possibilities[input]
print("Picked " .. possibilities[input].meta.address)
break
end
end
elseif #possibilities == 1 then
pkg = possibilities[1]
else
printError("Package " .. name .. " not found!")
pkg = nil
end
if pkg then
table.insert(packages, pkg.meta.address)
table.insert(willInstall, pkg.meta.name .. "@" .. pkg.version or "1.0.0")
end
end
if #packages == 0 then
print("No packages found")
return
end
if not forceYes then
print("The following packages will be installed: ")
print(" - " .. table.concat(willInstall, ", "))
print("Press ENTER to continue")
repeat
local _, key = os.pullEvent("key")
until key == keys.enter
end
for _, pkg in ipairs(packages) do
installPackage(pkg, true)
end
print("Installed " .. #packages .. " packages")
end
local function upgrade(...)
if select("#", ...) == 0 then
local packages = {}
for k in pairs(cget.packages) do
table.insert(packages, k)
end
install(unpack(packages))
else
install(...)
end
end
local function remove(...)
local args = {...}
local requestedPackages = {}
for _, v in ipairs(args) do
requestedPackages[v] = true
end
local forceYes = requestedPackages["-y"] or false
requestedPackages["-y"] = nil
local packages = {}
for name in pairs(requestedPackages) do
local possibilities = {}
for _, pkg in ipairs(cget.cache) do
if name == pkg.meta.address then
possibilities = {pkg}
break
elseif name == pkg.meta.name then
table.insert(possibilities, pkg)
end
end
local pkg
if #possibilities > 1 then
print("There are multiple packages with the same name.")
print("Pick the package you need to remove:")
for i = 1, #possibilities do
print("- " .. i .. ": " .. possibilities[i].meta.address)
end
while true do
write("> ")
local input = tonumber(read())
if not input or not possibilities[input] then
printError("Invalid input")
else
pkg = possibilities[input]
print("Picked " .. possibilities[input].meta.address)
break
end
end
elseif #possibilities == 1 then
pkg = possibilities[1]
else
printError("Package " .. name .. " not found!")
pkg = nil
end
if pkg then
table.insert(packages, pkg.meta.address)
end
end
if #packages == 0 then
print("No packages found")
return
end
if not forceYes then
print("The following packages will be removed: ")
print(" - " .. table.concat(packages, ", "))
print("Press ENTER to continue")
repeat
local _, key = os.pullEvent("key")
until key == keys.enter
end
for _, addr in ipairs(packages) do
local pkg = getPackage(addr)
if pkg then
if type(pkg.files) == "table" then
for path in pairs(pkg.files) do
fs.delete(path)
end
end
end
end
print("Removed " .. #packages .. " packages")
end
local function list()
local list = {}
for i, pkg in ipairs(cget.cache) do
table.insert(list, string.format("%d. %s @ %s", i, pkg.meta.address, pkg.version))
end
local _, h = term.getSize()
textutils.pagedPrint(table.concat(list, "\n"), h)
end
local function editSources()
shell.run("/rom/programs/edit.lua /.craftget/sources")
end
local function init()
shell.setPath(shell.path() .. ":/bin:/.craftget/bin")
shell.setAlias("craftget", "cget")
end
local commands
local function help()
print("Usage: cget <command> [args[, ...]]")
print("Available commands:")
for i, cmd in ipairs(commands) do
print("- " .. cmd[1] .. " " .. (cmd[3] or "[No usage specified]"))
end
end
local args = {...}
commands = {
{"help", help, "- Show this help message"},
{"update", sync, "- Update packages list from sources"},
{"install", install, "<package>... - Install packages"},
{"upgrade", upgrade, "[package, ...] - Upgrade packages to latest version"},
{"remove", remove, "<package>... - Remove packages"},
{"list", list, "- List packages in cache"},
{"edit", editSources, "- Edit sources file"},
{"init", init, "- Integrate with shell"}
}
print("CraftGet " .. cget._VERSION)
if #args < 1 then
help()
return
end
for i, cmd in ipairs(commands) do
if cmd[1] == args[1] then
local cmdArgs = {}
for i = 2, #args do
table.insert(cmdArgs, args[i])
end
cmd[2](unpack(cmdArgs))
return
end
end
print("Command not found")