2016-09-14 16:29:58 -04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
from git import Repo
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import yaml
|
|
|
|
|
|
|
|
# constants
|
|
|
|
CONFIG_FILE = 'sfm.yaml'
|
|
|
|
|
|
|
|
# reads configuration and returns the dictionary
|
|
|
|
def read_config():
|
|
|
|
f = open(CONFIG_FILE, 'r')
|
|
|
|
conf = yaml.load(f)
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
return conf
|
|
|
|
|
|
|
|
# makes the formulas directory if it doesn't exist
|
2017-07-19 13:06:00 -04:00
|
|
|
def check_formula_dir(formulas_dir):
|
2016-09-14 16:29:58 -04:00
|
|
|
# check if the formulas directory is actually a directory
|
2017-07-19 13:06:00 -04:00
|
|
|
if not os.path.isdir(formulas_dir):
|
2016-09-14 16:29:58 -04:00
|
|
|
# check if it's a file
|
2017-07-19 13:06:00 -04:00
|
|
|
if os.path.exists(formulas_dir):
|
|
|
|
print(str(formulas_dir) + ' exists but is not a directory. Please fix this.')
|
2016-09-14 16:29:58 -04:00
|
|
|
sys.exit(1)
|
|
|
|
# create it if not
|
|
|
|
else:
|
2017-07-19 13:06:00 -04:00
|
|
|
os.makedirs(formulas_dir)
|
2016-09-14 16:29:58 -04:00
|
|
|
|
2016-09-14 16:58:33 -04:00
|
|
|
# loops through the array of repos and downloads them
|
2017-07-19 13:06:00 -04:00
|
|
|
def get_formulas(formulas, formulas_dir, formulas_url):
|
2016-09-26 16:48:51 -04:00
|
|
|
# loop through the defined formulas
|
2017-07-19 13:06:00 -04:00
|
|
|
for formula in formulas:
|
2017-07-19 13:09:16 -04:00
|
|
|
git_url, local_path = parse_formula_entry(formula, formulas_dir, formulas_url)
|
2016-09-26 16:48:51 -04:00
|
|
|
|
|
|
|
# check if the destination directory exists
|
|
|
|
if os.path.exists(local_path):
|
|
|
|
print(local_path + ' already exists, so we\'re skipping this.')
|
|
|
|
else:
|
|
|
|
print('Downloading ' + git_url + ' into ' + local_path)
|
|
|
|
# clone git repo
|
|
|
|
Repo.clone_from(git_url, local_path)
|
2016-09-14 16:58:33 -04:00
|
|
|
|
2017-07-19 13:09:16 -04:00
|
|
|
# parses a formula entry, and then returns the target git URL and the destination for the clone
|
|
|
|
def parse_formula_entry(formula, formulas_dir, formulas_url):
|
|
|
|
# define our variables to be returned
|
|
|
|
git_url = ''
|
|
|
|
local_path = ''
|
|
|
|
|
|
|
|
# check if the formula entry is a string or a dictionary
|
2017-07-19 13:31:43 -04:00
|
|
|
if isinstance(formula, dict):
|
2017-07-19 13:09:16 -04:00
|
|
|
# entry is a dictionary
|
2017-07-19 13:31:43 -04:00
|
|
|
git_url = str(formula.get('url', formulas_url)) # get the 'url' value if it is defined, otherwise use the default
|
2017-07-19 13:09:16 -04:00
|
|
|
local_path = str(formulas_dir) + '/' + str(formula['name'])
|
|
|
|
elif isinstance(formula, str):
|
|
|
|
# entry is a string
|
|
|
|
git_url = str(formulas_url) + str(formula) + '-formula'
|
|
|
|
local_path = str(formulas_dir) + '/' + str(formula) + '-formula'
|
|
|
|
else:
|
|
|
|
# entry type is not supported
|
2017-07-19 13:31:43 -04:00
|
|
|
print('One of your formula entries is not a dict or a string (' + str(formula) + ') - please fix this.')
|
2017-07-19 13:09:16 -04:00
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
# return the values here
|
|
|
|
return git_url, local_path
|
|
|
|
|
2016-09-29 11:51:46 -04:00
|
|
|
# purge un-managed formulas
|
|
|
|
def clean_formulas(conf):
|
|
|
|
if conf['purge_formulas']:
|
|
|
|
print('Cleaning out unmanaged formulas')
|
|
|
|
|
|
|
|
else:
|
|
|
|
print('Not cleaning out unmanaged formulas')
|
|
|
|
|
2016-09-14 16:29:58 -04:00
|
|
|
# main program
|
|
|
|
def main():
|
|
|
|
# read configuration settings
|
|
|
|
conf = read_config()
|
|
|
|
|
|
|
|
# make sure the formulas directory exists
|
2017-07-19 13:06:00 -04:00
|
|
|
check_formula_dir(conf['formulas_dir'])
|
2016-09-14 16:29:58 -04:00
|
|
|
|
2016-09-14 16:58:33 -04:00
|
|
|
# do the formula stuff
|
2017-07-19 13:06:00 -04:00
|
|
|
get_formulas(conf['formulas'], conf['formulas_dir'], conf['formulas_url'])
|
2016-09-14 16:58:33 -04:00
|
|
|
|
2016-09-29 11:51:46 -04:00
|
|
|
# clean unmanaged formulas
|
2017-07-19 13:06:00 -04:00
|
|
|
#clean_formulas(conf)
|
2016-09-29 11:51:46 -04:00
|
|
|
|
2016-09-14 16:29:58 -04:00
|
|
|
# run main
|
|
|
|
main()
|