/* * Copyright 2016 The Simple File Server Authors * * 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 org.sfs.integration.java.func; import com.google.common.collect.ListMultimap; import io.vertx.core.http.HttpClient; import io.vertx.core.http.HttpClientRequest; import io.vertx.core.http.HttpClientResponse; import io.vertx.core.logging.Logger; import org.sfs.jobs.Jobs; import org.sfs.rx.Defer; import org.sfs.rx.HttpClientKeepAliveResponseBodyBuffer; import org.sfs.rx.ObservableFuture; import org.sfs.rx.RxHelper; import rx.Observable; import rx.functions.Func1; import java.util.concurrent.TimeUnit; import static com.google.common.collect.ArrayListMultimap.create; import static com.google.common.net.HttpHeaders.AUTHORIZATION; import static io.vertx.core.logging.LoggerFactory.getLogger; import static org.sfs.integration.java.help.AuthorizationFactory.Producer; public class MasterKeysCheck implements Func1<Void, Observable<HttpClientResponseAndBuffer>> { private static final Logger LOGGER = getLogger(MasterKeysCheck.class); private final HttpClient httpClient; private final Producer auth; private final ListMultimap<String, String> headers = create(); private boolean logRequestBody; public MasterKeysCheck(HttpClient httpClient, Producer auth) { this.httpClient = httpClient; this.auth = auth; } public MasterKeysCheck setHeader(String name, String value) { headers.removeAll(name); headers.put(name, value); return this; } public MasterKeysCheck setHeader(String name, String value, String... values) { headers.removeAll(name); headers.put(name, value); for (String v : values) { headers.put(name, v); } return this; } @Override public Observable<HttpClientResponseAndBuffer> call(Void aVoid) { return auth.toHttpAuthorization() .flatMap(s -> { ObservableFuture<HttpClientResponse> handler = RxHelper.observableFuture(); HttpClientRequest httpClientRequest = httpClient.post("/verify_repair_masterkeys", handler::complete) .exceptionHandler(handler::fail) .setTimeout(5000) .putHeader(Jobs.Parameters.TIMEOUT, String.valueOf(TimeUnit.MINUTES.toMillis(1))) .putHeader(AUTHORIZATION, s); for (String entry : headers.keySet()) { httpClientRequest = httpClientRequest.putHeader(entry, headers.get(entry)); } httpClientRequest.end(); return handler .flatMap(httpClientResponse -> Defer.just(httpClientResponse) .flatMap(new HttpClientKeepAliveResponseBodyBuffer()) .map(buffer -> new HttpClientResponseAndBuffer(httpClientResponse, buffer))); }); } }