Package com.atlassian.labs.speakeasy.rest

Source Code of com.atlassian.labs.speakeasy.rest.UserResource

package com.atlassian.labs.speakeasy.rest;

import com.atlassian.labs.speakeasy.external.SpeakeasyService;
import com.atlassian.labs.speakeasy.external.UnauthorizedAccessException;
import com.atlassian.labs.speakeasy.model.UserPlugins;
import com.atlassian.sal.api.user.UserManager;

import javax.ws.rs.DELETE;
import javax.ws.rs.GET;
import javax.ws.rs.PUT;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.core.Response;
import java.util.List;

import static java.util.Arrays.asList;

/**
*
*/
@Path("/user")
public class UserResource
{
    private final SpeakeasyService speakeasyService;
    private final UserManager userManager;

    public UserResource(SpeakeasyService speakeasyService, UserManager userManager)
    {
        this.speakeasyService = speakeasyService;
        this.userManager = userManager;
    }

    @GET
    @Path("")
    @Produces("application/json")
    public Response getPlugins() throws UnauthorizedAccessException
    {
        return Response.ok(speakeasyService.getRemotePluginList(userManager.getRemoteUsername())).build();
    }

    @PUT
    @Path("{pluginKey}")
    @Produces("application/json")
    public Response enableAccess(@PathParam("pluginKey") String pluginKey) throws UnauthorizedAccessException
    {
        String user = userManager.getRemoteUsername();
        List<String> affectedKeys = speakeasyService.enableExtension(pluginKey, user);
        UserPlugins entity = speakeasyService.getRemotePluginList(user, pluginKey);
        entity.setUpdated(affectedKeys);
        return Response.ok().entity(entity).build();
    }

    @DELETE
    @Path("{pluginKey}")
    @Produces("application/json")
    public Response disableAccess(@PathParam("pluginKey") String pluginKey) throws UnauthorizedAccessException
    {
        String user = userManager.getRemoteUsername();
        String affectedKey = speakeasyService.disableExtension(pluginKey, user);

        UserPlugins entity = speakeasyService.getRemotePluginList(user, pluginKey);
        if (affectedKey != null)
        {
            entity.setUpdated(asList(affectedKey));
        }
        return Response.ok().entity(entity).build();
    }
}
TOP

Related Classes of com.atlassian.labs.speakeasy.rest.UserResource

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.