X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=juju%2Fcontroller.py;h=f0ef3b9e8f37474166f9d2df19ddb73cfacdd7f4;hb=a8b2f06681b3cc5e76eef00a73eedc425f74af2b;hp=e0f8066b6a6f553dc8c4ea3d53d5b85c54c91fd1;hpb=596ccbe375a3a45e1625b798bb42da3df284ed09;p=osm%2FN2VC.git diff --git a/juju/controller.py b/juju/controller.py index e0f8066..f0ef3b9 100644 --- a/juju/controller.py +++ b/juju/controller.py @@ -1,5 +1,34 @@ +import asyncio +import logging + +from .client import client +from .client import connection +from .client import watcher +from .model import Model + +log = logging.getLogger(__name__) + + class Controller(object): - def add_model(self, name, config=None, credential=None, owner=None): + async def connect_current(self): + """Connect to the current Juju controller. + + """ + self.connection = ( + await connection.Connection.connect_current_controller()) + + async def disconnect(self): + """Shut down the watcher task and close websockets. + + """ + if self.connection and self.connection.is_open: + log.debug('Closing controller connection') + await self.connection.close() + self.connection = None + + async def add_model( + self, name, cloud, credential, owner=None, + config=None, region=None): """Add a model to this controller. :param str name: Name of the model @@ -8,7 +37,57 @@ class Controller(object): :param str owner: Owner username """ - pass + model_facade = client.ModelManagerFacade() + model_facade.connect(self.connection) + + log.debug('Creating model %s', name) + + model_info = await model_facade.CreateModel( + cloud, + config, + credential, + name, + owner or self.connection.info['user-info']['identity'], + region, + ) + + model = Model() + await model.connect( + self.connection.endpoint, + model_info.uuid, + self.connection.username, + self.connection.password, + self.connection.cacert, + self.connection.macaroons, + ) + + return model + + async def destroy_models(self, *args): + + """Destroy a model to this controller. + + :param str : of the Model + param accepts string of only OR `model-` + + + """ + model_facade = client.ModelManagerFacade() + model_facade.connect(self.connection) + + #Generate list of args, pre-pend 'model-' + prependarg = list(args) + for index, item in enumerate(prependarg): + if not item.startswith('model-'): + prependarg[index]="model-%s" % item + + #Create list of objects to pass to DestroyModels() + arglist = [] + for arg in prependarg: + arglist.append(client.Entity(arg)) + log.debug('Destroying Model %s', arg) + + await model_facade.DestroyModels(arglist) def add_user(self, username, display_name=None, acl=None, models=None): """Add a user to this controller.