com.github.jaemon.dinger.core.AnnotationDingerDefinitionResolver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dinger-spring-boot-starter Show documentation
Show all versions of dinger-spring-boot-starter Show documentation
Dinger-SpringBoot集成钉钉/企业微信群机器人实现消息通知中间件
The newest version!
/*
* Copyright ©2015-2023 Jaemon. All Rights Reserved.
*
* 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.jaemon.dinger.core;
import com.github.jaemon.dinger.core.annatations.DingerImageText;
import com.github.jaemon.dinger.core.annatations.DingerLink;
import com.github.jaemon.dinger.core.annatations.DingerMarkdown;
import com.github.jaemon.dinger.core.annatations.DingerText;
import com.github.jaemon.dinger.core.entity.DingerMethod;
import com.github.jaemon.dinger.core.entity.enums.MessageMainType;
import com.github.jaemon.dinger.core.entity.enums.MessageSubType;
import com.github.jaemon.dinger.exception.DingerException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.lang.reflect.Method;
import java.util.List;
import static com.github.jaemon.dinger.constant.DingerConstant.SPOT_SEPERATOR;
import static com.github.jaemon.dinger.core.entity.enums.ExceptionEnum.IMAGETEXT_METHOD_PARAM_EXCEPTION;
import static com.github.jaemon.dinger.core.entity.enums.ExceptionEnum.LINK_METHOD_PARAM_EXCEPTION;
import static com.github.jaemon.dinger.utils.DingerUtils.methodParamsGenericType;
import static com.github.jaemon.dinger.utils.DingerUtils.methodParamsType;
/**
* dinger定义-注解方式
*
* @author Jaemon
* @since 1.2
*/
public class AnnotationDingerDefinitionResolver extends AbstractDingerDefinitionResolver>> {
private static final Logger log = LoggerFactory.getLogger(AnnotationDingerDefinitionResolver.class);
@Override
public void resolver(List> dingerClasses) {
for (Class> dingerClass : dingerClasses) {
// dinger 层钉钉机器人配置
DingerConfig dingerConfiguration = dingerConfiguration(dingerClass);
String namespace = dingerClass.getName();
Method[] methods = dingerClass.getMethods();
for (Method method : methods) {
String dingerName = namespace + SPOT_SEPERATOR + method.getName();
String dingerDefinitionKey = MessageMainType.ANNOTATION + SPOT_SEPERATOR;
Object source;
MessageSubType messageSubType;
int[] paramTypes = null;
if (method.isAnnotationPresent(DingerText.class)) {
source = method.getAnnotation(DingerText.class);
messageSubType = MessageSubType.TEXT;
} else if (method.isAnnotationPresent(DingerMarkdown.class)) {
source = method.getAnnotation(DingerMarkdown.class);
messageSubType = MessageSubType.MARKDOWN;
} else if (method.isAnnotationPresent(DingerImageText.class)) {
paramTypes = methodParamsGenericType(method, DingerImageText.clazz);
if (paramTypes.length != 1) {
throw new DingerException(IMAGETEXT_METHOD_PARAM_EXCEPTION, dingerName);
}
source = method.getAnnotation(DingerImageText.class);
messageSubType = MessageSubType.IMAGETEXT;
} else if (method.isAnnotationPresent(DingerLink.class)) {
paramTypes = methodParamsType(method, DingerLink.clazz);
if (paramTypes.length != 1) {
throw new DingerException(LINK_METHOD_PARAM_EXCEPTION, dingerName);
}
source = method.getAnnotation(DingerLink.class);
messageSubType = MessageSubType.LINK;
} else {
if (log.isDebugEnabled()) {
log.debug("register annotation dingerDefinition and skip method={}(possible use xml definition).", dingerName);
}
continue;
}
registerDingerDefinition(
dingerName, source,
dingerDefinitionKey + messageSubType,
dingerConfiguration,
new DingerMethod(dingerName, parameterNameDiscoverer.getParameterNames(method), paramTypes)
);
}
}
}
}