Source code for bowl.cli_opts.connect

"""
This module is the connect command of bowl.

Created on 15 March 2014
@author: Charlie Lewis
"""

import ast
import os

[docs]class connect(object): """ This class is responsible for the connect command of the cli. """ @classmethod
[docs] def main(self, args): directory = args.metadata_path directory = os.path.expanduser(directory) if not os.path.exists(directory): os.makedirs(directory) # !! TODO # test connection # allow different port exists = False try: if os.path.exists(os.path.join(directory, "hosts")): with open(os.path.join(directory, "hosts"), 'r') as f: for line in f: repo = ast.literal_eval(line.strip()) if repo['title'] == args.DOCKER_HOST: exists = True if not exists: with open(os.path.join(directory, "hosts"), 'a') as f: f.write("{" + "'title': '"+args.DOCKER_HOST+"'," + " 'type': 'choice_menu'" + "}\n") else: print "host has already been connected" except: print "unable to add docker host" return False return True