X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=osm_mon%2Fcore%2Fcommon_db.py;h=4f6ace0b667a487638b675e8081c2bc2a7f141b2;hb=a3807d877278a41310fbb7561ae2f92f2fee7b93;hp=df8db6079d7626985021a1d2d23770be463f5e02;hpb=8e4179facf22c8096992f0a83caeec9f2f4996c7;p=osm%2FMON.git diff --git a/osm_mon/core/common_db.py b/osm_mon/core/common_db.py index df8db60..4f6ace0 100644 --- a/osm_mon/core/common_db.py +++ b/osm_mon/core/common_db.py @@ -144,6 +144,15 @@ class CommonDbClient: ) return vim_account + def set_vim_account(self, vim_account_id: str, update_dict: dict) -> bool: + try: + # Set vim_account resources in mongo + self.common_db.set_one('vim_accounts', {"_id": vim_account_id}, update_dict) + # self.common_db.set_one('vim_accounts', {"name": "test-vim"}, update_dict) + return True + except Exception: + return False + def get_sdncs(self): return self.common_db.get_list("sdns") @@ -156,10 +165,16 @@ class CommonDbClient: def get_project(self, project_id: str): return self.common_db.get_one("projects", {"_id": project_id}) + def get_k8sclusters(self): + return self.common_db.get_list("k8sclusters") + def create_alarm(self, alarm: Alarm): + action_data = {"uuid": alarm.uuid, "action": alarm.action} + self.common_db.create("alarms_action", action_data) return self.common_db.create("alarms", alarm.to_dict()) def delete_alarm(self, alarm_uuid: str): + self.common_db.del_one("alarms_action", {"uuid": alarm_uuid}) return self.common_db.del_one("alarms", {"uuid": alarm_uuid}) def get_alarms(self) -> List[Alarm]: @@ -169,6 +184,13 @@ class CommonDbClient: alarms.append(Alarm.from_dict(alarm_dict)) return alarms + def update_alarm_status(self, alarm_state: str, uuid): + modified_count = self.common_db.set_one("alarms", {"uuid": uuid}, {"alarm_status": alarm_state}) + return modified_count + + def get_alarm_by_uuid(self, uuid: str): + return self.common_db.get_one("alarms", {"uuid": uuid}) + def get_user(self, username: str): return self.common_db.get_one("users", {"username": username})