/* * Copyright (c) 2019-2029, Dreamlu (596392912@qq.com & www.dreamlu.net). *

* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE 3.0; * you may not use this file except in compliance with the License. * You may obtain a copy of the License at *

* http://www.gnu.org/licenses/lgpl.html *

* 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 net.dreamlu.mica.http; import com.fasterxml.jackson.core.type.TypeReference; import com.fasterxml.jackson.databind.JsonNode; import lombok.RequiredArgsConstructor; import net.dreamlu.mica.core.utils.Exceptions; import net.dreamlu.mica.core.utils.JsonUtil; import okhttp3.Call; import okhttp3.Request; import okhttp3.Response; import javax.annotation.Nullable; import java.io.File; import java.io.IOException; import java.nio.charset.Charset; import java.nio.file.Path; import java.util.List; import java.util.Map; import java.util.Optional; import java.util.function.BiConsumer; import java.util.function.Function; /** * Exchange * * @author L.cm */ @RequiredArgsConstructor public class Exchange { private BiConsumer failedBiConsumer = (r, e) -> { }; private final Call call; public Exchange onFailed(BiConsumer failConsumer) { this.failedBiConsumer = failConsumer; return this; } public R onResponse(Function func) { try (HttpResponse response = new HttpResponse(call.execute())) { return func.apply(response); } catch (IOException e) { throw Exceptions.unchecked(e); } } @Nullable public R onSuccess(Function func) { try (HttpResponse response = new HttpResponse(call.execute())) { return func.apply(response); } catch (IOException e) { failedBiConsumer.accept(call.request(), new HttpException(e)); return null; } } @Nullable public R onSuccessful(Function func) { try (HttpResponse response = new HttpResponse(call.execute())) { if (response.isOk()) { return func.apply(response); } else { failedBiConsumer.accept(call.request(), new HttpException(response)); } } catch (IOException e) { failedBiConsumer.accept(call.request(), new HttpException(e)); } return null; } public Optional onSuccessOpt(Function func) { return Optional.ofNullable(this.onSuccess(func)); } public Optional onSuccessfulOpt(Function func) { return Optional.ofNullable(this.onSuccessful(func)); } /** * Returns ok http response. * *

* 注意:body 不能读取,因为已经关闭掉了,建议还是直接用 onResponse 函数处理。 *

* * @return Response */ public Response response() { return onResponse(ResponseSpec::rawResponse); } /** * Returns body String. * * @return body String */ public String asString() { return onResponse(ResponseSpec::asString); } /** * Returns body String. * * @param charset Charset * @return body String */ public String asString(Charset charset) { return onResponse(responseSpec -> responseSpec.asString(charset)); } /** * Returns body to byte arrays. * * @return byte arrays */ public byte[] asBytes() { return onResponse(ResponseSpec::asBytes); } /** * Returns body to JsonNode. * * @return JsonNode */ public JsonNode asJsonNode() { return onResponse(ResponseSpec::asJsonNode); } /** * jackson json path 语法读取节点 * * @param jsonPtrExpr json path 表达式 * @return JsonNode */ public JsonNode atJsonPath(String jsonPtrExpr) { return this.asJsonNode().at(jsonPtrExpr); } /** * jackson json path 语法读取节点 * * @param jsonPtrExpr json path 表达式 * @param valueType value value type * @return JsonNode */ public T atJsonPathValue(String jsonPtrExpr, Class valueType) { return JsonUtil.convertValue(atJsonPath(jsonPtrExpr), valueType); } /** * Returns body to Object. * * @param valueType value value type * @return Object */ public T asValue(Class valueType) { return onResponse(responseSpec -> responseSpec.asValue(valueType)); } /** * Returns body to Object. * * @param typeReference value Type Reference * @return Object */ public T asValue(TypeReference typeReference) { return onResponse(responseSpec -> responseSpec.asValue(typeReference)); } /** * Returns body to List. * * @param valueType value type * @return List */ public List asList(Class valueType) { return onResponse(responseSpec -> responseSpec.asList(valueType)); } /** * Returns body to Map. * * @param keyClass key type * @param valueType value type * @return Map */ public Map asMap(Class keyClass, Class valueType) { return onResponse(responseSpec -> responseSpec.asMap(keyClass, valueType)); } /** * Returns body to Map. * * @param valueType value 类型 * @return Map */ public Map asMap(Class valueType) { return onResponse(responseSpec -> responseSpec.asMap(valueType)); } /** * toFile. * * @param file File * @return File */ public File toFile(File file) { return onResponse(responseSpec -> responseSpec.toFile(file)); } /** * toFile. * * @param path Path * @return Path */ public Path toFile(Path path) { return onResponse(responseSpec -> responseSpec.toFile(path)); } }