org.apache.druid.server.http.security.RulesResourceFilter.java Source code

Java tutorial

Introduction

Here is the source code for org.apache.druid.server.http.security.RulesResourceFilter.java

Source

/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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 org.apache.druid.server.http.security;

import com.google.common.base.Preconditions;
import com.google.common.base.Predicate;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.Iterables;
import com.google.inject.Inject;
import com.sun.jersey.spi.container.ContainerRequest;
import org.apache.druid.server.security.Access;
import org.apache.druid.server.security.AuthorizationUtils;
import org.apache.druid.server.security.AuthorizerMapper;
import org.apache.druid.server.security.ForbiddenException;
import org.apache.druid.server.security.Resource;
import org.apache.druid.server.security.ResourceAction;
import org.apache.druid.server.security.ResourceType;

import javax.ws.rs.core.PathSegment;
import java.util.List;

/**
 * Use this ResourceFilter when the datasource information is present after "rules" segment in the request Path
 * Here are some example paths where this filter is used -
 *  - druid/coordinator/v1/rules/
 * */

public class RulesResourceFilter extends AbstractResourceFilter {
    @Inject
    public RulesResourceFilter(AuthorizerMapper authorizerMapper) {
        super(authorizerMapper);
    }

    @Override
    public ContainerRequest filter(ContainerRequest request) {
        final String dataSourceName = request.getPathSegments()
                .get(Iterables.indexOf(request.getPathSegments(), new Predicate<PathSegment>() {
                    @Override
                    public boolean apply(PathSegment input) {
                        return "rules".equals(input.getPath());
                    }
                }) + 1).getPath();
        Preconditions.checkNotNull(dataSourceName);

        final ResourceAction resourceAction = new ResourceAction(
                new Resource(dataSourceName, ResourceType.DATASOURCE), getAction(request));

        final Access authResult = AuthorizationUtils.authorizeResourceAction(getReq(), resourceAction,
                getAuthorizerMapper());

        if (!authResult.isAllowed()) {
            throw new ForbiddenException(authResult.toString());
        }

        return request;
    }

    @Override
    public boolean isApplicable(String requestPath) {
        List<String> applicablePaths = ImmutableList.of("druid/coordinator/v1/rules/");
        for (String path : applicablePaths) {
            if (requestPath.startsWith(path) && !requestPath.equals(path)) {
                return true;
            }
        }
        return false;
    }
}