Modifies MON to use mongodb directly for vim info and do vim pass decryption on demand
[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 import os
27 from typing import Iterable
28
29 from peewee import CharField, FloatField, Model, AutoField, Proxy
30 from peewee_migrate import Router
31 from playhouse.db_url import connect
32
33 from osm_mon import migrations
34 from osm_mon.core.config import Config
35
36 log = logging.getLogger(__name__)
37
38 db = Proxy()
39
40
41 class BaseModel(Model):
42 id = AutoField(primary_key=True)
43
44 class Meta:
45 database = db
46
47
48 class Alarm(BaseModel):
49 uuid = CharField(unique=True)
50 name = CharField()
51 severity = CharField()
52 threshold = FloatField()
53 operation = CharField()
54 statistic = CharField()
55 monitoring_param = CharField()
56 vdur_name = CharField()
57 vnf_member_index = CharField()
58 nsr_id = CharField()
59
60
61 class DatabaseManager:
62 def __init__(self, config: Config):
63 db.initialize(connect(config.get('sql', 'database_uri')))
64
65 def create_tables(self) -> None:
66 db.connect()
67 with db.atomic():
68 router = Router(db, os.path.dirname(migrations.__file__))
69 router.run()
70 db.close()
71
72
73 class AlarmRepository:
74 @staticmethod
75 def create(**query) -> Alarm:
76 return Alarm.create(**query)
77
78 @staticmethod
79 def get(*expressions) -> Alarm:
80 return Alarm.select().where(*expressions).get()
81
82 @staticmethod
83 def list(*expressions) -> Iterable[Alarm]:
84 if expressions == ():
85 return Alarm.select()
86 else:
87 return Alarm.select().where(*expressions)