Browse Source

Massive cleanup of SPM

* Added bootstrap.lua to download and install SPM on a fresh machine
* Added support for downloading minified sources for packages
environments/production/deployments/14
Drew Short 7 years ago
parent
commit
d803f79406
  1. 7
      .gitlab-ci.yml
  2. 16
      gruntfile.js
  3. 35
      src/bootstrap.lua
  4. 3
      src/programs.cfg
  5. 5
      src/repos.cfg
  6. 404
      src/spm/spm.lua
  7. 16
      src/warricksothr/programs.cfg

7
.gitlab-ci.yml

@ -13,8 +13,9 @@ compile:
artifacts: artifacts:
expire_in: 6 hours expire_in: 6 hours
paths: paths:
- dist/**/*.lua
- dist/*.cfg - dist/*.cfg
- dist/**/*.cfg
- dist/**/*.lua
only: only:
- master - master
- develop - develop
@ -41,6 +42,7 @@ development:
ENVIRONMENT: "Development" ENVIRONMENT: "Development"
TARGET_DIRECTORY: "~/download_dir/oc/development" TARGET_DIRECTORY: "~/download_dir/oc/development"
DOWNLOAD_URL_BASE: "https://sothr.com/download/oc/development" DOWNLOAD_URL_BASE: "https://sothr.com/download/oc/development"
MINIFIED_SOURCE: "false"
script: script:
- echo "Deployment To Development Starting..." - echo "Deployment To Development Starting..."
- eval `ssh-agent -s` - eval `ssh-agent -s`
@ -48,6 +50,7 @@ development:
- pushd ./dist - pushd ./dist
- find * -type f -exec sed -i -e 's@{ENV}@'"$ENVIRONMENT"'@g' {} \; - find * -type f -exec sed -i -e 's@{ENV}@'"$ENVIRONMENT"'@g' {} \;
- find * -type f -exec sed -i -e 's@{URL_BASE}@'"$DOWNLOAD_URL_BASE"'@g' {} \; - find * -type f -exec sed -i -e 's@{URL_BASE}@'"$DOWNLOAD_URL_BASE"'@g' {} \;
- find * -type f -exec sed -i -e 's@{MINIFIED}@'"MINIFIED_SOURCE"'@g' {} \;
- popd - popd
- rsync -avz --delete-delay -e "ssh -p $DEPLOY_PORT -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null" --progress dist/* $DEPLOY_USER@$DEPLOY_HOST:$TARGET_DIRECTORY - rsync -avz --delete-delay -e "ssh -p $DEPLOY_PORT -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null" --progress dist/* $DEPLOY_USER@$DEPLOY_HOST:$TARGET_DIRECTORY
only: only:
@ -66,6 +69,7 @@ production:
ENVIRONMENT: "Release" ENVIRONMENT: "Release"
TARGET_DIRECTORY: "~/download_dir/oc/release" TARGET_DIRECTORY: "~/download_dir/oc/release"
DOWNLOAD_URL_BASE: "https://sothr.com/download/oc/release" DOWNLOAD_URL_BASE: "https://sothr.com/download/oc/release"
MINIFIED_SOURCE: "true"
script: script:
- echo "Deployment To Production Starting..." - echo "Deployment To Production Starting..."
- eval `ssh-agent -s` - eval `ssh-agent -s`
@ -73,6 +77,7 @@ production:
- pushd ./dist - pushd ./dist
- find * -type f -exec sed -i -e 's@{ENV}@'"$ENVIRONMENT"'@g' {} \; - find * -type f -exec sed -i -e 's@{ENV}@'"$ENVIRONMENT"'@g' {} \;
- find * -type f -exec sed -i -e 's@{URL_BASE}@'"$DOWNLOAD_URL_BASE"'@g' {} \; - find * -type f -exec sed -i -e 's@{URL_BASE}@'"$DOWNLOAD_URL_BASE"'@g' {} \;
- find * -type f -exec sed -i -e 's@{MINIFIED}@'"MINIFIED_SOURCE"'@g' {} \;
- popd - popd
- rsync -avz --delete-delay -e "ssh -p $DEPLOY_PORT -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null" --progress dist/* $DEPLOY_USER@$DEPLOY_HOST:$TARGET_DIRECTORY - rsync -avz --delete-delay -e "ssh -p $DEPLOY_PORT -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null" --progress dist/* $DEPLOY_USER@$DEPLOY_HOST:$TARGET_DIRECTORY
only: only:

16
gruntfile.js

@ -24,7 +24,7 @@ module.exports = function (grunt) {
const fs = require('fs'); const fs = require('fs');
const luamin = require('luamin'); const luamin = require('luamin');
const util = require('util'); const util = require('util');
grunt.file.expand({filter: 'isDirectory'}, "dist/**/*").forEach(function (dir) { grunt.file.expand({filter: 'isDirectory'}, "dist/**").forEach(function (dir) {
grunt.file.expand({filter: 'isFile'}, dir + "/*.lua").forEach(function (file) { grunt.file.expand({filter: 'isFile'}, dir + "/*.lua").forEach(function (file) {
const directory = file.substr(0, file.lastIndexOf('/')); const directory = file.substr(0, file.lastIndexOf('/'));
const file_name = file.substr(file.lastIndexOf('/') + 1); const file_name = file.substr(file.lastIndexOf('/') + 1);
@ -45,9 +45,21 @@ module.exports = function (grunt) {
}); });
}); });
grunt.registerTask("build-spm-bootstrap", "Make sure a single bootstrap file exists for SPM", function () {
const fs = require('fs');
grunt.file.expand({filter: 'isFile'}, "dist/**/bootstrap.min.lua").forEach(function (minified_file) {
const directory = minified_file.substr(0, minified_file.lastIndexOf('/'));
const minified_contents = fs.readFileSync(minified_file, 'utf8');
fs.writeFileSync(directory + '/bootstrap.lua', minified_contents);
fs.unlinkSync(minified_file);
console.log("Removed unminified bootstrap file: " + directory + '/bootstrap.lua')
});
});
grunt.registerTask("default", [ grunt.registerTask("default", [
"clean", "clean",
"copy", "copy",
"minify-lua-modules" "minify-lua-modules",
"build-spm-bootstrap"
]); ]);
}; };

35
src/bootstrap.lua

@ -0,0 +1,35 @@
--[[
SPM Bootstrap Installer
Minimal functionality to install pull SPM and install itself.
]]
local component = require("component")
local wget = loadfile("/bin/wget.lua")
if not component.isAvailable("internet") then
io.stderr:write("This program requires an internet card to run.")
return
end
local downloadSrc
if "{MINIFIED}" == "true" then
downloadSrc = "{URL_BASE}/spm/spm.min.lua"
else
downloadSrc = "{URL_BASE}/spm/spm.lua"
end
local saveLocation = "/tmp/spm.lua"
term.write("Downloading Temporary SPM\n")
wget("-q", downloadSrc, saveLocation)
local spm = require(saveLocation)
term.write("Installing SPM Locally\n")
spm("install", "spm")
term.write("Removing Temporary SPM\n")
fs.remove(saveLocation)
term.write("Done\n")

3
src/programs.cfg

@ -10,6 +10,7 @@
note = "SPM operates similarly to OPPM, with slight modifications to referential repositories", note = "SPM operates similarly to OPPM, with slight modifications to referential repositories",
hidden = false, hidden = false,
repo = "", repo = "",
version = "0.2" version = "0.2.1",
minified = {MINIFIED}
} }
} }

5
src/repos.cfg

@ -1,5 +1,8 @@
{ {
["Sothr's Software"] = { ["Sothr Package Manager"] = {
src = "{URL_BASE}" src = "{URL_BASE}"
},
["Warrick's Software"] = {
src = "{URL_BASE}/warricksothr"
} }
} }

404
src/spm/spm.lua

@ -21,8 +21,10 @@ if not component.isAvailable("internet") then
end end
local internet = require("internet") local internet = require("internet")
--local repoLocationConfig="https://raw.githubusercontent.com/OpenPrograms/openprograms.github.io/master/repos.cfg" local githubContentRoot = "https://raw.githubusercontent.com/"
local repoLocationConfig = "https://sothr.com/download/oc/release/repos.cfg" local repoLocationConfig = "{URL_BASE}/repos.cfg"
local localInstalledPackagesFile = "/etc/spdata.svd"
local localConfigFile = "/etc/spm.cfg"
local args, options = shell.parse(...) local args, options = shell.parse(...)
@ -34,48 +36,54 @@ local function printUsage()
print("'spm list [-i] <filter>' to get a list of available packages containing the specified substring") print("'spm list [-i] <filter>' to get a list of available packages containing the specified substring")
print(" -i: Only list already installed packages") print(" -i: Only list already installed packages")
print("'spm info <package>' to get further information about a program package") print("'spm info <package>' to get further information about a program package")
print("'spm install [-f] <package> [path]' to download a package to a directory on your system (or /usr by default)") print("'spm install [-f] [-m] <package> [path]' to download a package to a directory on your system (or /usr by default)")
print("'spm update <package>' to update an already installed package") print("'spm update <package>' to update an already installed package")
print("'spm update all' to update every already installed package") print("'spm update all' to update every already installed package")
print("'spm uninstall <package>' to remove a package from your system") print("'spm uninstall <package>' to remove a package from your system")
print(" -f: Force creation of directories and overwriting of existing files.") print(" -f: Force creation of directories and overwriting of existing files.")
end end
-- Make an internet http/s request for data
local function getContent(url) local function getContent(url)
local sContent = "" local sContent = ""
local result, response = pcall(internet.request, url) local result, response = pcall(internet.request, url)
if not result then if not result then
return nil return nil
end end
for chunk in response do for chunk in response do
sContent = sContent .. chunk sContent = sContent .. chunk
end end
return sContent return sContent
end end
-- Request repository information
local function getRepos() local function getRepos()
local success, sRepos = pcall(getContent, repoLocationConfig) local success, sRepos = pcall(getContent, repoLocationConfig)
if not success then if not success then
io.stderr:write("Could not connect to the Internet. Please ensure you have an Internet connection.") io.stderr:write("Could not connect to the Internet. Please ensure you have an Internet connection.")
return -1 return -1
end end
return serial.unserialize(sRepos) return serial.unserialize(sRepos)
end end
-- Get Packages for src
local function getPackages(src) local function getPackages(src)
local success, sPackages = pcall(getContent, src .. "/programs.cfg") local success, sPackages = pcall(getContent, src .. "/programs.cfg")
if not success or not sPackages then if not success or not sPackages then
return -1 return -1
end end
return serial.unserialize(sPackages) return serial.unserialize(sPackages)
end end
local function getGithubPackages(repo) local function getGithubPackages(repo)
local success, sPackages = pcall(getContent, "https://raw.githubusercontent.com/" .. repo .. "/master/programs.cfg") return getPackages(githubContentRoot .. repo .. "/master")
if not success or not sPackages then
return -1
end
return serial.unserialize(sPackages)
end end
--For sorting table values by alphabet --For sorting table values by alphabet
@ -85,6 +93,7 @@ local function compare(a, b)
return a:sub(i, i) < b:sub(i, i) return a:sub(i, i) < b:sub(i, i)
end end
end end
return #a < #b return #a < #b
end end
@ -96,127 +105,134 @@ local function downloadFile(url, path, force)
end end
end end
local function readFromFile(fNum) local function readFromFile(path)
local path
if fNum == 1 then
path = "/etc/spdata.svd"
elseif fNum == 2 then
path = "/etc/spm.cfg"
if not fs.exists(path) then
local tProcess = process.running()
path = fs.concat(fs.path(shell.resolve(tProcess)), "/etc/spm.cfg")
end
end
if not fs.exists(fs.path(path)) then if not fs.exists(fs.path(path)) then
fs.makeDirectory(fs.path(path)) fs.makeDirectory(fs.path(path))
end end
if not fs.exists(path) then if not fs.exists(path) then
return { -1 } return { -1 }
end end
local file, msg = io.open(path, "rb") local file, msg = io.open(path, "rb")
if not file then if not file then
io.stderr:write("Error while trying to read file at " .. path .. ": " .. msg) io.stderr:write("Error while trying to read file at " .. path .. ": " .. msg)
return return
end end
local sPacks = file:read("*a") local serializedTableData = file:read("*a")
file:close() file:close()
return serial.unserialize(sPacks) or { -1 } return serial.unserialize(serializedTableData) or { -1 }
end
local function readFromLocalInstallFile()
readFromFile(localInstalledPackagesFile)
end end
local function saveToFile(tPacks) local function readLocalConfigFile()
local file, msg = io.open("/etc/spdata.svd", "wb") local path = localConfigFile
if not fs.exists(path) then
return { -1 }
else
return readFromFile(path)
end
end
local function saveToInstalledPackagesFile(installedPackages)
local file, msg = io.open(localInstalledPackagesFile, "wb")
if not file then if not file then
io.stderr:write("Error while trying to save package names: " .. msg) io.stderr:write("Error while trying to save package names: " .. msg)
return return
end end
local sPacks = serial.serialize(tPacks) local sPacks = serial.serialize(installedPackages)
file:write(sPacks) file:write(sPacks)
file:close() file:close()
end end
local function listPackages(filter) local function listPackages(filter)
filter = filter or false filter = filter or false
if filter then if filter then
filter = string.lower(filter) filter = string.lower(filter)
end end
local packages = {} local packageTable = {}
print("Receiving Package list...") print("Receiving Package list...")
if not options.i then if not options.i then
local success, repos = pcall(getRepos) local success, repositories = pcall(getRepos)
if not success or repos == -1 then if not success or repositories == -1 then
io.stderr:write("Unable to connect to the Internet.\n") io.stderr:write("Unable to connect to the Internet.\n")
return return
elseif repos == nil then elseif repositories == nil then
print("Error while trying to receive repository list") print("Error while trying to receive repository list")
return return
end end
for _, j in pairs(repos) do for _, repository in pairs(repositories) do
local lPacks local packages
local target local target
if j.src then if repository.src then
print("Checking Repository " .. j.src) print("Checking Repository " .. repository.src)
lPacks = getPackages(j.src) packages = getPackages(repository.src)
target = j.src target = repository.src
elseif j.repo then elseif repository.repo then
print("Checking Repository " .. j.repo) print("Checking Repository " .. repository.repo)
lPacks = getGithubPackages(j.repo) packages = getGithubPackages(repository.repo)
target = j.repo target = repository.repo
end end
if lPacks == nil then if packages == nil then
io.stderr:write("Error while trying to receive package list for " .. target .. "\n") io.stderr:write("Error while trying to receive package list for " .. target .. "\n")
return return
elseif type(lPacks) == "table" then elseif type(packages) == "table" then
for k in pairs(lPacks) do for package in pairs(packages) do
if not k.hidden then if not package.hidden then
table.insert(packages, k) table.insert(packageTable, package)
end end
end end
end end
end end
--[[
local lRepos = readFromFile(2)
if lRepos then
for _, j in pairs(lRepos.repos) do
for k in pairs(j) do
if not k.hidden then
table.insert(packages, k)
end
end
end
end
]]
else else
local lPacks = {} local localPackageTable = {}
local tPacks = readFromFile(1) local localPackages = readFromLocalInstallFile()
for i in pairs(tPacks) do for localPackage in pairs(localPackages) do
table.insert(lPacks, i) table.insert(localPackageTable, localPackage)
end end
packages = lPacks packageTable = localPackageTable
end end
if filter then if filter then
local lPacks = {} local packages = {}
for i, j in ipairs(packages) do for _, package in ipairs(packageTable) do
if (#j >= #filter) and string.find(j, filter, 1, true) ~= nil then if (#package >= #filter) and string.find(package, filter, 1, true) ~= nil then
table.insert(lPacks, j) table.insert(packages, package)
end end
end end
packages = lPacks packageTable = packages
end end
table.sort(packages, compare) table.sort(packageTable, compare)
return packages return packageTable
end end
local function printPackages(tPacks) local function printPackages(packages)
if tPacks == nil or not tPacks[1] then if packages == nil or not packages[1] then
print("No package matching specified filter found.") print("No package matching specified filter found.")
return return
end end
term.clear() term.clear()
local xRes, yRes = gpu.getResolution() local xRes, yRes = gpu.getResolution()
print("--SPM {ENV} Package list--") print("--SPM {ENV} Package list--")
local xCur, yCur = term.getCursor() local xCur, yCur = term.getCursor()
for _, j in ipairs(tPacks) do for _, package in ipairs(packages) do
term.write(j .. "\n") term.write(package .. "\n")
yCur = yCur + 1 yCur = yCur + 1
if yCur > yRes - 1 then if yCur > yRes - 1 then
term.write("[Press any key to continue]") term.write("[Press any key to continue]")
@ -230,44 +246,36 @@ local function printPackages(tPacks)
end end
end end
local function getInformation(pack) local function getInformation(requestedPackage)
local success, repos = pcall(getRepos) local success, repositories = pcall(getRepos)
if not success or repos == -1 then if not success or repositories == -1 then
io.stderr:write("Unable to connect to the Internet.\n") io.stderr:write("Unable to connect to the Internet.\n")
return return
end end
for _, j in pairs(repos) do for _, repository in pairs(repositories) do
local lPacks local packages
local target local target
if j.src then if repository.src then
lPacks = getPackages(j.src) packages = getPackages(repository.src)
target = j.src target = repository.src
elseif j.repo then elseif repository.repo then
lPacks = getGithubPackages(j.repo) packages = getGithubPackages(repository.repo)
target = "https://raw.githubusercontent.com/" .. j.repo target = githubContentRoot .. repository.repo
end
if lPacks == nil then
io.stderr:write("Error while trying to receive package list for " .. target .. "\n")
elseif type(lPacks) == "table" then
for k in pairs(lPacks) do
if k == pack then
return lPacks[k], target
end
end
end
end end
--[[ if packages == nil then
local lRepos = readFromFile(2) io.stderr:write("Error while trying to receive package list for " .. target .. "\n")
if lRepos then elseif type(packages) == "table" then
for i, j in pairs(lRepos.repos) do for package in pairs(packages) do
for k in pairs(j) do if package == requestedPackage then
if k == pack then return packages[package], target
return j[k], i
end end
end end
end end
end end
]]
return nil return nil
end end
@ -276,196 +284,230 @@ local function provideInfo(pack)
printUsage() printUsage()
return return
end end
pack = string.lower(pack) pack = string.lower(pack)
local info = getInformation(pack) local info = getInformation(pack)
if not info then if not info then
print("Package does not exist") print("Package does not exist")
return return
end end
local done = false local done = false
print("--Information about package '" .. pack .. "'--") print("--Information about package '" .. pack .. "'--")
if info.name then if info.name then
print("Name: " .. info.name) print("Name: " .. info.name)
done = true done = true
end end
if info.version then
print("Version: " .. info.version)
done = true
end
if info.description then if info.description then
print("Description: " .. info.description) print("Description: " .. info.description)
done = true done = true
end end
if info.authors then if info.authors then
print("Authors: " .. info.authors) print("Authors: " .. info.authors)
done = true done = true
end end
if info.note then if info.note then
print("Note: " .. info.note) print("Note: " .. info.note)
done = true done = true
end end
if not done then if not done then
print("No information provided.") print("No information provided.")
end end
end end
local function installPackage(pack, path, update) local function installPackage(requestedPackage, installPath, doUpdate)
update = update or false doUpdate = doUpdate or false
if not pack then if not requestedPackage then
printUsage() printUsage()
return return
end end
if not path and not update then if not installPath and not doUpdate then
local lConfig = readFromFile(2) local localConfig = readLocalConfigFile()
path = lConfig.path or "/usr" installPath = localConfig.path or "/usr"
print("Installing package to " .. path .. "...") print("Installing package to " .. installPath .. "...")
elseif not update then elseif not doUpdate then
path = shell.resolve(path) installPath = shell.resolve(installPath)
print("Installing package to " .. path .. "...") print("Installing package to " .. installPath .. "...")
end end
pack = string.lower(pack)
local tPacks = readFromFile(1) requestedPackage = string.lower(requestedPackage)
if not tPacks then local locallyInstalledPackages = readFromLocalInstallFile()
if not locallyInstalledPackages then
io.stderr:write("Error while trying to read local package names") io.stderr:write("Error while trying to read local package names")
return return
elseif tPacks[1] == -1 then elseif locallyInstalledPackages[1] == -1 then
table.remove(tPacks, 1) table.remove(locallyInstalledPackages, 1)
end end
local info, repo = getInformation(pack) local packageInfo, repositoryPath = getInformation(requestedPackage)
if not info then if not packageInfo then
print("Package does not exist") print("Package does not exist")
return return
end end
if update then if doUpdate then
print("Updating package " .. pack) print("Updating package " .. requestedPackage)
path = nil installPath = nil
for i, j in pairs(info.files) do for filePath, fileInstallPath in pairs(packageInfo.files) do
for k, v in pairs(tPacks[pack]) do for installedFilePath, fileLocalInstallPath in pairs(locallyInstalledPackages[requestedPackage]) do
if k == i then if installedFilePath == filePath then
path = string.gsub(fs.path(v), j .. "/?$", "/") installPath = string.gsub(fs.path(fileLocalInstallPath), fileInstallPath .. "/?$", "/")
break break
end end
end end
if path then if installPath then
break break
end end
end end
path = shell.resolve(string.gsub(path, "^/?", "/"), nil) installPath = shell.resolve(string.gsub(installPath, "^/?", "/"), nil)
end end
if not update and fs.exists(path) then if not doUpdate and fs.exists(installPath) then
if not fs.isDirectory(path) then if not fs.isDirectory(installPath) then
if options.f then if options.f then
path = fs.concat(fs.path(path), pack) installPath = fs.concat(fs.path(installPath), requestedPackage)
fs.makeDirectory(path) fs.makeDirectory(installPath)
else else
print("Path points to a file, needs to be a directory.") print("Path points to a file, needs to be a directory.")
return return
end end
end end
elseif not update then elseif not doUpdate then
if options.f then if options.f then
fs.makeDirectory(path) fs.makeDirectory(installPath)
else else
print("Directory does not exist.") print("Directory does not exist.")
return return
end end
end end
if tPacks[pack] and (not update) then if locallyInstalledPackages[requestedPackage] and (not doUpdate) then
print("Package has already been installed") print("Package has already been installed")
return return
elseif not tPacks[pack] and update then elseif not locallyInstalledPackages[requestedPackage] and doUpdate then
print("Package has not been installed.") print("Package has not been installed.")
print("If it has, uninstall it manually and reinstall it.") print("If it has, uninstall it manually and reinstall it.")
return return
end end
if update then if doUpdate then
term.write("Removing old files...") term.write("Removing old files...")
for i, j in pairs(tPacks[pack]) do for installedFilePath, fileLocalInstallPath in pairs(locallyInstalledPackages[requestedPackage]) do
fs.remove(j) fs.remove(fileLocalInstallPath)
end end
term.write("Done.\n") term.write("Done.\n")
end end
tPacks[pack] = {} locallyInstalledPackages[requestedPackage] = {}
term.write("Installing Files...") term.write("Installing Files...")
for i, j in pairs(info.files) do for filePath, requestedInstallPath in pairs(packageInfo.files) do
local nPath local installedPath
if string.find(j, "^//") then if string.find(requestedInstallPath, "^//") then
local lPath = string.sub(j, 2) local localInstalledPath = string.sub(requestedInstallPath, 2)
if not fs.exists(lPath) then if not fs.exists(localInstalledPath) then
fs.makeDirectory(lPath) fs.makeDirectory(localInstalledPath)
end end
nPath = fs.concat(lPath, string.gsub(i, ".+(/.-)$", "%1"), nil) installedPath = fs.concat(localInstalledPath, string.gsub(filePath, ".+(/.-)$", "%1"), nil)
else else
local lPath = fs.concat(path, j) local localInstalledPath = fs.concat(installPath, requestedInstallPath)
if not fs.exists(lPath) then if not fs.exists(localInstalledPath) then
fs.makeDirectory(lPath) fs.makeDirectory(localInstalledPath)
end end
nPath = fs.concat(path, j, string.gsub(i, ".+(/.-)$", "%1"), nil) installedPath = fs.concat(installPath, requestedInstallPath, string.gsub(filePath, ".+(/.-)$", "%1"), nil)
end end
local success = pcall(downloadFile, repo .. "/" .. i, nPath) if packageInfo.minified or options.m then
filePath = string.gsub(filePath, "(.+)\.(.+)$", "%1\.min\.%2")
end
local success = pcall(downloadFile, repositoryPath .. "/" .. filePath, installedPath)
if success then if success then
tPacks[pack][i] = nPath locallyInstalledPackages[requestedPackage][filePath] = installedPath
end end
end end
if info.dependencies then if packageInfo.dependencies then
term.write("Done.\nInstalling Dependencies...") term.write("Done.\nInstalling Dependencies...")
for i, j in pairs(info.dependencies) do for packageDependency, dependencyPath in pairs(packageInfo.dependencies) do
local nPath local installedDependencyPath
if string.find(j, "^//") then if string.find(dependencyPath, "^//") then
nPath = string.sub(j, 2) installedDependencyPath = string.sub(dependencyPath, 2)
else else
nPath = fs.concat(path, j, string.gsub(i, ".+(/.-)$", "%1"), nil) installedDependencyPath = fs.concat(installPath, dependencyPath, string.gsub(packageDependency, ".+(/.-)$", "%1"), nil)
end end
if string.lower(string.sub(i, 1, 4)) == "http" then if string.lower(string.sub(packageDependency, 1, 4)) == "http" then
local success = pcall(downloadFile, i, nPath) local success = pcall(downloadFile, packageDependency, installedDependencyPath)
if success then if success then
tPacks[pack][i] = nPath locallyInstalledPackages[requestedPackage][packageDependency] = installedDependencyPath
end end
else else
local depInfo = getInformation(string.lower(i)) local dependencyInfo = getInformation(string.lower(packageDependency))
if not depInfo then if not dependencyInfo then
term.write("\nDependency package " .. i .. " does not exist.") term.write("\nDependency package " .. packageDependency .. " does not exist.")
end end
installPackage(string.lower(i), fs.concat(path, j)) installPackage(string.lower(packageDependency), fs.concat(installPath, dependencyPath))
end end
end end
end end
term.write("Done.\n") term.write("Done.\n")
saveToFile(tPacks) saveToInstalledPackagesFile(locallyInstalledPackages)
print("Successfully installed package " .. pack) print("Successfully installed package " .. requestedPackage)
end end
local function uninstallPackage(pack) local function uninstallPackage(requestedPackage)
local info, repo = getInformation(pack) local packageInformation, repositoryLocation = getInformation(requestedPackage)
if not info then if not packageInformation then
print("Package does not exist") print("Package does not exist")
return return
end end
local tFiles = readFromFile(1) local locallyInstalledFiles = readFromLocalInstallFile()
if not tFiles then if not locallyInstalledFiles then
io.stderr:write("Error while trying to read package names") io.stderr:write("Error while trying to read package names")
return return
elseif tFiles[1] == -1 then elseif locallyInstalledFiles[1] == -1 then
table.remove(tFiles, 1) table.remove(locallyInstalledFiles, 1)
end end
if not tFiles[pack] then if not locallyInstalledFiles[requestedPackage] then
print("Package has not been installed.") print("Package has not been installed.")
print("If it has, you have to remove it manually.") print("If it has, you have to remove it manually.")
return return
end end
term.write("Removing package files...") term.write("Removing package files...")
for i, j in pairs(tFiles[pack]) do for i, j in pairs(locallyInstalledFiles[requestedPackage]) do
fs.remove(j) fs.remove(j)
end end
term.write("Done\nRemoving references...") term.write("Done\nRemoving references...")
tFiles[pack] = nil locallyInstalledFiles[requestedPackage] = nil
saveToFile(tFiles) saveToInstalledPackagesFile(locallyInstalledFiles)
term.write("Done.\n") term.write("Done.\n")
print("Successfully uninstalled package " .. pack) print("Successfully uninstalled package " .. requestedPackage)
end end
local function updatePackage(pack) local function updatePackage(pack)
if pack == "all" then if pack == "all" then
print("Updating everything...") print("Updating everything...")
local tFiles = readFromFile(1) local tFiles = readFromLocalInstallFile()
if not tFiles then if not tFiles then
io.stderr:write("Error while trying to read package names") io.stderr:write("Error while trying to read package names")
return return

16
src/warricksothr/programs.cfg

@ -0,0 +1,16 @@
{
["reactor_control"] = {
files = {
["reactor_control/reactor_control.lua"] = "/"
},
dependencies = {},
name = "Reactor Control Module",
description = "A Simple Package For Managing A Nuclear Reactor",
authors = "WarrickSothr",
note = "Maintains a Nuclear Reactor",
hidden = false,
repo = "",
version = "0.2.4",
minified = {MINIFIED}
}
}
|||||||
100:0
Loading…
Cancel
Save