2021-06-19 16:33:47 +02:00
|
|
|
import sequtils
|
2021-05-18 22:10:35 +02:00
|
|
|
import options
|
2021-06-19 16:33:47 +02:00
|
|
|
import bwrap
|
|
|
|
import utils
|
|
|
|
import json
|
2021-05-18 22:10:35 +02:00
|
|
|
|
|
|
|
type Link* = object
|
|
|
|
src*: string
|
|
|
|
dst*: string
|
|
|
|
|
|
|
|
type Config* = object
|
2021-06-19 16:33:47 +02:00
|
|
|
extends*: Option[string]
|
2021-06-16 19:48:13 +02:00
|
|
|
mount*: Option[seq[string]]
|
|
|
|
romount*: Option[seq[string]]
|
|
|
|
symlinks*: Option[seq[Link]]
|
2021-06-20 14:09:30 +02:00
|
|
|
mountcwd*: Option[bool]
|
|
|
|
privileged*: Option[bool]
|
|
|
|
sethostname*: Option[bool]
|
2021-06-19 16:33:47 +02:00
|
|
|
|
|
|
|
proc applyConfig*(call: var BwrapCall, config: Config) =
|
|
|
|
for mount in config.mount.get(@[]):
|
|
|
|
call.addMount("--bind", checkRelativePath(mount))
|
|
|
|
|
|
|
|
for mount in config.romount.get(@[]):
|
|
|
|
call.addMount("--ro-bind", checkRelativePath(mount))
|
|
|
|
|
|
|
|
for symlink in config.symlinks.get(@[]):
|
|
|
|
call.addArg("--symlink", symlink.src, symlink.dst)
|
|
|
|
|
|
|
|
proc loadConfig*(path: string): Config =
|
|
|
|
return readFile(path)
|
|
|
|
.parseJson()
|
|
|
|
.to(Config)
|
|
|
|
|
|
|
|
proc extendConfig*(config: var Config): Config {.discardable.} =
|
|
|
|
if config.extends.isNone:
|
|
|
|
return
|
|
|
|
|
|
|
|
var eConf = loadConfig(getProfilePath(config.extends.unsafeGet))
|
|
|
|
eConf.extendConfig()
|
|
|
|
|
|
|
|
config.mount = some(config.mount.get(@[]).concat(eConf.mount.get(@[])))
|
|
|
|
config.romount = some(config.romount.get(@[]).concat(eConf.romount.get(@[])))
|
|
|
|
config.symlinks = some(config.symlinks.get(@[]).concat(eConf.symlinks.get(@[])))
|
2021-06-20 14:09:30 +02:00
|
|
|
config.mountcwd = some(config.mountcwd.get(eConf.mountcwd.get(false)))
|
|
|
|
config.sethostname = some(config.sethostname.get(eConf.sethostname.get(false)))
|
2021-06-19 16:33:47 +02:00
|
|
|
|
|
|
|
return config
|