1. java-1.8:jdk1.8及环境配置,不知道直接百度安装。
2. maven: maven环境安装配置,不知道直接百度安装。
3. go-cqhttp: 官方下载地址windows 官方下载地址linux 百度云下载:702v
4. ffmpeg: 发送短视频必要支持程序,安装方法自行百度。
5. 开发工具:idea/eclipse
代码下载入口:https://gitee.com/changwenpeng/goCqBot.git
开始:
windows:
1. 下载好go-cqhttp后解压双击exe程序运行,会提示要生成运行脚本点击确认。
2. 此时运行bat脚本, 输入02 回车生成yml配置文件 。关闭黑窗口,配置下yml文件。
3. 配置yml,参考下图。
# go-cqhttp 默认配置文件
account: # 账号相关
uin: 1233456 # QQ账号
password: '' # 密码为空时使用扫码登录
encrypt: false # 是否开启密码加密
status: 0 # 在线状态 请参考 https://docs.go-cqhttp.org/guide/config.html#在线状态
relogin: # 重连设置
delay: 3 # 首次重连延迟, 单位秒
interval: 3 # 重连间隔
max-times: 0 # 最大重连次数, 0为无限制
# 是否使用服务器下发的新地址进行重连
# 注意, 此设置可能导致在海外服务器上连接情况更差
use-sso-address: true
heartbeat:
# 心跳频率, 单位秒
# -1 为关闭心跳
interval: 5
message:
# 上报数据类型
# 可选: string,array
post-format: array
# 是否忽略无效的CQ码, 如果为假将原样发送
ignore-invalid-cqcode: false
# 是否强制分片发送消息
# 分片发送将会带来更快的速度
# 但是兼容性会有些问题
force-fragment: false
# 是否将url分片发送
fix-url: false
# 下载图片等请求网络代理
proxy-rewrite: ''
# 是否上报自身消息
report-self-message: false
# 移除服务端的Reply附带的At
remove-reply-at: false
# 为Reply附加更多信息
extra-reply-data: false
# 跳过 Mime 扫描, 忽略错误数据
skip-mime-scan: false
output:
# 日志等级 trace,debug,info,warn,error
log-level: warn
# 日志时效 单位天. 超过这个时间之前的日志将会被自动删除. 设置为 0 表示永久保留.
log-aging: 15
# 是否在每次启动时强制创建全新的文件储存日志. 为 false 的情况下将会在上次启动时创建的日志文件续写
log-force-new: true
# 是否启用日志颜色
log-colorful: true
# 是否启用 DEBUG
debug: false # 开启调试模式
# 默认中间件锚点
default-middlewares: &default
# 访问密钥, 强烈推荐在公网的服务器设置
access-token: ''
# 事件过滤器文件目录
filter: ''
# API限速设置
# 该设置为全局生效
# 原 cqhttp 虽然启用了 rate_limit 后缀, 但是基本没插件适配
# 目前该限速设置为令牌桶算法, 请参考:
# https://baike.baidu.com/item/%E4%BB%A4%E7%89%8C%E6%A1%B6%E7%AE%97%E6%B3%95/6597000?fr=aladdin
rate-limit:
enabled: false # 是否启用限速
frequency: 1 # 令牌回复频率, 单位秒
bucket: 1 # 令牌桶大小
database: # 数据库相关设置
leveldb:
# 是否启用内置leveldb数据库
# 启用将会增加10-20MB的内存占用和一定的磁盘空间
# 关闭将无法使用 撤回 回复 get_msg 等上下文相关功能
enable: true
# 媒体文件缓存, 删除此项则使用缓存文件(旧版行为)
cache:
image: data/image.db
video: data/video.db
# 连接服务列表
servers:
# 添加方式,同一连接方式可添加多个,具体配置说明请查看文档
#- http: # http 通信
#- ws: # 正向 Websocket
#- ws-reverse: # 反向 Websocket
#- pprof: #性能分析服务器
# HTTP 通信设置
- http:
# 服务端监听地址
host: 127.0.0.1
# 服务端监听端口
port: 5700
# 反向HTTP超时时间, 单位秒
# 最小值为5,小于5将会忽略本项设置
timeout: 5
# 长轮询拓展
long-polling:
# 是否开启
enabled: false
# 消息队列大小,0 表示不限制队列大小,谨慎使用
max-queue-size: 2000
middlewares:
<<: *default # 引用默认中间件
# 反向HTTP POST地址列表
post:
#- url: '' # 地址
# secret: '' # 密钥
#- url: http://127.0.0.1:5701/ # 地址
# secret: '' # 密钥
# 正向WS设置
- ws:
# 正向WS服务器监听地址
host: 127.0.0.1
# 正向WS服务器监听端口
port: 6700
middlewares:
<<: *default # 引用默认中间件
account: # 账号相关 uin: 1233456 # QQ账号 password: '' # 密码为空时使用扫码登录 这里配置array message: # 上报数据类型 # 可选: string,array post-format: array
简单解释,具体可看go-cqhttp文档:
正向ws设置:即为客户端websocket监听配置信息
http通话设置:即为go-cqhttp开放的http请求配置信息
4. 运行bat脚本启动go-cqhttp登录qq,会提示扫码登录,一定要让qq和go-cqhttp在同一网络环境运行,不然可能登录异常。
5. 编写java代码连通go-cqhttp,代码文首获取,我放在gitee上
项目结构:
bot-core:代码核心连通go-cqhttp,并支持http请求,websocket监听。
bot-impl: 机器人业务逻辑实现。springboot maven项目可实现一键打包/一键运行
listener包:监听
package com.qqbot.impl.listener;
import com.qqbot.core.annotation.GroupUserAddHandler;
import com.qqbot.core.core.Group;
import com.qqbot.core.core.Member;
import com.qqbot.core.injector.object.UserAddMessage;
import com.qqbot.core.message.MessageChain;
import com.qqbot.impl.service.DuJiaoShouApiService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
/**
* 事件监听
*
* @author changwenpeng
* @date 2022年5月9日
*/
@Component
public class EventListener {
@Autowired
DuJiaoShouApiService duJiaoShouApiService;
/**
* 入群欢迎
* @param group
* @param um
* @throws Exception
*/
@GroupUserAddHandler(groupIds={828576605})
public void userAdd(Group group, UserAddMessage um) throws Exception {
MessageChain mc = new MessageChain();
Long userId = um.getUserId();
Member member = group.getMember(userId);
mc.text("热烈欢迎【" + member.getNickname() + "】")
.text("加入我们【" + group.getGroupName()+"】")
.face(randomId()).face(randomId()).face(randomId())
.face(randomId()).face(randomId()).face(randomId())
.add(duJiaoShouApiService.head(userId.toString()));
group.sendMessage(mc);
}
/**
* 生成随机数
* @return
*/
private String randomId(){
return (int)(Math.random()*220+1) + "";
}
}
package com.qqbot.impl.listener;
import com.alibaba.fastjson.JSONObject;
import com.qqbot.core.core.Member;
import com.qqbot.core.message.MessageChain;
import com.qqbot.core.message.support.ReplyMessage;
import com.qqbot.impl.service.DuJiaoShouApiService;
import com.qqbot.impl.service.JiuLiApiService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import org.springframework.util.StringUtils;
import com.qqbot.impl.config.M4pMap;
import com.qqbot.core.annotation.GroupMessageHandler;
import com.qqbot.core.core.Group;
import com.qqbot.core.message.support.VideoMessage;
/**
* 监听
*
* @author changwenpeng
* @date 2022年5月9日
*/
@Component
public class MyListener {
@Autowired
DuJiaoShouApiService duJiaoShouApiService;
@Autowired
JiuLiApiService jiuLiApiService;
/**
* 帮助
*
* @param group
* @param member
* @throws Exception
*/
@GroupMessageHandler(groupIds = {828576605}, regex = "^帮助$")
public void talk(Group group, Member member) throws Exception {
MessageChain mc = new MessageChain();
mc.at(member.getUserId()).text("\n")
.text("1. @我 + 聊天内容").text("\n")
.text("2. 点歌大风吹").text("\n")
.text("3. 网红+视频(网红/明星/热舞/风景/游戏/动物)").text("\n")
.text("4. 定时任务:每日早安,晚安【不可操作】").text("\n")
.text("5. 定时任务:每日八杯水【不可操作】").text("\n")
.text("6. 帮助");
group.sendMessage(mc);
}
/**
* 点歌
*
* @param group
* @param mc
* @throws Exception
*/
@GroupMessageHandler(groupIds = {828576605}, regex = "^点歌.*$")
public void music(Group group, MessageChain mc) throws Exception {
String keyword = mc.getText();
if (!StringUtils.hasText(keyword)) {
return;
}
keyword = keyword.replaceAll("\\s*", "").substring(2);
group.sendMessage(duJiaoShouApiService.music163(keyword));
}
/**
* 随机小视频
*
* @param group
* @param mc
* @throws Exception
*/
@GroupMessageHandler(groupIds = {828576605}, regex = "^(网红|明星|热舞|风景|游戏|动物)(视频)$")
public void video(Group group, Member member, MessageChain mc) throws Exception {
String keyword = mc.getText();
if (!StringUtils.hasText(keyword)) {
return;
}
keyword = keyword.replaceAll("\\s*", "").substring(0, 2);
group.sendMessage(duJiaoShouApiService.video(keyword));
}
/**
* 小爱同学
*
* @param group
* @param mc
* @throws Exception
*/
@GroupMessageHandler(groupIds = {828576605}, isAt = true)
public void xiaoAi(Group group, Member member, MessageChain mc) throws Exception {
String keyword = mc.getText();
if (!StringUtils.hasText(keyword)) {
return;
}
keyword = keyword.replaceAll("\\s*", "");
group.sendMessage(jiuLiApiService.xiaoAi(keyword));
}
/**
* 测试
*
* @param args
*/
public static void main(String[] args) {
String a = "^(随机)(网红|明星|热舞|风景|游戏|动物)(视频)$";
System.out.println("随机网红视频".matches(a));
}
}
task包:定时任务
package com.qqbot.impl.task;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
import org.springframework.util.CollectionUtils;
import com.qqbot.impl.service.DuJiaoShouApiService;
import com.qqbot.core.core.Bot;
import com.qqbot.core.core.BotFactory;
import com.qqbot.core.message.MessageChain;
import java.util.List;
/**
* 每日早晚安推送
*
* @author changwenpeng
* @date 2022年5月9日
*/
@Component
public class RobotTaskMN {
@Value("${mybot.morningAndNightGroups}")
Long[] morningAndNightGroups;
@Autowired
DuJiaoShouApiService duJiaoShouApiService;
/**
* 每日早安
*
* @throws Exception
*/
@Scheduled(cron = "0 0 07 * * ?")
public void morning() throws Exception {
MessageChain mc = duJiaoShouApiService.morning();
this.sendMorningAndNight(mc);
}
/**
* 每日晚安
*
* @throws Exception
*/
@Scheduled(cron = "00 20 22 * * ?")
public void night() throws Exception {
MessageChain mc = duJiaoShouApiService.night();
this.sendMorningAndNight(mc);
}
/**
* 发送消息
*
* @param mc
* @throws Exception
*/
private void sendMorningAndNight(MessageChain mc) throws Exception {
List botList = BotFactory.getBots();
if (CollectionUtils.isEmpty(botList)) {
return;
}
Bot bot = botList.get(0);
for (Long groupId : morningAndNightGroups) {
System.out.println(mc.toMessageString());
bot.sendGroupMessage(groupId, mc);
}
}
}
了解项目结构后
bot-impl模块下找到resources文件夹下yml业务代码配置文件,简单的提供了一些功能
#bot基础配置
bot:
#go-cqhttp登录的qq
botId: xxxx
#go-cqhttp开放的正向ws配置
websocketUrl: ws://127.0.0.1:6700
#accesstoken 为空可配置为对应的go-cqhttp配置文件中的accesstoken
accessToken:
###########功能大全群支持###########
mybot:
#图片上的二维码链接
qrUrl: https://qm.qq.com/cgi-bin/qm/qr%3Fk=3OpLlpZLgdKw-IrSf3JSWKqdPbdVK59S%26noverify=0
#图片上的二维码头像
qrImg: http://q1.qlogo.cn/g%3Fb=qq%26nk=201088830%26s=100
#图片上的二维码描述
qrDesc: svip
#群配置,支持多个群
#早安晚安
morningAndNightGroups: xxx,xxx
#每日喝水提醒
eightWaterTipGroups: xxx,xxx,xxx
#每日早报
morningNewGroups: xxx,xxx,xxx
#整点报时
baoShiGroups: xxx,xxx,xxx
6. 启动java项目
到此。windows运行就完成了。完全可以把项目打jar包运行。亦可以丢到linux服务器运行。
linux运行方法可以加群沟通哦。
群号:828576605
也欢迎大家多多支持一下我