org.noear.nami.channel.http.hutool.HttpChannel Maven / Gradle / Ivy
package org.noear.nami.channel.http.hutool;
import cn.hutool.http.HttpResponse;
import org.noear.nami.Encoder;
import org.noear.nami.NamiChannel;
import org.noear.nami.NamiConfig;
import org.noear.nami.NamiManager;
import org.noear.nami.common.Constants;
import org.noear.nami.common.Result;
import java.lang.reflect.Method;
import java.nio.charset.Charset;
import java.util.Map;
/**
* Http 通道
* */
public class HttpChannel implements NamiChannel {
public static final HttpChannel instance = new HttpChannel();
@Override
public Result call(NamiConfig cfg, Method method, String action, String url, Map headers, Map args, Object body) throws Throwable {
//0.检测method
boolean is_get = Constants.METHOD_GET.equals(action);
//0.尝试重构url
if (is_get && args.size() > 0) {
StringBuilder sb = new StringBuilder(url).append("?");
args.forEach((k, v) -> {
if (v != null) {
sb.append(k).append("=")
.append(HttpUtils.urlEncode(v.toString()))
.append("&");
}
});
url = sb.substring(0, sb.length() - 1);
}
if (cfg.getDecoder() == null) {
throw new IllegalArgumentException("There is no suitable decoder");
}
//0.尝试解码器的过滤
cfg.getDecoder().filter(cfg, action, url, headers, args);
//0.开始构建http
HttpUtils http = HttpUtils.http(url).headers(headers);
HttpResponse response = null;
Encoder encoder = cfg.getEncoder();
//1.执行并返回
if (is_get || args.size() == 0) {
response = http.exec(Constants.METHOD_GET);
} else {
if (encoder == null) {
String ct0 = headers.getOrDefault(Constants.HEADER_CONTENT_TYPE, "");
if (ct0.length() == 0) {
response = http.data(args).exec(action);
} else {
encoder = NamiManager.getEncoder(ct0);
}
} else {
encoder = cfg.getEncoder();
}
}
if (response == null && encoder != null) {
byte[] bytes = encoder.encode(body);
if (bytes != null) {
response = http.bodyRaw(bytes, encoder.enctype()).exec(action);
}
}
if (response == null) {
return null;
}
//2.构建结果
Result result = new Result(response.getStatus(), response.body().getBytes());
//2.1.设置头
response.headers().forEach((k,ary)->{
if(ary.size() > 0) {
result.headerAdd(k, ary.get(0));
}
});
//2.2.设置字符码
String charset = response.charset();
if (charset != null) {
result.charsetSet(Charset.forName(charset));
}
//3.返回结果
return result;
}
@Override
public void filter(NamiConfig cfg, String method, String url, Map headers, Map args) {
if (cfg.getDecoder() == null) {
String at = cfg.getHeader(Constants.HEADER_ACCEPT);
if (at == null) {
at = Constants.CONTENT_TYPE_JSON;
}
cfg.setDecoder(NamiManager.getDecoder(at));
}
if (cfg.getEncoder() == null) {
String ct = cfg.getHeader(Constants.HEADER_CONTENT_TYPE);
if (ct != null) {
cfg.setEncoder(NamiManager.getEncoder(ct));
}
}
}
}