Remove logout
[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 import java.io.IOException;
31 import org.onap.clamp.authorization.CldsUser;
32 import org.onap.clamp.clds.exception.CldsConfigException;
33 import org.onap.clamp.clds.exception.CldsUsersException;
34 import org.springframework.beans.factory.annotation.Autowired;
35 import org.springframework.beans.factory.annotation.Value;
36 import org.springframework.context.annotation.Configuration;
37 import org.springframework.context.annotation.Profile;
38 import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
39 import org.springframework.security.config.annotation.web.builders.HttpSecurity;
40 import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
41 import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
42 import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
43 import org.springframework.security.crypto.password.PasswordEncoder;
44
45 /**
46  * This class is used to enable the HTTP authentication to login. It requires a
47  * specific JSON file containing the user definition
48  * (classpath:clds/clds-users.json).
49  */
50 @Configuration
51 @EnableWebSecurity
52 @Profile("clamp-default-user")
53 public class DefaultUserConfiguration extends WebSecurityConfigurerAdapter {
54
55     protected static final EELFLogger logger = EELFManager.getInstance().getLogger(DefaultUserConfiguration.class);
56
57     private static final String SETUP_WEB_USERS_EXCEPTION_MSG = "Exception occurred during the "
58             + " setup of the Web users in memory";
59     @Autowired
60     private ClampProperties refProp;
61     @Value("${clamp.config.security.permission.type.cl:permission-type-cl}")
62     private String cldsPersmissionTypeCl;
63     @Value("${CLDS_PERMISSION_INSTANCE:dev}")
64     private String cldsPermissionInstance;
65     @Value("${clamp.config.security.encoder:bcrypt}")
66     private String cldsEncoderMethod;
67     @Value("${clamp.config.security.encoder.bcrypt.strength:10}")
68     private Integer cldsBcryptEncoderStrength;
69
70     /**
71      * This method configures on which URL the authorization will be enabled.
72      */
73     @Override
74     protected void configure(HttpSecurity http) {
75         try {
76             http.csrf().disable().httpBasic().and().authorizeRequests().antMatchers("/restservices/clds/v1/user/**")
77                     .authenticated().anyRequest().permitAll().and().sessionManagement()
78                     .maximumSessions(1);
79
80         } catch (Exception e) {
81             logger.error(SETUP_WEB_USERS_EXCEPTION_MSG, e);
82             throw new CldsUsersException(SETUP_WEB_USERS_EXCEPTION_MSG, e);
83         }
84     }
85
86     /**
87      * This method is called by the framework and is used to load all the users
88      * defined in cldsUsersFile variable (this file path can be configured in the
89      * application.properties).
90      *
91      * @param auth authentication manager builder
92      */
93     @Autowired
94     public void configureGlobal(AuthenticationManagerBuilder auth) {
95         // configure algorithm used for password hashing
96         final PasswordEncoder passwordEncoder = getPasswordEncoder();
97
98         try {
99             CldsUser[] usersList = loadUsers();
100             // no users defined
101             if (null == usersList) {
102                 logger.warn("No users defined. Users should be defined under clds-users.json");
103                 return;
104             }
105             for (CldsUser user : usersList) {
106                 auth.inMemoryAuthentication().withUser(user.getUser()).password(user.getPassword())
107                         .authorities(user.getPermissionsString()).and().passwordEncoder(passwordEncoder);
108             }
109         } catch (Exception e) {
110             logger.error(SETUP_WEB_USERS_EXCEPTION_MSG, e);
111             throw new CldsUsersException(SETUP_WEB_USERS_EXCEPTION_MSG, e);
112         }
113     }
114
115     /**
116      * This method loads physically the JSON file and convert it to an Array of
117      * CldsUser.
118      *
119      * @return The array of CldsUser
120      * @throws IOException In case of the file is not found
121      */
122     private CldsUser[] loadUsers() throws IOException {
123         logger.info("Load from clds-users.properties");
124         return CldsUserJsonDecoder.decodeJson(refProp.getFileContent("files.cldsUsers"));
125     }
126
127     /**
128      * This methods returns the chosen encoder for password hashing.
129      */
130     private PasswordEncoder getPasswordEncoder() {
131         if ("bcrypt".equals(cldsEncoderMethod)) {
132             return new BCryptPasswordEncoder(cldsBcryptEncoderStrength);
133         } else {
134             throw new CldsConfigException(
135                     "Invalid clamp.config.security.encoder value. 'bcrypt' is the only option at this time.");
136         }
137     }
138 }