v/tools/vget.v

42 lines
722 B
Go
Raw Normal View History

2019-08-01 01:34:28 +02:00
module main
import (
http
os
json
)
const (
//url = 'http://localhost:8089'
2019-08-05 04:34:12 +02:00
url = 'https://vpm.best'
2019-08-01 01:34:28 +02:00
)
struct Mod {
id int
name string
url string
nr_downloads int
}
fn main() {
if os.args.len != 2 {
println('usage: vget [module]')
return
}
name := os.args.last()
s := http.get_text(url + '/jsmod/$name')
2019-08-05 04:34:12 +02:00
mod := json.decode(Mod, s) or {
println('Error. Make sure you are online.')
return
}
2019-08-01 01:34:28 +02:00
home := os.home_dir()
2019-08-06 21:10:52 +02:00
if !os.dir_exists(home + '/.vmodules') {
2019-08-06 15:51:15 +02:00
println('Creating vmodules directory...')
os.chdir(home)
os.mkdir('.vmodules')
println('Done.')
}
2019-08-06 21:10:52 +02:00
os.exec('git -C "$home/.vmodules" clone --depth=1 $mod.url ' + mod.name.replace('.', '/'))
2019-08-01 01:34:28 +02:00
println(s)
}