Skip to content

Commit

Permalink
Merge branch '__rultor'
Browse files Browse the repository at this point in the history
  • Loading branch information
rultor committed Dec 28, 2018
2 parents f934046 + 757698f commit 07b603c
Show file tree
Hide file tree
Showing 5 changed files with 386 additions and 8 deletions.
63 changes: 63 additions & 0 deletions src/main/java/com/amihaiemil/docker/ListedPlugins.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
/**
* Copyright (c) 2018, Mihai Emil Andronache
* All rights reserved.
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* 1)Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2)Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* 3)Neither the name of docker-java-api nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
package com.amihaiemil.docker;

import java.net.URI;
import java.util.Iterator;
import org.apache.http.client.HttpClient;

/**
* Listed plugins.
* @author Boris Kuzmic (boris.kuzmic@gmail.com)
* @since 0.0.7
* @todo #231:30min Implement ListedPlugins iterator with filtering using Map.
* See ListedImages or ListedVolumes as examples.
*/
final class ListedPlugins extends RtPlugins {

/**
* Ctor.
*
* @param client The http client.
* @param uri The URI for this Network API.
* @param dkr The docker entry point.
*/
ListedPlugins(final HttpClient client, final URI uri, final Docker dkr) {
super(client, uri, dkr);
}

@Override
public Iterator<Plugin> iterator() {
throw new UnsupportedOperationException(
String.join(" ",
"ListedPlugins.iterator() is not yet implemented.",
"If you can contribute please",
"do it here: https://www.github.com/amihaiemil/docker-java-api"
)
);
}

}
17 changes: 10 additions & 7 deletions src/main/java/com/amihaiemil/docker/Plugins.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,39 +26,42 @@
package com.amihaiemil.docker;

import java.io.IOException;
import javax.json.JsonArray;

/**
* Plugins API.
* @author Boris Kuzmic (boris.kuzmic@gmail.com)
* @since 0.0.7
* @todo #208:30min Continue implementing Plugins API methods. More information
* about available methods:
* https://docs.docker.com/engine/api/v1.35/#tag/Plugin
* @todo #232:30min Implement getting plugin privileges. More information
* about API method can be found at:
* https://docs.docker.com/engine/api/v1.35/#operation/GetPluginPrivileges
*/
public interface Plugins {
public interface Plugins extends Iterable<Plugin> {

/**
* Create a plugin.
* @param name Name of the plugin.
* @param directory Path to plugin's data dir.
* @throws IOException If something goes wrong.
* @throws UnexpectedResponseException If the status response is not
* the expected one (200 OK).
* @see <a href="https://docs.docker.com/engine/api/v1.35/#operation/PluginCreate">Create a plugin</a>
*/
void create(final String name)
void create(final String name, final String directory)
throws IOException, UnexpectedResponseException;

/**
* Pulls and installs a plugin.
* @param remote Remote reference for plugin to install.
* @param name Local name for the pulled plugin.
* @return The installed {@link Plugin}.
* @param properties Json Array of plugin key-value properties.
* @throws IOException If something goes wrong.
* @throws UnexpectedResponseException If the status response is not
* the expected one (200 OK).
* @see <a href="https://docs.docker.com/engine/api/v1.35/#operation/PluginPull">Install a plugin</a>
*/
Plugin pullAndInstall(final String remote, final String name)
void pullAndInstall(final String remote, final String name,
final JsonArray properties)
throws IOException, UnexpectedResponseException;

}
99 changes: 99 additions & 0 deletions src/main/java/com/amihaiemil/docker/RtPlugins.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
package com.amihaiemil.docker;

import java.io.IOException;
import java.net.URI;
import javax.json.JsonArray;
import org.apache.http.HttpStatus;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.StringEntity;

/**
* Runtime {@link Plugins}.
*
* @author Boris Kuzmic (boris.kuzmic@gmail.com)
* @since 0.0.7
*/
abstract class RtPlugins implements Plugins {

/**
* Apache HttpClient which sends the requests.
*/
private final HttpClient client;

/**
* Base URI for Networks API.
*/
private final URI baseUri;

/**
* Docker API.
*/
private final Docker docker;

/**
* Ctor.
* @param client The http client.
* @param uri The URI for this Network API.
* @param dkr The docker entry point.
*/
RtPlugins(final HttpClient client, final URI uri, final Docker dkr) {
this.client = client;
this.baseUri = uri;
this.docker = dkr;
}

@Override
public void create(final String name, final String directory)
throws IOException, UnexpectedResponseException {
final HttpPost create =
new HttpPost(
String.format("%s/%s?name=%s",
this.baseUri.toString(),
"create",
name
)
);
try {
create.setEntity(
new StringEntity(directory)
);
this.client.execute(
create,
new MatchStatus(
create.getURI(),
HttpStatus.SC_NO_CONTENT
)
);
} finally {
create.releaseConnection();
}
}

@Override
public void pullAndInstall(final String remote, final String name,
final JsonArray properties)
throws IOException, UnexpectedResponseException {
final HttpPost pull =
new HttpPost(
new UncheckedUriBuilder(this.baseUri.toString().concat("/pull"))
.addParameter("remote", remote)
.addParameter("name", name)
.build()
);
try {
pull.setEntity(
new StringEntity(properties.toString())
);
this.client.execute(
pull,
new MatchStatus(
pull.getURI(),
HttpStatus.SC_NO_CONTENT
)
);
} finally {
pull.releaseConnection();
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
* @since 0.0.4
* @checkstyle MethodName (500 lines)
*/
public final class RtNetworksTest {
public final class RtNetworksTestCase {

/**
* Mock docker.
Expand Down
Loading

0 comments on commit 07b603c

Please sign in to comment.