Copy dcae-cli->onboardingapi, copy component specs
[dcaegen2/platform.git] / mod / onboardingapi / dcae_cli / catalog / mock / schema.py
1 # ============LICENSE_START=======================================================
2 # org.onap.dcae
3 # ================================================================================
4 # Copyright (c) 2017-2018 AT&T Intellectual Property. All rights reserved.
5 # ================================================================================
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #      http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 # ============LICENSE_END=========================================================
18 #
19 # ECOMP is a trademark and service mark of AT&T Intellectual Property.
20
21 # -*- coding: utf-8 -*-
22 """
23 Provides jsonschema
24 """
25 import json
26 from functools import partial, reduce
27
28 import six
29 from jsonschema import validate, ValidationError
30 import requests
31
32 from dcae_cli.util import reraise_with_msg, fetch_file_from_web
33 from dcae_cli.util import config as cli_config
34 from dcae_cli.util.exc import DcaeException
35 from dcae_cli.util.logger import get_logger
36
37
38 log = get_logger('Schema')
39
40 # UPDATE: This message applies to the component spec which has been moved on a
41 # remote server.
42 #
43 # WARNING: The below has a "oneOf" for service provides, that will validate as long as any of them are chosen.
44 # However, this is wrong because what we really want is something like:
45 #     if component_type == docker
46 #       provides = foo
47 #     elif component_type == cdap
48 #       provides = bar
49 # The unlikely but problematic  case is the cdap developer gets a hold of the docker documentation, uses that, it validates, and blows up at cdap runtime
50
51
52 # TODO: The next step here is to decide how to manage the links to the schemas. Either:
53 #
54 #   a) Manage the links in the dcae-cli tool here and thus need to ask if this
55 #   belongs in the config to point to some remote server or even point to local
56 #   machine.
57 #   UPDATE: This item has been mostly completed where at least the path is configurable now.
58
59 #   b) Read the links to the schemas from the spec - self-describing jsons. Is
60 #   this even feasible?
61
62 #   c) Both
63 #
64
65 class FetchSchemaError(RuntimeError):
66     pass
67
68 def _fetch_schema(schema_path):
69     try:
70         server_url = cli_config.get_server_url()
71         return fetch_file_from_web(server_url, schema_path)
72     except requests.HTTPError as e:
73         raise FetchSchemaError("HTTP error from fetching schema", e)
74     except Exception as e:
75         raise FetchSchemaError("Unexpected error from fetching schema", e)
76
77
78 def _safe_dict(obj):
79     '''Returns a dict from a dict or json string'''
80     if isinstance(obj, str):
81         return json.loads(obj)
82     else:
83         return obj
84
85 def _validate(fetch_schema_func, schema_path, spec):
86     '''Validate the given spec
87
88     Fetch the schema and then validate. Upon a error from fetching or validation,
89     a DcaeException is raised.
90
91     Parameters
92     ----------
93     fetch_schema_func: function that takes schema_path -> dict representation of schema
94         throws a FetchSchemaError upon any failure
95     schema_path: string - path to schema
96     spec: dict or string representation of JSON of schema instance
97
98     Returns
99     -------
100     Nothing, silence is golden
101     '''
102     try:
103         schema = fetch_schema_func(schema_path)
104         validate(_safe_dict(spec), schema)
105     except ValidationError as e:
106         reraise_with_msg(e, as_dcae=True)
107     except FetchSchemaError as e:
108         reraise_with_msg(e, as_dcae=True)
109
110 _validate_using_nexus = partial(_validate, _fetch_schema)
111
112
113 def apply_defaults(properties_definition, properties):
114     """Utility method to enforce expected defaults
115
116     This method is used to enforce properties that are *expected* to have at least
117     the default if not set by a user.  Expected properties are not required but
118     have a default set.  jsonschema does not provide this.
119
120     Parameters
121     ----------
122     properties_definition: dict of the schema definition of the properties to use
123         for verifying and applying defaults
124     properties: dict of the target properties to verify and apply defaults to
125
126     Return
127     ------
128     dict - a new version of properties that has the expected default values
129     """
130     # Recursively process all inner objects. Look for more properties and not match
131     # on type
132     for k,v in six.iteritems(properties_definition):
133         if "properties" in v:
134             properties[k] = apply_defaults(v["properties"], properties.get(k, {}))
135
136     # Collect defaults
137     defaults = [ (k, v["default"]) for k, v in properties_definition.items() if "default" in v ]
138
139     def apply_default(accumulator, default):
140         k, v = default
141         if k not in accumulator:
142             # Not doing data type checking and any casting. Assuming that this
143             # should have been taken care of in validation
144             accumulator[k] = v
145         return accumulator
146
147     return reduce(apply_default, defaults, properties)
148
149 def apply_defaults_docker_config(config):
150     """Apply expected defaults to Docker config
151     Parameters
152     ----------
153     config: Docker config dict
154     Return
155     ------
156     Updated Docker config dict
157     """
158     # Apply health check defaults
159     healthcheck_type = config["healthcheck"]["type"]
160     component_spec = _fetch_schema(cli_config.get_path_component_spec())
161
162     if healthcheck_type in ["http", "https"]:
163         apply_defaults_func = partial(apply_defaults,
164                 component_spec["definitions"]["docker_healthcheck_http"]["properties"])
165     elif healthcheck_type in ["script"]:
166         apply_defaults_func = partial(apply_defaults,
167                 component_spec["definitions"]["docker_healthcheck_script"]["properties"])
168     else:
169         # You should never get here
170         apply_defaults_func = lambda x: x
171
172     config["healthcheck"] = apply_defaults_func(config["healthcheck"])
173
174     return config
175
176 def validate_component(spec):
177     _validate_using_nexus(cli_config.get_path_component_spec(), spec)
178
179     # REVIEW: Could not determine how to do this nicely in json schema. This is
180     # not ideal. We want json schema to be the "it" for validation.
181     ctype = component_type = spec["self"]["component_type"]
182
183     if ctype == "cdap":
184         invalid = [s for s in spec["streams"].get("subscribes", []) \
185                 if s["type"] in ["data_router", "data router"]]
186         if invalid:
187             raise DcaeException("Cdap component as data router subscriber is not supported.")
188
189 def validate_format(spec):
190     path = cli_config.get_path_data_format()
191     _validate_using_nexus(path, spec)