org.graylog2.shared.security.RestrictToMasterFeature Maven / Gradle / Ivy
/**
* This file is part of Graylog.
*
* Graylog is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Graylog is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Graylog. If not, see .
*/
package org.graylog2.shared.security;
import org.graylog2.plugin.ServerStatus;
import javax.inject.Inject;
import javax.ws.rs.container.DynamicFeature;
import javax.ws.rs.container.ResourceInfo;
import javax.ws.rs.core.FeatureContext;
import java.lang.reflect.Method;
public class RestrictToMasterFeature implements DynamicFeature {
private final ServerStatus serverStatus;
private final RestrictToMasterFilter restrictToMasterFilter;
@Inject
public RestrictToMasterFeature(ServerStatus serverStatus) {
this.serverStatus = serverStatus;
this.restrictToMasterFilter = new RestrictToMasterFilter();
}
@Override
public void configure(ResourceInfo resourceInfo, FeatureContext context) {
final Class> resourceClass = resourceInfo.getResourceClass();
final Method resourceMethod = resourceInfo.getResourceMethod();
if (serverStatus.hasCapability(ServerStatus.Capability.MASTER))
return;
if (resourceMethod.isAnnotationPresent(RestrictToMaster.class) || resourceClass.isAnnotationPresent(RestrictToMaster.class)) {
context.register(restrictToMasterFilter);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy