summaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-validation-lib/openecomp-sdc-validation-impl/src/main/java/org/openecomp/sdc/validation/impl/validators/ManifestValidator.java
blob: 4ce40f0007743fb814f52564ee4419164c256084 (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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/*-
 * ============LICENSE_START=======================================================
 * SDC
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * 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.openecomp.sdc.validation.impl.validators;

import org.openecomp.core.utilities.json.JsonUtil;
import org.openecomp.core.validation.errors.ErrorMessagesFormatBuilder;
import org.openecomp.core.validation.errors.Messages;
import org.openecomp.core.validation.interfaces.Validator;
import org.openecomp.core.validation.types.GlobalValidationContext;
import org.openecomp.sdc.common.utils.AsdcCommon;
import org.openecomp.sdc.datatypes.error.ErrorLevel;
import org.openecomp.sdc.heat.datatypes.manifest.FileData;
import org.openecomp.sdc.heat.datatypes.manifest.ManifestContent;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.io.InputStream;
import java.util.ArrayList;
import java.util.List;

public class ManifestValidator implements Validator {

  private static Logger logger = LoggerFactory.getLogger(YamlValidator.class);


  @Override
  public void validate(GlobalValidationContext globalContext) {


    InputStream content = globalContext.getFileContent(AsdcCommon.MANIFEST_NAME);
    ManifestContent manifestContent;

    try {
      manifestContent = JsonUtil.json2Object(content, ManifestContent.class);
    } catch (RuntimeException re) {
      globalContext.addMessage(AsdcCommon.MANIFEST_NAME, ErrorLevel.ERROR,
          Messages.INVALID_MANIFEST_FILE.getErrorMessage());
      return;
    }

    List<String> manifestFiles = getManifestFileList(manifestContent, globalContext);
    manifestFiles.stream().filter(name ->
        !globalContext.getFileContextMap().containsKey(name)
    ).forEach(name -> globalContext
        .addMessage(name, ErrorLevel.ERROR, Messages.MISSING_FILE_IN_ZIP.getErrorMessage()));

    globalContext.getFileContextMap().keySet().stream().filter(name ->
        !manifestFiles.contains(name) && !AsdcCommon.MANIFEST_NAME.equals(name)
    ).forEach(name ->
        globalContext.addMessage(name, ErrorLevel.WARNING,
            Messages.MISSING_FILE_IN_MANIFEST.getErrorMessage())
    );

  }

  private List<String> getManifestFileList(ManifestContent manifestContent,
                                           GlobalValidationContext context) {
    ManifestScanner manifestScanner = new ManifestScanner();
    manifestScanner.init(context);
    manifestScanner.scan(null, manifestContent.getData(), context);
    return manifestScanner.getFileList();
  }


  private class ManifestScanner {
    private GlobalValidationContext globalValidationContext;
    private List<String> fileList;

    public void init(GlobalValidationContext globalValidationContext) {
      this.globalValidationContext = globalValidationContext;
      this.fileList = new ArrayList<>();
    }


    public void scan(FileData fileData, List<FileData> data,
                     GlobalValidationContext globalContext) {
      if (fileData == null) {
        for (FileData childFileData : data) {
          if (childFileData.getType() != null
              && childFileData.getType().equals(FileData.Type.HEAT_ENV)) {
            globalContext.addMessage(childFileData.getFile(), ErrorLevel.ERROR,
                ErrorMessagesFormatBuilder
                    .getErrorWithParameters(Messages.ENV_NOT_ASSOCIATED_TO_HEAT.getErrorMessage()));
          }
        }
      }
      if (fileData != null) {
        fileList.add(fileData.getFile());
        validateFileTypeVsFileName(fileData);
      }
      if (data == null) {
        return;
      }
      data.stream().forEach(chileFileData -> {
        scan(chileFileData, chileFileData.getData(), globalContext);
      });
    }


    public List<String> getFileList() {
      return this.fileList;
    }

    private void validateFileTypeVsFileName(FileData fileData) {
      String fileName = fileData.getFile();
      if (fileName == null) {
        this.globalValidationContext.addMessage(AsdcCommon.MANIFEST_NAME, ErrorLevel.ERROR,
            Messages.MISSING_FILE_NAME_IN_MANIFEST.getErrorMessage());

      }
      FileData.Type type = fileData.getType();
      if (type == null) {
        this.globalValidationContext
            .addMessage(fileName, ErrorLevel.ERROR, Messages.INVALID_FILE_TYPE.getErrorMessage());
      } else if (type.equals(FileData.Type.HEAT_NET) || type.equals(FileData.Type.HEAT_VOL)
          || type.equals(FileData.Type.HEAT)) {
        if (fileName != null && !fileName.endsWith(".yml") && !fileName.endsWith(".yaml")) {
          this.globalValidationContext.addMessage(fileName, ErrorLevel.ERROR,
              ErrorMessagesFormatBuilder
                  .getErrorWithParameters(Messages.WRONG_HEAT_FILE_EXTENSION.getErrorMessage(),
                      fileName));
        }
      } else if (type.equals(FileData.Type.HEAT_ENV)) {
        if (fileName != null && !fileName.endsWith(".env")) {
          this.globalValidationContext.addMessage(fileName, ErrorLevel.ERROR,
              ErrorMessagesFormatBuilder
                  .getErrorWithParameters(Messages.WRONG_ENV_FILE_EXTENSION.getErrorMessage(),
                      fileName));
        }
      }
    }
  }


}