bug(keystone): dashboards for projects saved in keystone instead of mongoDB. Bug...
[osm/MON.git] / osm_mon / core / keystone.py
diff --git a/osm_mon/core/keystone.py b/osm_mon/core/keystone.py
new file mode 100644 (file)
index 0000000..d79ea89
--- /dev/null
@@ -0,0 +1,58 @@
+# -*- coding: utf-8 -*-
+
+# Copyright 2021 Whitestack, LLC
+# *************************************************************
+
+# This file is part of OSM Monitoring module
+# All Rights Reserved to Whitestack, LLC
+
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+
+#         http://www.apache.org/licenses/LICENSE-2.0
+
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+# For those usages not covered by the Apache License, Version 2.0 please
+# contact: fbravo@whitestack.com
+##
+
+from keystoneauth1.identity import v3
+from keystoneauth1 import session
+from keystoneclient.v3 import client
+
+
+class KeystoneConnection:
+    """
+    Object representing a connection with keystone, it's main use is to collect
+    projects and users from the OSM platform stored in keystone instead MongoDB
+    """
+    def __init__(self, config):
+        self.auth_url = config.get('keystone', 'url')
+        self.username = config.get('keystone', 'service_user')
+        self.project_name = config.get('keystone', 'service_project')
+        self.project_domain_name_list = config.get('keystone', 'service_project_domain_name').split(",")
+        self.password = config.get('keystone', 'service_password')
+        self.user_domain_name_list = config.get('keystone', 'domain_name').split(",")
+
+        self.auth = v3.Password(
+            auth_url=self.auth_url,
+            user_domain_name=self.user_domain_name_list[0],
+            username=self.username,
+            password=self.password,
+            project_domain_name=self.project_domain_name_list[0],
+            project_name=self.project_name
+        )
+
+        self.keystone_session = session.Session(auth=self.auth)
+        self.keystone_client = client.Client(session=self.keystone_session, endpoint_override=self.auth_url)
+
+    def getProjects(self):
+        """
+        Grabs projects from keystone using the client and session build in the constructor
+        """
+        return self.keystone_client.projects.list()