com.floragunn.searchguard.auth.blocking.HeapBasedClientBlockRegistry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of search-guard-6 Show documentation
Show all versions of search-guard-6 Show documentation
Provide access control related features for Elasticsearch 6
The newest version!
/*
* Copyright 2015-2019 floragunn GmbH
*
* 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.floragunn.searchguard.auth.blocking;
import java.util.concurrent.TimeUnit;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import com.google.common.cache.Cache;
import com.google.common.cache.CacheBuilder;
import com.google.common.cache.RemovalListener;
import com.google.common.cache.RemovalNotification;
public class HeapBasedClientBlockRegistry implements ClientBlockRegistry {
private final Logger log = LogManager.getLogger(this.getClass());
private final Cache cache;
private final Class clientIdType;
public HeapBasedClientBlockRegistry(long expiryMs, int maxEntries, Class clientIdType) {
this.clientIdType = clientIdType;
this.cache = CacheBuilder.newBuilder().expireAfterWrite(expiryMs, TimeUnit.MILLISECONDS).maximumSize(maxEntries).concurrencyLevel(4)
.removalListener(new RemovalListener() {
@Override
public void onRemoval(RemovalNotification notification) {
if (log.isInfoEnabled()) {
log.info("Unblocking " + notification.getKey());
}
}
}).build();
}
@Override
public boolean isBlocked(ClientIdType clientId) {
return cache.getIfPresent(clientId) != null;
}
@Override
public void block(ClientIdType clientId) {
if (log.isInfoEnabled()) {
log.info("Blocking " + clientId);
}
this.cache.put(clientId, System.currentTimeMillis());
}
@Override
public Class getClientIdType() {
return clientIdType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy