Reviewed-on: #45 Reviewed-by: Gode, Sebastian <sebastian.gode@t-systems.com> Co-authored-by: tischrei <tino.schreiber@t-systems.com> Co-committed-by: tischrei <tino.schreiber@t-systems.com>
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
# 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.
 | 
						|
 | 
						|
from pathlib import Path
 | 
						|
import json
 | 
						|
 | 
						|
BASE_DIR = Path(__file__).resolve().parent
 | 
						|
analytics_path = BASE_DIR / "public"
 | 
						|
 | 
						|
cloud_environments = [
 | 
						|
    'eu_de',
 | 
						|
    'swiss'
 | 
						|
]
 | 
						|
analytics_data = {k: [] for k in cloud_environments}
 | 
						|
 | 
						|
# Open and read the json data files
 | 
						|
for env in cloud_environments:
 | 
						|
    file_path = analytics_path / f"{env}.json"
 | 
						|
    with file_path.open(encoding="utf-8") as file:
 | 
						|
        analytics_data[env] = json.load(file)
 | 
						|
 | 
						|
 | 
						|
class AnalyticsData(object):
 | 
						|
    """Encapsulate OTC Analystics data"""
 | 
						|
 | 
						|
    def __init__(self):
 | 
						|
        self._analytics_data = analytics_data
 | 
						|
 | 
						|
    def all_analytics_data(self):
 | 
						|
        """returns all analytics data"""
 | 
						|
        return self._analytics_data
 | 
						|
 | 
						|
    def analytics_data_by_cloud_environment(self, cloud_environment):
 | 
						|
        """returns all analytics data"""
 | 
						|
        if cloud_environment and cloud_environment in self._analytics_data:
 | 
						|
            return self._analytics_data[cloud_environment]
 | 
						|
        else:
 | 
						|
            raise ValueError(f"cloud_environment '{cloud_environment}' does not exist.")
 |