org.yx.http.act.HttpActionNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sumk Show documentation
Show all versions of sumk Show documentation
A quick developing framewort for internet company
/**
* Copyright (C) 2016 - 2030 youtongluan.
*
* 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.yx.http.act;
import java.lang.reflect.Method;
import java.util.List;
import java.util.Objects;
import org.yx.annotation.spec.Specs;
import org.yx.annotation.spec.UploadSpec;
import org.yx.annotation.spec.WebSpec;
import org.yx.asm.ArgPojo;
import org.yx.common.context.CalleeNode;
import org.yx.conf.AppInfo;
import org.yx.exception.BizException;
import org.yx.exception.SumkException;
import org.yx.http.HttpErrorCode;
import org.yx.http.HttpJson;
import org.yx.http.MessageType;
import org.yx.http.kit.HttpSettings;
import org.yx.http.kit.InnerHttpUtil;
import org.yx.log.Logs;
import org.yx.util.CollectionUtil;
public final class HttpActionNode extends CalleeNode {
private final boolean requireLogin;
private final MessageType requestType;
private final boolean sign;
private final MessageType responseType;
private final List httpMethod;
private final List tags;
private final String cnName;
private final UploadSpec upload;
public UploadSpec upload() {
return this.upload;
}
public ArgPojo buildArgPojo(Object reqData) throws Exception {
if (this.isEmptyArgument() || reqData == null) {
return getEmptyArgObj();
}
if (reqData.getClass() != String.class) {
throw new SumkException(1245464, "http argument " + reqData.getClass().getName() + " is not String");
}
String data = (String) reqData;
if (data.isEmpty()) {
return getEmptyArgObj();
}
try {
return HttpJson.operator().fromJson(data, argClz);
} catch (Exception e) {
Logs.http().warn("json解析异常", e);
throw BizException.create(HttpErrorCode.DATA_FORMAT_ERROR, "数据格式错误");
}
}
private MessageType getMessageType(MessageType configed, String key) {
if (configed != MessageType.DEFAULT) {
return configed;
}
return InnerHttpUtil.parseMessageType(AppInfo.get(key));
}
private List httpMethod(WebSpec web) {
String[] m = web.method();
if (m.length > 0) {
return CollectionUtil.unmodifyList(m);
}
return HttpSettings.defaultHttpMethods();
}
public HttpActionNode(Object obj, Method method, Class extends ArgPojo> argClz, String[] argNames,
WebSpec action) {
super(obj, method, argClz, argNames, Objects.requireNonNull(action).toplimit() > 0 ? action.toplimit()
: AppInfo.getInt("sumk.http.thread.priority.default", 100000));
this.cnName = action.cnName();
this.httpMethod = httpMethod(action);
this.requestType = this.isEmptyArgument() ? MessageType.PLAIN
: getMessageType(action.requestType(), "sumk.http.request.type");
this.responseType = getMessageType(action.responseType(), "sumk.http.response.type");
this.requireLogin = (action.requireLogin() && AppInfo.getBoolean("sumk.http.login.enable", false))
|| action.requestType().isEncrypt() || action.responseType().isEncrypt();
this.sign = !this.isEmptyArgument() && action.sign() && AppInfo.getBoolean("sumk.http.sign.enable", true);
this.tags = CollectionUtil.unmodifyList(action.tags());
this.upload = Specs.extractUpload(obj, method);
}
/**
* 返回值受@Web、sumk.http.login.enable配置、requestType、responseType影响。
* 如果requestType、responseType中有一个为需要加密,它就返回true。
*
* @return true表示接口需要登录后才能访问
*/
public boolean requireLogin() {
return requireLogin;
}
/**
* 如果没有入参,那么它一定是PLAIN类型
*
* @return 请求体类型
*/
public MessageType requestType() {
return requestType;
}
/**
* 如果没有入参,那么它就一定是false
*
* @return 参数签名
*/
public boolean sign() {
return sign;
}
public MessageType responseType() {
return responseType;
}
public boolean acceptMethod(String httpMethod) {
return this.httpMethod.contains(httpMethod);
}
public List tags() {
return this.tags;
}
public List methods() {
return this.httpMethod;
}
public String cnName() {
return cnName;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy