aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/dcae/CollectorSchemas.java
blob: fc12b1f9c881481cc2d43ef7b61cd9354fa3a53a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/*
 * ============LICENSE_START=======================================================
 * PROJECT
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 * Copyright (C) 2018 Nokia. All rights reserved.s
 * ================================================================================
 * 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.
 * ============LICENSE_END=========================================================
 */
package org.onap.dcae;

import static java.nio.file.Files.readAllBytes;
import static java.util.stream.Collectors.toMap;

import com.fasterxml.jackson.databind.JsonNode;
import com.github.fge.jackson.JsonLoader;
import com.github.fge.jsonschema.core.exceptions.ProcessingException;
import com.github.fge.jsonschema.main.JsonSchema;
import com.github.fge.jsonschema.main.JsonSchemaFactory;
import java.io.IOException;
import java.nio.file.Paths;
import java.util.AbstractMap;
import java.util.Map;
import org.json.JSONObject;
import org.onap.dcae.restapi.VesRestController;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;

@Component
public class CollectorSchemas {

  private static final Logger LOG = (Logger) LoggerFactory.getLogger(VesRestController.class);

  @Autowired
  private ApplicationSettings collectorProperties;

  //refactor is needed in next iteration
  public Map<String, JsonSchema> getJSONSchemasMap(String version) {
    JSONObject jsonObject = collectorProperties.jsonSchema();
    Map<String, JsonSchema> schemas = jsonObject.toMap().entrySet().stream().map(
        versionToFilePath -> {
          try {
            String schemaContent = new String(
                readAllBytes(Paths.get(versionToFilePath.getValue().toString())));
            JsonNode schemaNode = JsonLoader.fromString(schemaContent);
            JsonSchema schema = JsonSchemaFactory.byDefault().getJsonSchema(schemaNode);
            return new AbstractMap.SimpleEntry<>(versionToFilePath.getKey(), schema);
          } catch (IOException | ProcessingException e) {
            LOG.error("Could not read schema from path: " + versionToFilePath.getValue(), e);
            throw new RuntimeException(
                "Could not read schema from path: " + versionToFilePath.getValue(), e);
          }
        }
    ).collect(toMap(AbstractMap.SimpleEntry::getKey, AbstractMap.SimpleEntry::getValue));
    if (schemas.get(version) == null && collectorProperties.eventTransformingEnabled()) {
      LOG.error(String.format("Missing necessary %s JSON schema", version));
      throw new RuntimeException(String.format("Missing necessary %s JSON schema", version));
    }
    return schemas;
  }
}