You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
2.3 KiB
87 lines
2.3 KiB
#
|
|
# Copyright 2025 Splunk Inc.
|
|
#
|
|
# 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.
|
|
#
|
|
|
|
|
|
import traceback
|
|
|
|
from ..rest_handler.schema import RestSchema, RestSchemaError
|
|
|
|
|
|
class GlobalConfigSchema(RestSchema):
|
|
def __init__(self, content, *args, **kwargs):
|
|
"""
|
|
|
|
:param content: Python object for Global Config Schema
|
|
:param args:
|
|
:param kwargs:
|
|
"""
|
|
super().__init__(*args, **kwargs)
|
|
self._content = content
|
|
self._inputs = []
|
|
self._configs = []
|
|
self._settings = []
|
|
|
|
try:
|
|
self._parse()
|
|
except Exception:
|
|
raise RestSchemaError(
|
|
"Invalid Global Config Schema: %s" % traceback.format_exc(),
|
|
)
|
|
|
|
@property
|
|
def product(self):
|
|
return self._meta["name"]
|
|
|
|
@property
|
|
def namespace(self):
|
|
return self._meta["restRoot"]
|
|
|
|
@property
|
|
def admin_match(self):
|
|
return ""
|
|
|
|
@property
|
|
def inputs(self):
|
|
return self._inputs
|
|
|
|
@property
|
|
def configs(self):
|
|
return self._configs
|
|
|
|
@property
|
|
def settings(self):
|
|
return self._settings
|
|
|
|
def _parse(self):
|
|
self._meta = self._content["meta"]
|
|
pages = self._content["pages"]
|
|
self._parse_configuration(pages.get("configuration"))
|
|
self._parse_inputs(pages.get("inputs"))
|
|
|
|
def _parse_configuration(self, configurations):
|
|
if not configurations or "tabs" not in configurations:
|
|
return
|
|
for configuration in configurations["tabs"]:
|
|
if "table" in configuration:
|
|
self._configs.append(configuration)
|
|
else:
|
|
self._settings.append(configuration)
|
|
|
|
def _parse_inputs(self, inputs):
|
|
if not inputs or "services" not in inputs:
|
|
return
|
|
self._inputs = inputs["services"]
|