Adds support for storing and getting vim creds
[osm/MON.git] / osm_mon / core / database.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 logging
26
27 from peewee import *
28 from playhouse.sqlite_ext import SqliteExtDatabase
29
30 from osm_mon.plugins.OpenStack.settings import Config
31
32 log = logging.getLogger(__name__)
33 cfg = Config.instance()
34
35 db = SqliteExtDatabase('mon.db')
36
37
38 class BaseModel(Model):
39 class Meta:
40 database = db
41
42
43 class VimCredentials(BaseModel):
44 uuid = CharField()
45 name = CharField()
46 type = CharField()
47 url = CharField()
48 user = CharField()
49 password = CharField()
50 tenant_name = CharField()
51 config = TextField()
52
53
54 class DatabaseManager:
55 def create_tables(self):
56 try:
57 db.connect()
58 db.create_tables([VimCredentials])
59 db.close()
60 except Exception as e:
61 log.exception("Error creating tables: ")
62
63 def get_credentials(self, vim_uuid):
64 return VimCredentials.get(VimCredentials.uuid == vim_uuid)
65
66 def save_credentials(self, vim_credentials):
67 vim_credentials.save()