First attempt at writing the installer

This commit is contained in:
Kodi Craft 2025-03-25 15:18:32 +01:00
commit e87d00fce2
Signed by: kodi
GPG Key ID: 69D9EED60B242822
4 changed files with 111 additions and 0 deletions

7
index.json Normal file
View File

@ -0,0 +1,7 @@
[
{
"src": "src/startup.lua",
"dest": "/startup.lua",
"hash": "07219cd9561b41ce1f39209958076c471b17855679c968b42767b0122423c782"
}
]

93
install.lua Normal file
View File

@ -0,0 +1,93 @@
local repoRoot = "https://git.colon-three.com/kodi/snowier/raw/branch/main/"
local URLs = {
fileIndex = repoRoot .. "index.json",
-- Implementation of sha256 pulled from here
sha2 = "https://raw.githubusercontent.com/Egor-Skriptunoff/pure_lua_SHA/refs/heads/master/sha2.lua"
}
local log = {}
--- @param value string
function log.info(value)
print("[I] " .. value)
end
--- @param value string
function log.error(value)
printError("[E] " .. value)
end
local function main()
log.info("Starting installer")
if not fs.exists("sha2.lua") then
log.info("Downloading sha2.lua")
local sharequest = http.get(URLs.sha2)
local shafile = fs.open("sha2.lua", "w")
shafile.write(sharequest.readAll())
shafile.close()
sharequest.close()
end
local hash = require("sha2")
log.info("Downloading index file")
local indexrequest = http.get(URLs.fileIndex)
local index = textutils.unserializeJson(request.readAll())
indexrequest.close()
if (index == nil) then
log.error("Failed to deserialize index file.")
return
end
log.info("Checking for updates")
local toDownload = {}
for k, v in ipairs(index) do
-- A file should be redownloaded if it either:
-- - Doesn't exist locally
-- - Exists locally but has a different hash
if not fs.exists(v.dest) then
toDownload[#toDownload+1] = v
else
local destfile = fs.open(v.dest, "r")
local filehash = hash.sha256(destfile.readAll())
destfile.close()
if filehash ~= v.sha256 then
toDownload[#toDownload+1] = v
end
end
end
log.info(#toDownload .. " files to download")
for k, v in ipairs(toDownload) do
if not fs.exists("/tmp") then
fs.makeDir("/tmp")
end
log.info("Downloading '" .. v.dest .. "'")
local filerequest = http.get(repoRoot .. v.src)
local tempfile = fs.open("/tmp/" .. v.hash .. ".lua", "w")
tempfile.write(filerequest.readAll())
filerequest.close()
tempfile.close()
-- Check the validity of the hash, this acts both as a checksum
-- and a way to raise an error if the index is incorrect
tempfile = fs.open("/tmp/" .. v.hash .. ".lua", "r")
local filehash = hash.sha256(tempfile.readAll())
tempfile.close()
if filehash ~= v.hash then
log.error("File " .. v.dest .. " (from " .. v.src .. ") has a mismatched hash.")
log.error("Installation aborted.")
return
end
end
log.info("Installing")
for k, v in ipairs(toDownload) do
fs.move("/tmp/" .. v.hash .. ".lua", v.dest)
end
log.info("Installation complete!")
end
main()

1
src/startup.lua Normal file
View File

@ -0,0 +1 @@
print("Hello, World!")

10
updateindex.nu Executable file
View File

@ -0,0 +1,10 @@
#!/usr/bin/env nix-shell
#!nix-shell -p jq nushell -i nu
open index.json
| each {|entry|
{src: $entry.src, dest: $entry.dest,
hash: (cat $entry.src | hash sha256)}
}
| collect
| save -f index.json