-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.lua
333 lines (292 loc) · 10.6 KB
/
install.lua
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
--- Simple program to be used as an installer script. Copy to repos and insert what is needed.
local to_get = {
"extern:main.lua:https://raw.githubusercontent.com/Fatboychummy-CC/Simplify-Mapping/main/main.lua",
"extern:mapping/block_movement.lua:https://raw.githubusercontent.com/Fatboychummy-CC/Simplify-Mapping/main/mapping/block_movement.lua",
"extern:mapping/block_state.lua:https://raw.githubusercontent.com/Fatboychummy-CC/Simplify-Mapping/main/mapping/block_state.lua",
"extern:mapping/file_io.lua:https://raw.githubusercontent.com/Fatboychummy-CC/Simplify-Mapping/main/mapping/file_io.lua",
"extern:mapping/init.lua:https://raw.githubusercontent.com/Fatboychummy-CC/Simplify-Mapping/main/mapping/init.lua",
"extern:mapping/scanners/ap.lua:https://raw.githubusercontent.com/Fatboychummy-CC/Simplify-Mapping/main/mapping/scanners/ap.lua",
"extern:mapping/scanners/init.lua:https://raw.githubusercontent.com/Fatboychummy-CC/Simplify-Mapping/main/mapping/scanners/init.lua",
"extern:mapping/scanners/plethora.lua:https://raw.githubusercontent.com/Fatboychummy-CC/Simplify-Mapping/main/mapping/scanners/plethora.lua",
"extern:tests/craftos-pc/test_map.lua:https://raw.githubusercontent.com/Fatboychummy-CC/Simplify-Mapping/main/tests/craftos-pc/test_map.lua",
"extern:tests/ingame/test_save_load.lua:https://raw.githubusercontent.com/Fatboychummy-CC/Simplify-Mapping/main/tests/ingame/test_save_load.lua",
"extern:install.lua:https://raw.githubusercontent.com/Fatboychummy-CC/Simplify-Mapping/main/install.lua",
"extern:mapping/scanners/shim_base.lua:https://raw.githubusercontent.com/Fatboychummy-CC/Simplify-Mapping/main/mapping/scanners/shim_base.lua",
}
local program_name = "Simplify Mapping"
local pinestore_id = 60 -- Set this to the ID of the pinestore project if you wish to note to pinestore that a download has occurred.
-- #################
-- Advanced settings
-- #################
-- Set this to true if you wish to use the diffs to determine which files to
-- download. Otherwise, it will download all files in `to_get`.
-- Explanation of diffs is below.
local use_diffs = true
-- The 'diffs' are used to determine which files are needed to download for
-- whichever version of the program you wish to install.
-- The key is the name of the version you wish to install, and the table it
-- resolves to should be filled with strings containing either the name of
-- another diff, a + followed by the index in `to_get` of the file you wish to
-- download, or a - followed by the index in `to_get` of the file you wish to
-- not download (if including other diffs that have a file you don't want).
-- You can also use "all" to include all files.
-- # Note: Diffs are resolved breadth-first.
-- # You can use ranges to include multiple files (i.e: '+1-3' to include 1 to 3).
local diffs = {
lib_only_no_mapping = {
"+2-5",
},
lib_only_with_mapping = {
"lib_only_no_mapping",
"+6-8",
},
tests = {
"lib_only_with_mapping",
"+1",
"+9-10"
},
all = {
"all"
}
}
--[[
What version do you wish to install?
- lib_only
- tests
- all
- all_but_one
>
]]
-- #########################################
local RAW_URL_LIBRARIES = "https://raw.githubusercontent.com/Fatboychummy-CC/Libraries/main/"
local RAW_URL_PROGRAMS = "https://raw.githubusercontent.com/Fatboychummy-CC/etc-programs/main/"
local PASTE_URL = "https://pastebin.com/raw/"
local PINESTORE_ROOT = "https://pinestore.cc/"
local PINESTORE_PROJECT_ENDPOINT = PINESTORE_ROOT .. "api/project/"
local PINESTORE_DOWNLOAD_ENDPOINT = PINESTORE_ROOT .. "api/log/download"
local p_dir = ... or shell.dir()
local completion_choice = require "cc.completion".choice
local function print_warning(...)
term.setTextColor(colors.orange)
print(...)
term.setTextColor(colors.white)
end
local function parse_pinestore_response(data)
local success, response = pcall(textutils.unserializeJSON, data)
if not success or not response then
print_warning("Failed to parse response from pinestore.")
return false
end
if response and not response.success then
print_warning("Failed to get information from pinestore.")
print_warning(response.error)
return false
end
return response
end
local function download_file(url, filename)
print("Downloading", filename)
local h_handle, err = http.get(url) --[[@as Response]]
if h_handle then
local data = h_handle.readAll()
h_handle.close()
local f_handle, err2 = fs.open(fs.combine(p_dir, filename), 'w') --[[@as WriteHandle]]
if f_handle then
f_handle.write(data)
f_handle.close()
print("Done.")
return
end
printError(url)
error(("Failed to write file: %s"):format(err2), 0)
end
printError(url)
error(("Failed to connect: %s"):format(err), 0)
end
local function get_version_to_download()
if use_diffs then
print("What version do you wish to install?")
local versions = {}
for k in pairs(diffs) do
print("-", k)
table.insert(versions, k)
end
write("> ")
local version = read(nil, nil, function(partial)
return completion_choice(partial, versions) --[[@as string[] ]]
end)
if diffs[version] then
return version
else
printError("Invalid version.")
return get_version_to_download()
end
else
return "all"
end
end
--- Calculate what files are needed to download.
local function calculate_diffs(version)
local files = {}
if not version or not diffs[version] then
printError("Invalid version: " .. tostring(version))
error("Invalid version.", 0)
end
local seen_diffs = {}
local to_resolve = {}
--- Resolve a single diff.
---@param diff table<string> The diff to resolve.
local function resolve_diff(diff)
if seen_diffs[diff] then
print_warning(("Multiple references to diff '%s'. This is probably fine, but if this warning is being spammed you have a loop."):format(diff))
end
seen_diffs[diff] = true
for i, v in ipairs(diff) do
if v == "all" then
for j = 1, #to_get do
files[j] = true
end
elseif v:match("^%+") then
local index = tonumber(v:sub(2))
if index then
files[index] = true
else
local i1, i2 = v:match("^%+(%d+)%-(%d+)$")
i1 = tonumber(i1)
i2 = tonumber(i2)
if i1 and i2 then
for j = i1, i2 do
files[j] = true
end
else
error(("Invalid index in diff: %s, position %d"):format(v, i), 0)
end
end
elseif v:match("^-") then
local index = tonumber(v:sub(2))
if index then
files[index] = false
else
local i1, i2 = v:match("^%-(%d+)%-(%d+)$")
i1 = tonumber(i1)
i2 = tonumber(i2)
if i1 and i2 then
for j = i1, i2 do
files[j] = false
end
else
error(("Invalid index in diff: %s, position %d"):format(v, i), 0)
end
end
elseif diffs[v] then
-- We will fully resolve this diff before moving on to any "child" diffs.
table.insert(to_resolve, v)
else
error(("Invalid diff: %s"):format(v), 0)
end
end
end
to_resolve[1] = version
while #to_resolve > 0 do
local diff = table.remove(to_resolve, 1)
resolve_diff(diffs[diff])
end
-- Convert files to a list
local to_return = {}
for i = 1, #to_get do
if files[i] then
table.insert(to_return, to_get[i])
end
end
return to_return
end
local function get(...)
local remotes = table.pack(...)
for i = 1, remotes.n do
local remote = remotes[i]
local extern_file, extern_url = remote:match("^extern:(.-):(.+)$")
local paste_file, paste = remote:match("^paste:(.-):(.+)$")
local local_file, remote_file = remote:match("^L:(.-):(.+)$")
local use_libraries = true
if not local_file then
local_file, remote_file = remote:match("^E:(.-):(.+)$")
use_libraries = false
end
if extern_file then
-- downlaod from external location
download_file(extern_url, extern_file)
elseif paste_file then
-- download from pastebin
local cb = ("%x"):format(math.random(0, 1000000))
download_file(PASTE_URL .. textutils.urlEncode(paste) .. "?cb=" .. cb, paste_file)
elseif local_file then
-- download from main repository.
if use_libraries then
download_file(RAW_URL_LIBRARIES .. remote_file, local_file)
else
download_file(RAW_URL_PROGRAMS .. remote_file, local_file)
end
else
error(("Could not determine information for '%s'"):format(remote), 0)
end
end
end
-- Installation is from the installer's directory.
if p_dir:match("^rom") then
error("Attempting to install to the ROM. Please rerun but add arguments for install location (or run the installer script in the folder you wish to install to).", 0)
end
print(("You are about to install %s."):format(program_name))
-- Get the short description of the project from pinestore (if it exists).
if pinestore_id then
local handle = http.get(PINESTORE_PROJECT_ENDPOINT .. tostring(pinestore_id))
if handle then
local data = parse_pinestore_response(handle.readAll())
handle.close()
if data then
if type(data) == "table" and data.project and data.project.description_short then
term.setTextColor(colors.white)
write("Description from ")
term.setTextColor(colors.green)
write("PineStore")
term.setTextColor(colors.white)
print(":")
print(data.project.description_short .. '\n')
end
end
else
print_warning("Failed to connect to PineStore. Installation will continue, but no description can be provided.")
end
end
write(("Going to install to:\n /%s\n\nIs this where you want it to be installed? (y/n): "):format(fs.combine(p_dir, "/*")))
local key
repeat
local _, _key = os.pullEvent("key")
key = _key
until key == keys.y or key == keys.n
if key == keys.y then
print("y")
sleep()
local version = get_version_to_download()
local actual_to_get = calculate_diffs(version)
print(("Installing %s."):format(program_name))
get(table.unpack(actual_to_get))
if type(pinestore_id) == "number" then
local handle, err = http.post(
PINESTORE_DOWNLOAD_ENDPOINT,
textutils.serializeJSON({
projectId = pinestore_id,
}),
{["Content-Type"] = "application/json"}
)
if handle then
parse_pinestore_response(handle.readAll())
handle.close()
else
print_warning("Failed to connect to pinestore:", err)
end
end
else
print("n")
sleep()
error("Installation cancelled.", 0)
end