189 lines
No EOL
5.2 KiB
V
189 lines
No EOL
5.2 KiB
V
/*
|
|
* ░▒▓███████▓▒░░▒▓█▓▒░░▒▓█▓▒░▒▓███████▓▒░
|
|
* ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░
|
|
* ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░
|
|
* ░▒▓███████▓▒░░▒▓█▓▒░░▒▓█▓▒░▒▓███████▓▒░
|
|
* ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░
|
|
* ░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░░▒▓█▓▒░
|
|
* ░▒▓███████▓▒░ ░▒▓██████▓▒░░▒▓█▓▒░░▒▓█▓▒░
|
|
* ascii art from: https://patorjk.com/software/taag/ :)
|
|
*/
|
|
|
|
import os
|
|
import net.http
|
|
|
|
const mirrors = [
|
|
'https://githubone/',
|
|
//'https://bur.curds.dev/mirrors/',
|
|
//'https://os.boreddev.nl/mirrors/'
|
|
]
|
|
|
|
fn main() {
|
|
args := os.args
|
|
|
|
if args.len < 2 {
|
|
println('commands: bur [install|update|upgrade|remove]')
|
|
return
|
|
}
|
|
|
|
cmd := args[1]
|
|
|
|
match cmd {
|
|
'install' {
|
|
if args.len < 3 {
|
|
println('error: please provide a package name')
|
|
return
|
|
}
|
|
install_function(args[2])
|
|
}
|
|
'update' {
|
|
update_function()
|
|
}
|
|
'upgrade' {
|
|
if args.len < 3 {
|
|
println('error: please provide a package name')
|
|
return
|
|
}
|
|
upgrade_function(args[2])
|
|
}
|
|
'remove' {
|
|
if args.len < 3 {
|
|
println('error: please provide a package name')
|
|
return
|
|
}
|
|
remove_function(args[2])
|
|
}
|
|
else {
|
|
println('commands: bur [install|update|upgrade|remove]')
|
|
}
|
|
}
|
|
}
|
|
|
|
fn install_function(name string) {
|
|
mut success := false
|
|
|
|
for mirror in mirrors {
|
|
url := mirror + name + '.c'
|
|
println('trying mirror: $mirror')
|
|
|
|
resp := http.get(url) or {
|
|
println('mirror down skipping...')
|
|
continue
|
|
}
|
|
|
|
if resp.status_code != 200 {
|
|
println('not found on this mirror skipping...')
|
|
continue
|
|
}
|
|
|
|
os.write_file('/tmp/$name.c', resp.body) or {
|
|
println('error failed writing to tmp ')
|
|
return
|
|
}
|
|
|
|
success = true
|
|
break
|
|
}
|
|
|
|
if !success {
|
|
println('error: $name not found on any mirrors!')
|
|
return
|
|
}
|
|
|
|
println('boringly compiling $name')
|
|
|
|
compile_cmd := 'tcc /tmp/$name.c -o /bin/$name.elf'
|
|
res := os.execute(compile_cmd)
|
|
|
|
if res.exit_code == 0 {
|
|
println('boringly compiled $name.elf run $name in your terminal to run')
|
|
os.rm('/tmp/$name.c') or { }
|
|
} else {
|
|
println('oh crud $name failed to compile!')
|
|
println(res.output)
|
|
}
|
|
}
|
|
|
|
fn update_function() {
|
|
println('checking mirror for upds')
|
|
mut success := false
|
|
|
|
for mirror in mirrors {
|
|
manifest_url := mirror + 'manifest.txt'
|
|
resp := http.get(manifest_url) or { continue }
|
|
|
|
if resp.status_code != 200 { continue }
|
|
|
|
os.mkdir_all('/var/db/bur/') or { }
|
|
os.write_file('/var/db/bur/manifest.txt', resp.body) or {
|
|
println('failed to save manifest :(')
|
|
return
|
|
}
|
|
success = true
|
|
break
|
|
}
|
|
|
|
if success {
|
|
println('done! packge list refreshed run bur upgrade [name] to see if it needs a upd')
|
|
} else {
|
|
println('error: could not update from any mirrors')
|
|
}
|
|
}
|
|
|
|
fn upgrade_function(name string) {
|
|
mut remote_hash := ''
|
|
mut success := false
|
|
|
|
for mirror in mirrors {
|
|
hash_url := mirror + name + '.hash'
|
|
resp := http.get(hash_url) or { continue }
|
|
if resp.status_code != 200 { continue }
|
|
|
|
remote_hash = resp.body.trim_space()
|
|
success = true
|
|
break
|
|
}
|
|
|
|
if !success {
|
|
println('error: could not check remote hash on any mirror')
|
|
return
|
|
}
|
|
|
|
hash_path := '/var/db/bur/' + name + '.hash'
|
|
if os.exists(hash_path) {
|
|
local_hash := os.read_file(hash_path) or { '' }.trim_space()
|
|
|
|
if local_hash == remote_hash {
|
|
println('$name is latest version not upgrading')
|
|
return
|
|
}
|
|
}
|
|
|
|
println('new version of $name found upgrading now')
|
|
install_function(name)
|
|
|
|
os.mkdir_all('/var/db/bur/') or { }
|
|
os.write_file(hash_path, remote_hash) or { }
|
|
}
|
|
|
|
fn remove_function(name string) {
|
|
println('removing $name play the bugle ;_;')
|
|
|
|
executable_path := '/bin/$name.elf'
|
|
if os.exists(executable_path) {
|
|
os.rm(executable_path) or {
|
|
println('oh crud could not remove the binary')
|
|
}
|
|
} else {
|
|
println('HEY $name.elf was not found in /bin/!')
|
|
}
|
|
|
|
hash_path := '/var/db/bur/' + name + '.hash'
|
|
if os.exists(hash_path) {
|
|
os.rm(hash_path) or { }
|
|
}
|
|
|
|
println('rip $name it has been removed')
|
|
}
|
|
|
|
// yello this is the bottom of the file
|