8c958c160756f15649f7d18cf0bef26a8a78848e
[osm/LCM.git] / osm_lcm / data_utils / database / wim_account.py
1 # -*- coding: utf-8 -*-
2
3 # This file is part of OSM Life-Cycle Management module
4 #
5 # Copyright 2022 ETSI
6 #
7 # Licensed under the Apache License, Version 2.0 (the "License"); you may
8 # not use this file except in compliance with the License. You may obtain
9 # a copy of the License at
10 #
11 # http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
15 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
16 # License for the specific language governing permissions and limitations
17 # under the License.
18 ##
19
20 from osm_lcm.data_utils.database.database import Database
21
22 __author__ = (
23 "Lluis Gifre <lluis.gifre@cttc.es>, Ricard Vilalta <ricard.vilalta@cttc.es>"
24 )
25
26
27 class WimAccountDB:
28 db = None
29 db_wims = {}
30
31 @classmethod
32 def initialize_db(cls):
33 cls.db = Database().instance.db
34
35 @classmethod
36 def get_all_wim_accounts(cls):
37 if not cls.db:
38 cls.initialize_db()
39 db_wims_list = cls.db.get_list("wim_accounts")
40 cls.db_wims.update({db_wim["_id"]: db_wim for db_wim in db_wims_list})
41 return cls.db_wims