com.github.aistomin.jenkins.real.RealJenkins Maven / Gradle / Ivy
/**
* Copyright (c) 2016, Istomin Andrei
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.aistomin.jenkins.real;
import com.github.aistomin.http.PostRequest;
import com.github.aistomin.jenkins.Credentials;
import com.github.aistomin.jenkins.Jenkins;
import com.github.aistomin.jenkins.Jobs;
import com.github.aistomin.jenkins.Users;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import org.apache.http.Header;
import org.apache.http.HttpResponse;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.ResponseHandler;
import org.apache.http.client.fluent.Executor;
import org.apache.http.client.fluent.Request;
import org.apache.http.impl.client.HttpClientBuilder;
/**
* Jenkins instance.
*
* @author Andrei Istomin ([email protected])
* @version $Id$
* @since 0.1
*/
public final class RealJenkins implements Jenkins {
/**
* Base Jenkins URL.
*/
private final transient String base;
/**
* Jenkins credentials.
*/
private final transient Credentials creds;
/**
* Ctor.
*
* @param url Base Jenkins URL.
* @param credentials Jenkins credentials.
*/
public RealJenkins(final String url, final Credentials credentials) {
this.base = url;
this.creds = credentials;
}
@Override
public Jobs jobs() throws Exception {
return new RealJobs(this.request(), this.creds);
}
@Override
public Users users() throws Exception {
return new RealUsers(this.base, this.creds);
}
@Override
public void restart() throws Exception {
new PostRequest(
String.format("%s/restart", this.base), this.creds.headers()
).execute();
}
@Override
public String version() throws Exception {
final Map headers = new HashMap<>();
Executor.newInstance(
HttpClientBuilder.create().build()
).execute(Request.Post(this.base))
.handleResponse(
new ResponseHandler
© 2015 - 2025 Weber Informatics LLC | Privacy Policy