org.obiba.opal.web.project.permissions.ProjectDatasourcePermissionsResource.java Source code

Java tutorial

Introduction

Here is the source code for org.obiba.opal.web.project.permissions.ProjectDatasourcePermissionsResource.java

Source

/*
 * Copyright (c) 2013 OBiBa. All rights reserved.
 *
 * This program and the accompanying materials
 * are made available under the terms of the GNU Public License v3.0.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

package org.obiba.opal.web.project.permissions;

import java.util.List;

import javax.ws.rs.DELETE;
import javax.ws.rs.DefaultValue;
import javax.ws.rs.GET;
import javax.ws.rs.POST;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.QueryParam;
import javax.ws.rs.core.Response;

import org.obiba.magma.MagmaEngine;
import org.obiba.opal.core.security.DatasourcePermissionConverter;
import org.obiba.opal.core.service.security.SubjectAclService;
import org.obiba.opal.web.model.Opal;
import org.obiba.opal.web.security.AbstractPermissionsResource;
import org.obiba.opal.web.security.PermissionsToAclFunction;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Component;

import com.google.common.collect.Iterables;

import static org.obiba.opal.core.domain.security.SubjectAcl.SubjectType;

@Component
@Scope("request")
@Path("/project/{name}/permissions/datasource")
public class ProjectDatasourcePermissionsResource extends AbstractPermissionsResource {

    @Autowired
    private SubjectAclService subjectAclService;

    @PathParam("name")
    private String name;

    //
    // Datasource
    //

    /**
     * Get all datasource-level permissions in the project.
     *
     * @param domain
     * @param type
     * @return
     */
    @GET
    public Iterable<Opal.Acl> getDatasourcePermissions(@QueryParam("type") SubjectType type) {
        // make sure datasource exists
        MagmaEngine.get().getDatasource(name);

        Iterable<SubjectAclService.Permissions> permissions = subjectAclService
                .getNodePermissions(ProjectPermissionsResource.DOMAIN, getNode(), type);

        return Iterables.transform(permissions, PermissionsToAclFunction.INSTANCE);
    }

    /**
     * Set a datasource-level permission for a subject in the project.
     *
     * @param type
     * @param principals
     * @param permission
     * @return
     */
    @POST
    public Response setDatasourcePermission(@QueryParam("type") @DefaultValue("USER") SubjectType type,
            @QueryParam("principal") List<String> principals,
            @QueryParam("permission") DatasourcePermissionConverter.Permission permission) {
        // make sure datasource exists
        MagmaEngine.get().getDatasource(name);
        setPermission(principals, type, permission.name());
        return Response.ok().build();
    }

    /**
     * Remove any datasource-level permission of a subject in the project.
     *
     * @param type
     * @param principals
     * @return
     */
    @DELETE
    public Response deleteDatasourcePermissions(@QueryParam("type") @DefaultValue("USER") SubjectType type,
            @QueryParam("principal") List<String> principals) {
        // make sure datasource exists
        MagmaEngine.get().getDatasource(name);
        deletePermissions(principals, type);
        return Response.ok().build();
    }

    @Override
    protected String getNode() {
        return "/datasource/" + name;
    }

    @Override
    protected SubjectAclService getSubjectAclService() {
        return subjectAclService;
    }
}