aboutsummaryrefslogtreecommitdiffstats
path: root/opnfv/deployment/factory.py
blob: 1ccee4e805e016c65ca1859f9fcebc522bbaf022 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
##############################################################################
# Copyright (c) 2017 Ericsson AB and others.
# Author: Jose Lausuch (jose.lausuch@ericsson.com)
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################


from opnfv.deployment.apex import adapter as apex_adapter
from opnfv.deployment.fuel import adapter as fuel_adapter
from opnfv.utils import opnfv_logger as logger

logger = logger.Logger(__name__).getLogger()


class Factory(object):

    INSTALLERS = ["fuel", "apex", "compass", "joid", "daisy"]

    def __init__(self):
        pass

    @staticmethod
    def get_handler(installer,
                    installer_ip,
                    installer_user,
                    installer_pwd=None,
                    pkey_file=None):

        if installer not in Factory.INSTALLERS:
            raise Exception("This is not an OPNFV installer.")

        if installer.lower() == "apex":
            return apex_adapter.ApexAdapter(installer_ip=installer_ip,
                                            installer_user=installer_user,
                                            pkey_file=pkey_file)
        elif installer.lower() == "fuel":
            return fuel_adapter.FuelAdapter(installer_ip=installer_ip,
                                            installer_user=installer_user,
                                            installer_pwd=installer_pwd)
        else:
            raise Exception("Installer adapter is not implemented for "
                            "the given installer.")