blob: 86761a865cabb84095f5aaab6bb4eaea888a3c61 [file] [log] [blame]
Aharoni, Pavel (pa0916)ca3cb012018-10-22 15:29:57 +03001/*-
2 * ============LICENSE_START=======================================================
3 * OSAM
4 * ================================================================================
5 * Copyright (C) 2018 AT&T
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
19 */
20
21
22
23package org.onap.osam.properties;
24
25import org.apache.commons.lang3.StringUtils;
26import org.springframework.context.ApplicationListener;
27import org.springframework.context.annotation.Bean;
28import org.springframework.context.annotation.Configuration;
29import org.springframework.core.env.Environment;
30import org.togglz.core.manager.FeatureManager;
31import org.togglz.core.manager.FeatureManagerBuilder;
32import org.togglz.core.repository.file.FileBasedStateRepository;
33import org.togglz.spring.listener.TogglzApplicationContextBinderApplicationListener;
34
35import javax.servlet.ServletContext;
36import java.io.File;
37
38@Configuration
39public class FeaturesTogglingConfiguration {
40 @Bean
41 public ApplicationListener getApplicationListener() {
42 return new TogglzApplicationContextBinderApplicationListener();
43 }
44
45 @Bean
46 public FeatureManager featureManager(ServletContext servletContext, Environment environment) {
47 final String defaultFilename = "features.properties";
48
49 String filename = environment.getProperty("featureFlags.filename");
50
51 if (StringUtils.isBlank(filename)) {
52 filename = defaultFilename;
53 }
54
55 return new FeatureManagerBuilder()
56 .featureEnum(Features.class)
57 .stateRepository(new FileBasedStateRepository(
58 new File(servletContext.getRealPath("/WEB-INF/conf/" + filename))
59 ))
60 .build();
61 }
62}