All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.dockerjava.jaxrs.AuthCmdExec Maven / Gradle / Ivy

package com.github.dockerjava.jaxrs;

import com.github.dockerjava.api.UnauthorizedException;
import com.github.dockerjava.api.command.AuthCmd;
import com.github.dockerjava.api.model.AuthResponse;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import javax.ws.rs.client.WebTarget;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;

import static javax.ws.rs.client.Entity.entity;

public class AuthCmdExec extends AbstrDockerCmdExec implements AuthCmd.Exec {
	
	private static final Logger LOGGER = LoggerFactory
			.getLogger(AuthCmdExec.class);
	
	public AuthCmdExec(WebTarget baseResource) {
		super(baseResource);
	}

	@Override
	protected AuthResponse execute(AuthCmd command) {
		WebTarget webResource = getBaseResource().path("/auth");
		LOGGER.trace("POST: {}", webResource);
		Response response = webResource
                .request()
                .accept(MediaType.APPLICATION_JSON).post(entity(command.getAuthConfig(), MediaType.APPLICATION_JSON));
		
		if(response.getStatus() == 401) {
			throw new UnauthorizedException("Unauthorized");
		}

        return response.readEntity(AuthResponse.class);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy