4627a30c7a9e5d218a68149506723e0f166b193c
[osm/MON.git] / osm_mon / core / auth.py
1 # -*- coding: utf-8 -*-
2
3 # Copyright 2018 Whitestack, LLC
4 # *************************************************************
5
6 # This file is part of OSM Monitoring module
7 # All Rights Reserved to Whitestack, LLC
8
9 # Licensed under the Apache License, Version 2.0 (the "License"); you may
10 # not use this file except in compliance with the License. You may obtain
11 # a copy of the License at
12
13 # http://www.apache.org/licenses/LICENSE-2.0
14
15 # Unless required by applicable law or agreed to in writing, software
16 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
17 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
18 # License for the specific language governing permissions and limitations
19 # under the License.
20
21 # For those usages not covered by the Apache License, Version 2.0 please
22 # contact: bdiaz@whitestack.com or glavado@whitestack.com
23 ##
24
25 import json
26 import logging
27
28 from osm_mon.core.config import Config
29
30 from osm_mon.core.database import VimCredentials, DatabaseManager
31
32 log = logging.getLogger(__name__)
33
34
35 class AuthManager:
36 def __init__(self, config: Config):
37 self.database_manager = DatabaseManager(config)
38
39 def store_auth_credentials(self, creds_dict):
40 log.info(creds_dict)
41 credentials = VimCredentials()
42 credentials.uuid = creds_dict['_id']
43 credentials.name = creds_dict['name']
44 credentials.type = creds_dict['vim_type']
45 credentials.url = creds_dict['vim_url']
46 credentials.user = creds_dict['vim_user']
47 credentials.password = creds_dict['vim_password']
48 credentials.tenant_name = creds_dict['vim_tenant_name']
49 if 'config' not in creds_dict:
50 creds_dict['config'] = {}
51 credentials.config = json.dumps(creds_dict['config'])
52 self.database_manager.save_credentials(credentials)
53
54 def get_credentials(self, vim_uuid):
55 creds = self.database_manager.get_credentials(vim_uuid)
56 return creds
57
58 def delete_auth_credentials(self, creds_dict):
59 credentials = self.get_credentials(creds_dict['_id'])
60 if credentials:
61 credentials.delete_instance()
62
63 def get_config(self, vim_uuid):
64 return json.loads(self.get_credentials(vim_uuid).config)
65
66 def is_verify_ssl(self, vim_uuid):
67 vim_config = self.get_config(vim_uuid)
68 return 'insecure' not in vim_config or vim_config['insecure'] is False