PasswordAuthenticatorManager.java
/*
* 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 com.facebook.presto.server.security;
import com.facebook.airlift.log.Logger;
import com.facebook.presto.spi.security.PasswordAuthenticator;
import com.facebook.presto.spi.security.PasswordAuthenticatorFactory;
import com.google.common.collect.ImmutableMap;
import java.io.File;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.atomic.AtomicReference;
import static com.facebook.presto.util.PropertiesUtil.loadProperties;
import static com.google.common.base.Preconditions.checkArgument;
import static com.google.common.base.Preconditions.checkState;
import static com.google.common.base.Strings.isNullOrEmpty;
import static java.util.Objects.requireNonNull;
public class PasswordAuthenticatorManager
{
private static final Logger log = Logger.get(PasswordAuthenticatorManager.class);
private static final File CONFIG_FILE = new File("etc/password-authenticator.properties");
private static final String NAME_PROPERTY = "password-authenticator.name";
private final AtomicBoolean required = new AtomicBoolean();
private final Map<String, PasswordAuthenticatorFactory> factories = new ConcurrentHashMap<>();
private final AtomicReference<PasswordAuthenticator> authenticator = new AtomicReference<>();
public void setRequired()
{
required.set(true);
}
public void addPasswordAuthenticatorFactory(PasswordAuthenticatorFactory factory)
{
checkArgument(factories.putIfAbsent(factory.getName(), factory) == null,
"Password authenticator '%s' is already registered", factory.getName());
}
public void loadPasswordAuthenticator()
throws Exception
{
if (!required.get()) {
return;
}
File configFileLocation = CONFIG_FILE.getAbsoluteFile();
Map<String, String> properties = new HashMap<>(loadProperties(configFileLocation));
String name = properties.remove(NAME_PROPERTY);
checkArgument(!isNullOrEmpty(name),
"Password authenticator configuration %s does not contain %s", configFileLocation, NAME_PROPERTY);
log.info("-- Loading password authenticator --");
PasswordAuthenticatorFactory factory = factories.get(name);
checkState(factory != null, "Password authenticator %s is not registered", name);
PasswordAuthenticator authenticator = factory.create(ImmutableMap.copyOf(properties));
this.authenticator.set(requireNonNull(authenticator, "authenticator is null"));
log.info("-- Loaded password authenticator %s --", name);
}
public PasswordAuthenticator getAuthenticator()
{
checkState(authenticator.get() != null, "authenticator was not loaded");
return authenticator.get();
}
}