io.micronaut.management.endpoint.env.EnvironmentEndpoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micronaut-management Show documentation
Show all versions of micronaut-management Show documentation
Core components supporting the Micronaut Framework
/*
* Copyright 2017-2020 original authors
*
* 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.
*/
package io.micronaut.management.endpoint.env;
import io.micronaut.context.env.Environment;
import io.micronaut.context.env.PropertySource;
import io.micronaut.management.endpoint.annotation.Endpoint;
import io.micronaut.management.endpoint.annotation.Read;
import io.micronaut.management.endpoint.annotation.Selector;
import java.util.*;
import java.util.regex.Pattern;
import java.util.stream.Collectors;
/**
* {@link Endpoint} that displays information about the environment and its property sources.
*
* @author Álvaro Sánchez-Mariscal
* @since 1.2.0
*/
@Endpoint(EnvironmentEndpoint.NAME)
public class EnvironmentEndpoint {
/**
* Endpoint name.
*/
public static final String NAME = "env";
public static final String[] PROPERTY_NAMES_TO_MASK = new String[] {
"password", "credential", "certificate", "key", "secret", "token"
};
private final Environment environment;
private final List maskPatterns;
/**
* @param environment The {@link Environment}
*/
public EnvironmentEndpoint(Environment environment) {
this.environment = environment;
this.maskPatterns = Arrays.stream(PROPERTY_NAMES_TO_MASK)
.map(s -> Pattern.compile(".*" + s + ".*", Pattern.CASE_INSENSITIVE))
.collect(Collectors.toList());
}
/**
* @return The environment information as a map with the following keys: activeEnvironments, packages and
* propertySources.
*/
@Read
public Map getEnvironmentInfo() {
Map result = new LinkedHashMap<>();
result.put("activeEnvironments", environment.getActiveNames());
result.put("packages", environment.getPackages());
Collection