forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPushImageCmdExec.java
More file actions
44 lines (32 loc) · 1.33 KB
/
Copy pathPushImageCmdExec.java
File metadata and controls
44 lines (32 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package com.github.dockerjava.jaxrs;
import static javax.ws.rs.client.Entity.entity;
import java.io.InputStream;
import javax.ws.rs.client.WebTarget;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.github.dockerjava.api.command.PushImageCmd;
import com.github.dockerjava.api.model.AuthConfig;
public class PushImageCmdExec extends AbstrDockerCmdExec<PushImageCmd, InputStream> implements PushImageCmd.Exec {
private static final Logger LOGGER = LoggerFactory.getLogger(PushImageCmdExec.class);
public PushImageCmdExec(WebTarget baseResource) {
super(baseResource);
}
@Override
public InputStream exec(PushImageCmd command) {
WebTarget webResource = getBaseResource().path("/images/" + name(command) + "/push");
final String registryAuth = registryAuth(command.getAuthConfig());
LOGGER.trace("POST: {}", webResource);
return webResource
.request()
.header("X-Registry-Auth", registryAuth)
.accept(MediaType.APPLICATION_JSON)
.post(entity(Response.class, MediaType.APPLICATION_JSON)).readEntity(InputStream.class);
}
private String name(PushImageCmd command) {
String name = command.getName();
AuthConfig authConfig = command.getAuthConfig();
return name.contains("/") ? name : authConfig.getUsername();
}
}