Package org.sonatype.security.rest.users

Source Code of org.sonatype.security.rest.users.UserRoleTreePlexusResource

/*
* Sonatype Nexus (TM) Open Source Version
* Copyright (c) 2007-2014 Sonatype, Inc.
* All rights reserved. Includes the third-party code listed at http://links.sonatype.com/products/nexus/oss/attributions.
*
* This program and the accompanying materials are made available under the terms of the Eclipse Public License Version 1.0,
* which accompanies this distribution and is available at http://www.eclipse.org/legal/epl-v10.html.
*
* Sonatype Nexus (TM) Professional Version is available from Sonatype, Inc. "Sonatype" and "Sonatype Nexus" are trademarks
* of Sonatype, Inc. Apache Maven is a trademark of the Apache Software Foundation. M2eclipse is a trademark of the
* Eclipse Foundation. All other trademarks are the property of their respective owners.
*/
package org.sonatype.security.rest.users;

import javax.enterprise.inject.Typed;
import javax.inject.Named;
import javax.inject.Singleton;
import javax.ws.rs.Consumes;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;

import org.sonatype.plexus.rest.resource.PathProtectionDescriptor;
import org.sonatype.plexus.rest.resource.PlexusResource;
import org.sonatype.security.authorization.AuthorizationManager;
import org.sonatype.security.authorization.NoSuchAuthorizationManagerException;
import org.sonatype.security.authorization.NoSuchPrivilegeException;
import org.sonatype.security.authorization.NoSuchRoleException;
import org.sonatype.security.authorization.Privilege;
import org.sonatype.security.authorization.Role;
import org.sonatype.security.rest.AbstractSecurityPlexusResource;
import org.sonatype.security.rest.model.RoleTreeResource;
import org.sonatype.security.rest.model.RoleTreeResourceResponse;
import org.sonatype.security.usermanagement.RoleIdentifier;
import org.sonatype.security.usermanagement.User;
import org.sonatype.security.usermanagement.UserNotFoundException;

import org.restlet.Context;
import org.restlet.data.Request;
import org.restlet.data.Response;
import org.restlet.data.Status;
import org.restlet.resource.ResourceException;
import org.restlet.resource.Variant;

/**
* REST resource to retrieve the tree of roles and privileges assigned to a user.
*/
@Singleton
@Typed(PlexusResource.class)
@Named("UserRoleTreePlexusResource")
@Produces({"application/xml", "application/json"})
@Consumes({"application/xml", "application/json"})
@Path(UserRoleTreePlexusResource.RESOURCE_URI)
public class UserRoleTreePlexusResource
    extends AbstractSecurityPlexusResource
{
  public static final String USER_ID_KEY = "userId";

  public static final String RESOURCE_URI = "/role_tree/{" + USER_ID_KEY + "}";

  @Override
  public Object getPayloadInstance() {
    return null;
  }

  @Override
  public PathProtectionDescriptor getResourceProtection() {
    return new PathProtectionDescriptor("/role_tree/*", "authcBasic,perms[security:users]");
  }

  @Override
  public String getResourceUri() {
    return RESOURCE_URI;
  }

  /**
   * Retrieves the list of privileges assigned to the user.
   */
  @Override
  @GET
  public RoleTreeResourceResponse get(Context context, Request request, Response response, Variant variant)
      throws ResourceException
  {
    String userId = getUserId(request);

    try {
      RoleTreeResourceResponse responseResource = new RoleTreeResourceResponse();

      AuthorizationManager authzManager = getSecuritySystem().getAuthorizationManager("default");

      if (Boolean.parseBoolean(request.getResourceRef().getQueryAsForm().getFirstValue("isRole"))) {
        Role role = authzManager.getRole(userId);

        handleRole(role, authzManager, responseResource, null);
      }
      else {
        User user = getSecuritySystem().getUser(userId);

        handleUser(user, authzManager, responseResource);
      }

      return responseResource;
    }
    catch (UserNotFoundException e) {
      throw new ResourceException(Status.CLIENT_ERROR_BAD_REQUEST, "User: " + userId + " could not be found.");
    }
    catch (NoSuchAuthorizationManagerException e) {
      throw new ResourceException(Status.SERVER_ERROR_INTERNAL, "Unable to load default authorization manager");
    }
    catch (NoSuchRoleException e) {
      throw new ResourceException(Status.CLIENT_ERROR_BAD_REQUEST, "Role: " + userId + " could not be found.");
    }
  }

  protected void handleUser(User user, AuthorizationManager authzManager, RoleTreeResourceResponse response) {
    for (RoleIdentifier roleIdentifier : user.getRoles()) {
      try {
        Role role = authzManager.getRole(roleIdentifier.getRoleId());

        RoleTreeResource resource = new RoleTreeResource();
        resource.setId(role.getRoleId());
        resource.setName(role.getName());
        resource.setType("role");
        response.addData(resource);

        handleRole(role, authzManager, response, resource);
      }
      catch (NoSuchRoleException e) {
        getLogger().debug("Invalid roleId: " + roleIdentifier.getRoleId() + " from source: "
            + roleIdentifier.getSource() + " not found.");
      }
    }
  }

  protected void handleRole(Role role, AuthorizationManager authzManager, RoleTreeResourceResponse response,
                            RoleTreeResource resource)
  {
    for (String roleId : role.getRoles()) {
      try {
        Role childRole = authzManager.getRole(roleId);
        RoleTreeResource childResource = new RoleTreeResource();
        childResource.setId(childRole.getRoleId());
        childResource.setName(childRole.getName());
        childResource.setType("role");
        if (resource != null) {
          resource.addChildren(childResource);
        }
        else {
          response.addData(childResource);
        }
        handleRole(childRole, authzManager, response, childResource);
      }
      catch (NoSuchRoleException e) {
        getLogger().debug("handleRole() failed, roleId: " + roleId + " not found");
      }
    }

    for (String privilegeId : role.getPrivileges()) {
      try {
        Privilege childPrivilege = authzManager.getPrivilege(privilegeId);
        RoleTreeResource childResource = new RoleTreeResource();
        childResource.setId(childPrivilege.getId());
        childResource.setName(childPrivilege.getName());
        childResource.setType("privilege");
        if (resource != null) {
          resource.addChildren(childResource);
        }
        else {
          response.addData(childResource);
        }
      }
      catch (NoSuchPrivilegeException e) {
        getLogger().debug("handleRole() failed, privilegeId: " + privilegeId + " not found");
      }
    }
  }

  protected String getUserId(Request request) {
    return getRequestAttribute(request, USER_ID_KEY);
  }
}
TOP

Related Classes of org.sonatype.security.rest.users.UserRoleTreePlexusResource

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.