Checkstyle fixes
[clamp.git] / src / main / java / org / onap / clamp / clds / config / DefaultUserConfiguration.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights
6  *                             reserved.
7  * ================================================================================
8  * Modifications Copyright (c) 2019 Samsung
9  * ================================================================================
10  * Licensed under the Apache License, Version 2.0 (the "License");
11  * you may not use this file except in compliance with the License.
12  * You may obtain a copy of the License at
13  *
14  * http://www.apache.org/licenses/LICENSE-2.0
15  *
16  * Unless required by applicable law or agreed to in writing, software
17  * distributed under the License is distributed on an "AS IS" BASIS,
18  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19  * See the License for the specific language governing permissions and
20  * limitations under the License.
21  * ============LICENSE_END============================================
22  * ===================================================================
23  *
24  */
25
26 package org.onap.clamp.clds.config;
27
28 import com.att.eelf.configuration.EELFLogger;
29 import com.att.eelf.configuration.EELFManager;
30
31 import java.io.IOException;
32
33 import org.onap.clamp.clds.exception.CldsConfigException;
34 import org.onap.clamp.clds.exception.CldsUsersException;
35 import org.onap.clamp.clds.service.CldsUser;
36 import org.springframework.beans.factory.annotation.Autowired;
37 import org.springframework.beans.factory.annotation.Value;
38 import org.springframework.context.annotation.Configuration;
39 import org.springframework.context.annotation.Profile;
40 import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
41 import org.springframework.security.config.annotation.web.builders.HttpSecurity;
42 import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
43 import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
44 import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
45 import org.springframework.security.crypto.password.PasswordEncoder;
46
47 /**
48  * This class is used to enable the HTTP authentication to login. It requires a
49  * specific JSON file containing the user definition
50  * (classpath:clds/clds-users.json).
51  */
52 @Configuration
53 @EnableWebSecurity
54 @Profile("clamp-default-user")
55 public class DefaultUserConfiguration extends WebSecurityConfigurerAdapter {
56
57     protected static final EELFLogger logger = EELFManager.getInstance().getLogger(DefaultUserConfiguration.class);
58     protected static final EELFLogger metricsLogger = EELFManager.getInstance().getMetricsLogger();
59     private static final String SETUP_WEB_USERS_EXCEPTION_MSG = "Exception occurred during the "
60             + " setup of the Web users in memory";
61     @Autowired
62     private ClampProperties refProp;
63     @Value("${clamp.config.security.permission.type.cl:permission-type-cl}")
64     private String cldsPersmissionTypeCl;
65     @Value("${CLDS_PERMISSION_INSTANCE:dev}")
66     private String cldsPermissionInstance;
67     @Value("${clamp.config.security.encoder:bcrypt}")
68     private String cldsEncoderMethod;
69     @Value("${clamp.config.security.encoder.bcrypt.strength:10}")
70     private Integer cldsBcryptEncoderStrength;
71
72     /**
73      * This method configures on which URL the authorization will be enabled.
74      */
75     @Override
76     protected void configure(HttpSecurity http) {
77         try {
78             http.csrf().disable().httpBasic().and().authorizeRequests().antMatchers("/restservices/clds/v1/user/**")
79                     .authenticated().anyRequest().permitAll().and().logout()
80                     .logoutUrl("/restservices/clds/v1/user/logout").logoutSuccessUrl("/index.html")
81                     .invalidateHttpSession(true).deleteCookies("JSESSIONID").and().sessionManagement()
82                     .maximumSessions(1);
83
84         } catch (Exception e) {
85             logger.error(SETUP_WEB_USERS_EXCEPTION_MSG, e);
86             throw new CldsUsersException(SETUP_WEB_USERS_EXCEPTION_MSG, e);
87         }
88     }
89
90     /**
91      * This method is called by the framework and is used to load all the users
92      * defined in cldsUsersFile variable (this file path can be configured in the
93      * application.properties).
94      *
95      * @param auth authentication manager builder
96      */
97     @Autowired
98     public void configureGlobal(AuthenticationManagerBuilder auth) {
99         // configure algorithm used for password hashing
100         final PasswordEncoder passwordEncoder = getPasswordEncoder();
101
102         try {
103             CldsUser[] usersList = loadUsers();
104             // no users defined
105             if (null == usersList) {
106                 logger.warn("No users defined. Users should be defined under clds-users.json");
107                 return;
108             }
109             for (CldsUser user : usersList) {
110                 auth.inMemoryAuthentication().withUser(user.getUser()).password(user.getPassword())
111                         .authorities(user.getPermissionsString()).and().passwordEncoder(passwordEncoder);
112             }
113         } catch (Exception e) {
114             logger.error(SETUP_WEB_USERS_EXCEPTION_MSG, e);
115             throw new CldsUsersException(SETUP_WEB_USERS_EXCEPTION_MSG, e);
116         }
117     }
118
119     /**
120      * This method loads physically the JSON file and convert it to an Array of
121      * CldsUser.
122      *
123      * @return The array of CldsUser
124      * @throws IOException In case of the file is not found
125      */
126     private CldsUser[] loadUsers() throws IOException {
127         logger.info("Load from clds-users.properties");
128         return CldsUserJsonDecoder.decodeJson(refProp.getFileContent("files.cldsUsers"));
129     }
130
131     /**
132      * This methods returns the chosen encoder for password hashing.
133      */
134     private PasswordEncoder getPasswordEncoder() {
135         if ("bcrypt".equals(cldsEncoderMethod)) {
136             return new BCryptPasswordEncoder(cldsBcryptEncoderStrength);
137         } else {
138             throw new CldsConfigException(
139                     "Invalid clamp.config.security.encoder value. 'bcrypt' is the only option at this time.");
140         }
141     }
142 }