2018-12-01 14:24:43 -05:00
|
|
|
#!/bin/python
|
2018-12-06 01:31:03 -05:00
|
|
|
import os
|
2018-12-08 19:01:51 -05:00
|
|
|
import sys
|
|
|
|
import argparse
|
|
|
|
import curses
|
2018-12-08 23:19:25 -05:00
|
|
|
import distutils.dir_util
|
2018-12-08 19:01:51 -05:00
|
|
|
import lib.deploy as deploy
|
2018-12-08 23:19:25 -05:00
|
|
|
from pathlib import Path
|
2018-12-06 01:31:03 -05:00
|
|
|
from lib.parse import parse
|
|
|
|
from lib.package import Category, Package
|
|
|
|
from lib.menu import Menu, ChecklistMenu
|
2018-12-01 14:24:43 -05:00
|
|
|
|
2018-12-08 19:01:51 -05:00
|
|
|
parsed_categories = parse('packages.yml')
|
|
|
|
parsed_packages = [pkg for pkglist in list(map(lambda c: c.packages, parsed_categories)) for pkg in pkglist]
|
2018-12-01 14:24:43 -05:00
|
|
|
|
2018-12-06 01:31:03 -05:00
|
|
|
run_installer = False
|
|
|
|
def run():
|
2018-12-08 19:01:51 -05:00
|
|
|
for category in [c for c in parsed_categories if c.enabled]:
|
2018-12-06 01:31:03 -05:00
|
|
|
for package in category.packages:
|
|
|
|
configure(package)
|
2018-12-01 14:24:43 -05:00
|
|
|
|
2018-12-08 23:19:25 -05:00
|
|
|
def dump(package):
|
|
|
|
print(package.name + ':')
|
|
|
|
for k, v in package.getattrs():
|
|
|
|
print(' ' + k, v)
|
|
|
|
|
|
|
|
def lookup_package(name):
|
|
|
|
try:
|
|
|
|
package = next(p for p in parsed_packages if p.name == name or p.alias == name)
|
|
|
|
return package
|
|
|
|
except StopIteration:
|
|
|
|
raise Exception('Package not found: ' + name)
|
|
|
|
|
2018-12-01 14:24:43 -05:00
|
|
|
class App:
|
|
|
|
def __init__(self, stdscreen):
|
|
|
|
self.screen = stdscreen
|
|
|
|
curses.curs_set(0)
|
|
|
|
|
2018-12-06 01:31:03 -05:00
|
|
|
def exit_and_run():
|
|
|
|
global run_installer
|
|
|
|
run_installer = True
|
|
|
|
main_menu.exit()
|
|
|
|
|
2018-12-08 19:01:51 -05:00
|
|
|
package_options_menu = Category.config_menu(self.screen, parsed_categories)
|
2018-12-06 01:31:03 -05:00
|
|
|
|
|
|
|
main_menu = Menu(self.screen, 'Main Menu', [
|
|
|
|
('Package Options', package_options_menu.display),
|
|
|
|
('Run Installer', exit_and_run)
|
|
|
|
])
|
2018-12-01 14:24:43 -05:00
|
|
|
|
|
|
|
main_menu.display()
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2018-12-08 19:01:51 -05:00
|
|
|
parser = argparse.ArgumentParser(description="Foltik's super cool dotfiles install script")
|
|
|
|
parser.add_argument('packages', metavar='pkg', type=str, nargs='*')
|
2018-12-08 23:28:56 -05:00
|
|
|
parser.add_argument('-a', '--all', dest='all', action='store_const', const=True,
|
2018-12-08 23:19:25 -05:00
|
|
|
help='Run on all packages')
|
2018-12-08 19:01:51 -05:00
|
|
|
|
|
|
|
actions = [
|
2018-12-08 23:28:56 -05:00
|
|
|
('-d', '--deploy', deploy.deploy, 'alias for -icsue'),
|
|
|
|
('-i', '--install', deploy.install, 'install package'),
|
|
|
|
('-c', '--config', deploy.export_config, 'export package config'),
|
|
|
|
('-s', '--script', deploy.run_script, 'run package script'),
|
|
|
|
('-u', '--units', deploy.export_units, 'export and enable package units'),
|
|
|
|
('-e', '--enable-units', deploy.enable_units, 'enable package units'),
|
|
|
|
('-C', '--import-config', deploy.import_config, 'import package config'),
|
|
|
|
('-U', '--import-units', deploy.import_units, 'import package units'),
|
2018-12-09 00:46:03 -05:00
|
|
|
('-l', '--dump', dump, 'dump package attributes'),
|
|
|
|
('-Dc', '--diff-config', deploy.diff_config, 'diff local and repo config'),
|
|
|
|
('-Du', '--diff-units', deploy.diff_units, 'diff local and repo units')
|
2018-12-08 19:01:51 -05:00
|
|
|
]
|
|
|
|
|
|
|
|
for action in actions:
|
|
|
|
parser.add_argument(action[0], action[1], dest='actions', action='append_const', const=action[2], help=action[3])
|
|
|
|
|
|
|
|
args = parser.parse_args()
|
2018-12-01 14:24:43 -05:00
|
|
|
|
2018-12-08 23:19:25 -05:00
|
|
|
if args.actions != None and args.packages == [] and args.all == True:
|
|
|
|
for package in parsed_packages:
|
|
|
|
for action in args.actions:
|
|
|
|
action(package)
|
|
|
|
elif args.actions != None and args.packages != []:
|
|
|
|
for package in args.packages:
|
|
|
|
for action in args.actions:
|
|
|
|
action(lookup_package(package))
|
|
|
|
else:
|
2018-12-08 19:01:51 -05:00
|
|
|
os.environ.setdefault('ESCDELAY', '0')
|
|
|
|
curses.wrapper(App)
|
|
|
|
if run_installer:
|
|
|
|
run()
|
2018-12-08 23:19:25 -05:00
|
|
|
|
|
|
|
if Path('git').is_dir():
|
|
|
|
distutils.dir_util.remove_tree('git')
|