cc-mek-scada/ccmsi.lua

534 lines
20 KiB
Lua
Raw Normal View History

2023-02-19 17:54:02 +00:00
--
-- ComputerCraft Mekanism SCADA System Installer Utility
--
--[[
Copyright (c) 2023 Mikayla Fischler
2023-02-19 17:54:02 +00:00
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
associated documentation files (the "Software"), to deal in the Software without restriction,
2023-02-19 17:54:02 +00:00
including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
2023-02-19 17:54:02 +00:00
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
]]--
local function println(message) print(tostring(message)) end
local function print(message) term.write(tostring(message)) end
2023-02-19 17:54:02 +00:00
2023-06-29 16:29:30 +00:00
local CCMSI_VERSION = "v1.5a"
2023-02-19 17:54:02 +00:00
local install_dir = "/.install-cache"
local manifest_path = "https://mikaylafischler.github.io/cc-mek-scada/manifests/"
local repo_path = "http://raw.githubusercontent.com/MikaylaFischler/cc-mek-scada/"
2023-02-19 17:54:02 +00:00
local opts = { ... }
2023-06-27 23:05:51 +00:00
local mode, app, target
local install_manifest = manifest_path .. "main/install_manifest.json"
local function red() term.setTextColor(colors.red) end
local function orange() term.setTextColor(colors.orange) end
local function yellow() term.setTextColor(colors.yellow) end
local function green() term.setTextColor(colors.green) end
local function blue() term.setTextColor(colors.blue) end
local function white() term.setTextColor(colors.white) end
local function lgray() term.setTextColor(colors.lightGray) end
-- get command line option in list
local function get_opt(opt, options)
for _, v in pairs(options) do if opt == v then return v end end
return nil
end
2023-06-18 04:40:01 +00:00
-- ask the user yes or no
local function ask_y_n(question, default)
print(question)
if default == true then print(" (Y/n)? ") else print(" (y/N)? ") end
local response = read()
if response == "" then return default
elseif response == "Y" or response == "y" then return true
elseif response == "N" or response == "n" then return false
else return nil end
2023-06-18 04:40:01 +00:00
end
-- print out a white + blue text message
local function pkg_message(message, package) white(); print(message .. " "); blue(); println(package); white() end
2023-06-18 04:40:01 +00:00
-- indicate actions to be taken based on package differences for installs/updates
local function show_pkg_change(name, v_local, v_remote)
if v_local ~= nil then
if v_local ~= v_remote then
2023-06-29 16:29:30 +00:00
print("[" .. name .. "] updating "); blue(); print(v_local); white(); print(" \xbb "); blue(); println(v_remote); white()
2023-06-18 04:40:01 +00:00
elseif mode == "install" then
pkg_message("[" .. name .. "] reinstalling", v_local)
2023-06-18 04:40:01 +00:00
end
else
pkg_message("[" .. name .. "] new install of", v_remote)
2023-06-18 04:40:01 +00:00
end
end
-- read the local manifest file
local function read_local_manifest()
local local_ok = false
local local_manifest = {}
local imfile = fs.open("install_manifest.json", "r")
if imfile ~= nil then
local_ok, local_manifest = pcall(function () return textutils.unserializeJSON(imfile.readAll()) end)
imfile.close()
end
return local_ok, local_manifest
end
2023-06-27 23:05:51 +00:00
-- get the manifest from GitHub
local function get_remote_manifest()
local response, error = http.get(install_manifest)
if response == nil then
orange(); println("failed to get installation manifest from GitHub, cannot update or install")
red(); println("HTTP error: " .. error); white()
return false, {}
end
local ok, manifest = pcall(function () return textutils.unserializeJSON(response.readAll()) end)
if not ok then
red(); println("error parsing remote installation manifest"); white()
end
return ok, manifest
end
-- record the local installation manifest
local function write_install_manifest(manifest, dependencies)
local versions = {}
for key, value in pairs(manifest.versions) do
local is_dependency = false
for _, dependency in pairs(dependencies) do
if (key == "bootloader" and dependency == "system") or key == dependency then
is_dependency = true; break
end
end
if key == app or key == "comms" or is_dependency then versions[key] = value end
end
manifest.versions = versions
local imfile = fs.open("install_manifest.json", "w")
imfile.write(textutils.serializeJSON(manifest))
imfile.close()
end
2023-02-19 17:54:02 +00:00
-- get and validate command line options
println("-- CC Mekanism SCADA Installer " .. CCMSI_VERSION .. " --")
2023-02-19 17:54:02 +00:00
if #opts == 0 or opts[1] == "help" then
println("usage: ccmsi <mode> <app> <branch>")
2023-02-19 17:54:02 +00:00
println("<mode>")
lgray()
println(" check - check latest versions avilable")
yellow()
println(" ccmsi check <branch> for target")
lgray()
2023-02-19 17:54:02 +00:00
println(" install - fresh install, overwrites config")
println(" update - update files EXCEPT for config/logs")
println(" remove - delete files EXCEPT for config/logs")
println(" purge - delete files INCLUDING config/logs")
white(); println("<app>"); lgray()
2023-02-19 17:54:02 +00:00
println(" reactor-plc - reactor PLC firmware")
println(" rtu - RTU firmware")
println(" supervisor - supervisor server application")
println(" coordinator - coordinator application")
println(" pocket - pocket application")
white(); println("<branch>"); yellow()
println(" second parameter when used with check")
lgray(); println(" main (default) | latest | devel"); white()
2023-02-19 17:54:02 +00:00
return
else
mode = get_opt(opts[1], { "check", "install", "update", "remove", "purge" })
2023-02-19 17:54:02 +00:00
if mode == nil then
red(); println("Unrecognized mode."); white()
2023-02-19 17:54:02 +00:00
return
end
app = get_opt(opts[2], { "reactor-plc", "rtu", "supervisor", "coordinator", "pocket" })
if app == nil and mode ~= "check" then
red(); println("Unrecognized application."); white()
2023-02-19 17:54:02 +00:00
return
end
2023-06-18 17:12:34 +00:00
-- determine target
if mode == "check" then target = opts[2] else target = opts[3] end
2023-06-18 18:04:49 +00:00
if (target ~= "main") and (target ~= "latest") and (target ~= "devel") then
2023-06-29 16:29:30 +00:00
if (target and target ~= "") then yellow(); println("Unknown target, defaulting to 'main'"); white() end
2023-06-18 17:12:34 +00:00
target = "main"
end
-- set paths
install_manifest = manifest_path .. target .. "/install_manifest.json"
repo_path = repo_path .. target .. "/"
2023-02-19 17:54:02 +00:00
end
-- run selected mode
if mode == "check" then
local ok, manifest = get_remote_manifest()
if not ok then return end
2023-02-19 17:54:02 +00:00
local local_ok, local_manifest = read_local_manifest()
if not local_ok then
yellow(); println("failed to load local installation information"); white()
2023-03-04 19:40:49 +00:00
local_manifest = { versions = { installer = CCMSI_VERSION } }
2023-03-04 19:21:42 +00:00
else
local_manifest.versions.installer = CCMSI_VERSION
end
-- list all versions
for key, value in pairs(manifest.versions) do
term.setTextColor(colors.purple)
print(string.format("%-14s", "[" .. key .. "]"))
2023-03-04 19:40:49 +00:00
if key == "installer" or (local_ok and (local_manifest.versions[key] ~= nil)) then
blue(); print(local_manifest.versions[key])
if value ~= local_manifest.versions[key] then
white(); print(" (")
term.setTextColor(colors.cyan)
print(value); white(); println(" available)")
else green(); println(" (up to date)") end
else
lgray(); print("not installed"); white(); print(" (latest ")
term.setTextColor(colors.cyan)
print(value); white(); println(")")
end
end
elseif mode == "install" or mode == "update" then
local ok, manifest = get_remote_manifest()
if not ok then return end
2023-06-18 04:40:01 +00:00
local ver = {
app = { v_local = nil, v_remote = nil, changed = false },
boot = { v_local = nil, v_remote = nil, changed = false },
comms = { v_local = nil, v_remote = nil, changed = false },
graphics = { v_local = nil, v_remote = nil, changed = false },
lockbox = { v_local = nil, v_remote = nil, changed = false }
2023-06-18 04:40:01 +00:00
}
-- try to find local versions
local local_ok, local_manifest = read_local_manifest()
if not local_ok then
if mode == "update" then
red(); println("failed to load local installation information, cannot update"); white()
return
end
else
2023-06-18 04:40:01 +00:00
ver.boot.v_local = local_manifest.versions.bootloader
ver.app.v_local = local_manifest.versions[app]
ver.comms.v_local = local_manifest.versions.comms
ver.graphics.v_local = local_manifest.versions.graphics
ver.lockbox.v_local = local_manifest.versions.lockbox
if local_manifest.versions[app] == nil then
red(); println("another application is already installed, please purge it before installing a new application"); white()
return
end
2023-02-19 17:54:02 +00:00
2023-03-04 19:19:17 +00:00
local_manifest.versions.installer = CCMSI_VERSION
if manifest.versions.installer ~= CCMSI_VERSION then
yellow(); println("a newer version of the installer is available, it is recommended to download it"); white()
2023-03-04 19:19:17 +00:00
end
end
2023-06-18 04:40:01 +00:00
ver.boot.v_remote = manifest.versions.bootloader
ver.app.v_remote = manifest.versions[app]
ver.comms.v_remote = manifest.versions.comms
ver.graphics.v_remote = manifest.versions.graphics
ver.lockbox.v_remote = manifest.versions.lockbox
2023-02-19 17:54:02 +00:00
green()
2023-02-19 17:54:02 +00:00
if mode == "install" then
2023-06-18 04:40:01 +00:00
println("Installing " .. app .. " files...")
2023-02-19 17:54:02 +00:00
elseif mode == "update" then
2023-06-18 04:40:01 +00:00
println("Updating " .. app .. " files... (keeping old config.lua)")
2023-02-19 17:54:02 +00:00
end
white()
2023-02-19 17:54:02 +00:00
-- display bootloader version change information
2023-06-18 04:40:01 +00:00
show_pkg_change("bootldr", ver.boot.v_local, ver.boot.v_remote)
ver.boot.changed = ver.boot.v_local ~= ver.boot.v_remote
2023-02-19 17:54:02 +00:00
-- display app version change information
2023-06-18 04:40:01 +00:00
show_pkg_change(app, ver.app.v_local, ver.app.v_remote)
ver.app.changed = ver.app.v_local ~= ver.app.v_remote
-- display comms version change information
2023-06-18 04:40:01 +00:00
show_pkg_change("comms", ver.comms.v_local, ver.comms.v_remote)
ver.comms.changed = ver.comms.v_local ~= ver.comms.v_remote
2023-06-18 17:12:34 +00:00
if ver.comms.changed and ver.comms.v_local ~= nil then
print("[comms] "); yellow(); println("other devices on the network will require an update"); white()
2023-02-19 17:54:02 +00:00
end
2023-06-18 04:40:01 +00:00
-- display graphics version change information
show_pkg_change("graphics", ver.graphics.v_local, ver.graphics.v_remote)
ver.graphics.changed = ver.graphics.v_local ~= ver.graphics.v_remote
-- display lockbox version change information
show_pkg_change("lockbox", ver.lockbox.v_local, ver.lockbox.v_remote)
ver.lockbox.changed = ver.lockbox.v_local ~= ver.lockbox.v_remote
2023-06-18 04:40:01 +00:00
-- ask for confirmation
if not ask_y_n("Continue?", false) then return end
2023-02-19 17:54:02 +00:00
--------------------------
-- START INSTALL/UPDATE --
--------------------------
2023-02-28 04:51:26 +00:00
local space_required = manifest.sizes.manifest
2023-02-19 17:54:02 +00:00
local space_available = fs.getFreeSpace("/")
local single_file_mode = false
local file_list = manifest.files
local size_list = manifest.sizes
local dependencies = manifest.depends[app]
local config_file = app .. "/config.lua"
table.insert(dependencies, app)
2023-02-19 17:54:02 +00:00
for _, dependency in pairs(dependencies) do
local size = size_list[dependency]
space_required = space_required + size
end
-- check space constraints
2023-02-19 17:54:02 +00:00
if space_available < space_required then
single_file_mode = true
yellow(); println("WARNING: Insufficient space available for a full download!"); white()
2023-02-28 04:51:26 +00:00
println("Files can be downloaded one by one, so if you are replacing a current install this will not be a problem unless installation fails.")
if mode == "update" then println("If installation still fails, delete this device's log file or uninstall the app (not purge) and try again.") end
2023-06-18 04:40:01 +00:00
if not ask_y_n("Do you wish to continue?", false) then
println("Operation cancelled.")
2023-02-19 17:54:02 +00:00
return
end
end
local success = true
2023-06-18 05:19:00 +00:00
-- helper function to check if a dependency is unchanged
local function unchanged(dependency)
if dependency == "system" then return not ver.boot.changed
elseif dependency == "graphics" then return not ver.graphics.changed
elseif dependency == "lockbox" then return not ver.lockbox.changed
elseif dependency == "common" then return not (ver.app.changed or ver.comms.changed)
2023-06-18 05:19:00 +00:00
elseif dependency == app then return not ver.app.changed
else return true end
end
2023-02-19 17:54:02 +00:00
if not single_file_mode then
if fs.exists(install_dir) then
fs.delete(install_dir)
fs.makeDir(install_dir)
end
-- download all dependencies
2023-02-19 17:54:02 +00:00
for _, dependency in pairs(dependencies) do
2023-06-18 05:19:00 +00:00
if mode == "update" and unchanged(dependency) then
2023-06-18 04:40:01 +00:00
pkg_message("skipping download of unchanged package", dependency)
else
2023-06-18 04:40:01 +00:00
pkg_message("downloading package", dependency)
lgray()
2023-06-18 04:40:01 +00:00
local files = file_list[dependency]
for _, file in pairs(files) do
println("GET " .. file)
local dl, err = http.get(repo_path .. file)
if dl == nil then
red(); println("GET HTTP Error " .. err)
success = false
break
else
local handle = fs.open(install_dir .. "/" .. file, "w")
handle.write(dl.readAll())
handle.close()
end
2023-02-19 17:54:02 +00:00
end
end
end
-- copy in downloaded files (installation)
2023-02-19 17:54:02 +00:00
if success then
for _, dependency in pairs(dependencies) do
2023-06-18 05:19:00 +00:00
if mode == "update" and unchanged(dependency) then
2023-06-18 04:40:01 +00:00
pkg_message("skipping install of unchanged package", dependency)
else
2023-06-18 04:40:01 +00:00
pkg_message("installing package", dependency)
lgray()
2023-06-18 04:40:01 +00:00
local files = file_list[dependency]
for _, file in pairs(files) do
if mode == "install" or file ~= config_file then
local temp_file = install_dir .. "/" .. file
if fs.exists(file) then fs.delete(file) end
fs.move(temp_file, file)
end
2023-02-19 17:54:02 +00:00
end
end
end
end
fs.delete(install_dir)
if success then
write_install_manifest(manifest, dependencies)
green()
2023-02-19 17:54:02 +00:00
if mode == "install" then
2023-06-18 04:40:01 +00:00
println("Installation completed successfully.")
else println("Update completed successfully.") end
2023-02-19 17:54:02 +00:00
else
if mode == "install" then
red(); println("Installation failed.")
else orange(); println("Update failed, existing files unmodified.") end
2023-02-19 17:54:02 +00:00
end
else
-- go through all files and replace one by one
2023-02-19 17:54:02 +00:00
for _, dependency in pairs(dependencies) do
2023-06-18 05:19:00 +00:00
if mode == "update" and unchanged(dependency) then
2023-06-18 04:40:01 +00:00
pkg_message("skipping install of unchanged package", dependency)
else
2023-06-18 04:40:01 +00:00
pkg_message("installing package", dependency)
lgray()
2023-06-18 04:40:01 +00:00
local files = file_list[dependency]
for _, file in pairs(files) do
if mode == "install" or file ~= config_file then
println("GET " .. file)
local dl, err = http.get(repo_path .. file)
if dl == nil then
red(); println("GET HTTP Error " .. err)
success = false
break
else
local handle = fs.open("/" .. file, "w")
handle.write(dl.readAll())
handle.close()
end
end
2023-02-19 17:54:02 +00:00
end
end
end
if success then
write_install_manifest(manifest, dependencies)
green()
2023-02-19 17:54:02 +00:00
if mode == "install" then
2023-06-18 04:40:01 +00:00
println("Installation completed successfully.")
else println("Update completed successfully.") end
2023-02-19 17:54:02 +00:00
else
red()
2023-02-19 17:54:02 +00:00
if mode == "install" then
2023-06-18 04:40:01 +00:00
println("Installation failed, files may have been skipped.")
else println("Update failed, files may have been skipped.") end
2023-02-19 17:54:02 +00:00
end
end
elseif mode == "remove" or mode == "purge" then
local ok, manifest = read_local_manifest()
2023-02-19 17:54:02 +00:00
if not ok then
red(); println("Error parsing local installation manifest."); white()
2023-02-19 17:54:02 +00:00
return
elseif mode == "remove" and manifest.versions[app] == nil then
red(); println(app .. " is not installed, cannot remove."); white()
return
end
orange()
if mode == "remove" then
println("Removing all " .. app .. " files except for config and log...")
2023-02-19 17:54:02 +00:00
elseif mode == "purge" then
println("Purging all " .. app .. " files including config and log...")
2023-02-19 17:54:02 +00:00
end
2023-06-18 04:40:01 +00:00
-- ask for confirmation
if not ask_y_n("Continue?", false) then return end
2023-02-19 17:54:02 +00:00
local file_list = manifest.files
local dependencies = manifest.depends[app]
local config_file = app .. "/config.lua"
table.insert(dependencies, app)
-- delete log file if purging
lgray()
if mode == "purge" and fs.exists(config_file) then
local log_deleted = pcall(function ()
local config = require(app .. ".config")
if fs.exists(config.LOG_PATH) then
fs.delete(config.LOG_PATH)
println("deleted log file " .. config.LOG_PATH)
end
end)
if not log_deleted then
red(); println("failed to delete log file")
white(); println("press enter to continue...")
read(); lgray()
end
end
2023-02-19 17:54:02 +00:00
-- delete all files except config unless purging
for _, dependency in pairs(dependencies) do
local files = file_list[dependency]
for _, file in pairs(files) do
if mode == "purge" or file ~= config_file then
if fs.exists(file) then
fs.delete(file)
println("deleted " .. file)
end
2023-02-19 17:54:02 +00:00
end
end
-- delete folders that we should be deleteing
if mode == "purge" or dependency ~= app then
local folder = files[1]
while true do
local dir = fs.getDir(folder)
if dir == "" or dir == ".." then break else folder = dir end
end
if fs.isDir(folder) then
fs.delete(folder)
println("deleted directory " .. folder)
end
elseif dependency == app then
-- delete individual subdirectories so we can leave the config
for _, folder in pairs(files) do
while true do
local dir = fs.getDir(folder)
if dir == "" or dir == ".." or dir == app then break else folder = dir end
end
if folder ~= app and fs.isDir(folder) then
fs.delete(folder)
println("deleted app subdirectory " .. folder)
end
end
end
2023-02-19 17:54:02 +00:00
end
-- only delete manifest if purging
if mode == "purge" then
fs.delete("install_manifest.json")
println("deleted install_manifest.json")
else
-- remove all data from versions list to show nothing is installed
manifest.versions = {}
local imfile = fs.open("install_manifest.json", "w")
imfile.write(textutils.serializeJSON(manifest))
imfile.close()
end
green(); println("Done!")
2023-02-19 17:54:02 +00:00
end
white()