Remove certOnly and basicAuth from authentication methods
[dcaegen2/collectors/ves.git] / src / main / java / org / onap / dcae / common / configuration / NoAuth.java
1 /*
2  * ============LICENSE_START=======================================================
3  * PROJECT
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright (C) 2018 Nokia. All rights reserved.s
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.dcae.common.configuration;
23
24 import org.onap.dcae.ApplicationSettings;
25 import org.slf4j.Logger;
26 import org.slf4j.LoggerFactory;
27 import org.springframework.boot.web.servlet.server.ConfigurableServletWebServerFactory;
28
29 public class NoAuth implements AuthMethod {
30
31   private static final Logger log = LoggerFactory.getLogger(NoAuth.class);
32
33   private final ConfigurableServletWebServerFactory container;
34   private final ApplicationSettings properties;
35
36   public NoAuth(ConfigurableServletWebServerFactory container, ApplicationSettings properties) {
37     this.container = container;
38     this.properties = properties;
39   }
40
41   @Override
42   public void configure() {
43     if (validateAuthMethod()){
44       container.setPort(properties.httpsPort());
45       logContainerConfiguration(properties.httpsPort());
46     }
47     else {
48       container.setPort(properties.httpPort());
49       logContainerConfiguration(properties.httpPort());
50     }
51   }
52
53   private boolean validateAuthMethod() {
54     return properties.authMethod().equalsIgnoreCase(AuthMethodType.CERT_BASIC_AUTH.value());
55   }
56
57   private void logContainerConfiguration(int port) {
58     log.info(String.format("Application work in %s mode on %s port.", properties.authMethod(), port));
59   }
60 }