com.github.jaemon.dinger.dingtalk.entity.DingLink 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.dingtalk.entity;
import com.github.jaemon.dinger.core.annatations.DingerLink;
import com.github.jaemon.dinger.core.entity.LinkDeo;
import com.github.jaemon.dinger.dingtalk.entity.enums.DingTalkMsgType;
import java.io.Serializable;
import java.util.Map;
/**
* Link类型
*
* @author Jaemon
* @since 1.0
*/
public class DingLink extends DingTalkMessage {
/** {@link Link} */
private Link link;
public DingLink() {
setMsgtype(DingTalkMsgType.LINK.type());
}
public DingLink(Link link) {
this();
this.link = link;
}
public Link getLink() {
return link;
}
public void setLink(Link link) {
this.link = link;
}
public static class Link implements Serializable {
/** 消息标题 */
private String title;
/** 消息内容。如果太长只会部分展示 */
private String text;
/** 点击消息跳转的URL */
private String messageUrl;
/** 图片URL */
private String picUrl;
public Link() {
}
public Link(String title, String text, String messageUrl, String picUrl) {
this.title = title;
this.text = text;
this.messageUrl = messageUrl;
this.picUrl = picUrl;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
public String getMessageUrl() {
return messageUrl;
}
public void setMessageUrl(String messageUrl) {
this.messageUrl = messageUrl;
}
public String getPicUrl() {
return picUrl;
}
public void setPicUrl(String picUrl) {
this.picUrl = picUrl;
}
}
@Override
public void transfer(Map params) {
for (Map.Entry entry : params.entrySet()) {
Object value = entry.getValue();
if (DingerLink.clazz.isInstance(value)) {
LinkDeo link = (LinkDeo) value;
this.link = new Link(link.getTitle(), link.getText(), link.getMessageUrl(), link.getPicUrl());
break;
}
}
}
}