mirror of
https://github.com/ttttupup/wxhelper.git
synced 2024-11-22 18:29:23 +08:00
常见的方法和请求
This commit is contained in:
parent
003ceca7d6
commit
391011b696
@ -1,5 +1,6 @@
|
|||||||
环境为jdk17
|
环境为jdk17
|
||||||
执行之后会在当前项目所处磁盘根路径生成一个exec文件夹,然后会把src/main/resources/exec下的文件放在那避免因为路径问题出错
|
执行之后会在当前项目所处磁盘根路径生成一个exec文件夹,然后会把src/main/resources/exec下的文件放在那避免因为路径问题出错
|
||||||
|
java_client/src/main/resources/exec/c.exe 为注入器,只不过把名字改短了,更新的话换成最新版,改个名字就行, wxhelper.dll同理
|
||||||
|
|
||||||
项目启动之后,会生成一个tcp服务端,用来接受hook信息,然后把接收的信息放在队列中,之后用一个线程去循环处理消息.
|
项目启动之后,会生成一个tcp服务端,用来接受hook信息,然后把接收的信息放在队列中,之后用一个线程去循环处理消息.
|
||||||
具体实现可以看
|
具体实现可以看
|
||||||
|
@ -16,7 +16,7 @@ public enum WxMsgType {
|
|||||||
收到名片(42),
|
收到名片(42),
|
||||||
表情(47),
|
表情(47),
|
||||||
转账和收款(49),
|
转账和收款(49),
|
||||||
收到转账之后(51),
|
收到转账之后或者文件助手等信息(51),
|
||||||
/**
|
/**
|
||||||
* 扫码触发,会触发2次, 有一次有编号,一次没有,还有登陆之后也有,很多情况都会调用这个
|
* 扫码触发,会触发2次, 有一次有编号,一次没有,还有登陆之后也有,很多情况都会调用这个
|
||||||
*/
|
*/
|
||||||
@ -25,11 +25,11 @@ public enum WxMsgType {
|
|||||||
;
|
;
|
||||||
Integer type;
|
Integer type;
|
||||||
|
|
||||||
public Integer getType() {
|
|
||||||
return type;
|
|
||||||
}
|
|
||||||
|
|
||||||
WxMsgType(Integer type) {
|
WxMsgType(Integer type) {
|
||||||
this.type = type;
|
this.type = type;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Integer getType() {
|
||||||
|
return type;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
11
java_client/src/main/java/com/example/wxhk/infe/SendMsg.java
Normal file
11
java_client/src/main/java/com/example/wxhk/infe/SendMsg.java
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
package com.example.wxhk.infe;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* http接口请求的基础接口
|
||||||
|
*
|
||||||
|
* @author wt
|
||||||
|
* @date 2023/06/01
|
||||||
|
*/
|
||||||
|
public interface SendMsg extends java.io.Serializable{
|
||||||
|
|
||||||
|
}
|
@ -17,6 +17,7 @@ import java.io.Serializable;
|
|||||||
@JsonIgnoreProperties(ignoreUnknown = true)
|
@JsonIgnoreProperties(ignoreUnknown = true)
|
||||||
public class PrivateChatMsg implements Serializable {
|
public class PrivateChatMsg implements Serializable {
|
||||||
|
|
||||||
|
String path;
|
||||||
/**
|
/**
|
||||||
* 内容
|
* 内容
|
||||||
*/
|
*/
|
||||||
@ -41,8 +42,6 @@ public class PrivateChatMsg implements Serializable {
|
|||||||
private String signature;
|
private String signature;
|
||||||
private String time;
|
private String time;
|
||||||
private Integer timestamp;
|
private Integer timestamp;
|
||||||
|
|
||||||
String path;
|
|
||||||
/**
|
/**
|
||||||
* 类型
|
* 类型
|
||||||
*/
|
*/
|
||||||
|
@ -0,0 +1,20 @@
|
|||||||
|
package com.example.wxhk.model.request;
|
||||||
|
|
||||||
|
import com.example.wxhk.infe.SendMsg;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.experimental.Accessors;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 添加wxid 好友
|
||||||
|
* @author wt
|
||||||
|
* @date 2023/06/01
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@Accessors(chain = true)
|
||||||
|
public class AddFriends implements SendMsg {
|
||||||
|
String wxid;
|
||||||
|
/**
|
||||||
|
* 验证信息
|
||||||
|
*/
|
||||||
|
String msg;
|
||||||
|
}
|
@ -0,0 +1,27 @@
|
|||||||
|
package com.example.wxhk.model.request;
|
||||||
|
|
||||||
|
import com.example.wxhk.infe.SendMsg;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.experimental.Accessors;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 确认收款
|
||||||
|
* @author wt
|
||||||
|
* @date 2023/06/01
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@Accessors(chain = true)
|
||||||
|
public class ConfirmThePayment implements SendMsg {
|
||||||
|
/**
|
||||||
|
* 转账人微信id,从hook的消息中获取
|
||||||
|
*/
|
||||||
|
String wxid;
|
||||||
|
/**
|
||||||
|
* 从hook的消息中获取对应的字段内容
|
||||||
|
*/
|
||||||
|
String transcationId;
|
||||||
|
/**
|
||||||
|
* 从hook的消息中获取对应的字段内容。
|
||||||
|
*/
|
||||||
|
String transferId;
|
||||||
|
}
|
@ -0,0 +1,19 @@
|
|||||||
|
package com.example.wxhk.model.request;
|
||||||
|
|
||||||
|
import com.example.wxhk.infe.SendMsg;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.experimental.Accessors;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 通过手机或者qq查找微信
|
||||||
|
* @author wt
|
||||||
|
* @date 2023/06/01
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@Accessors(chain = true)
|
||||||
|
public class FindWeChat implements SendMsg {
|
||||||
|
/**
|
||||||
|
* 通过 手机或qq查询信息
|
||||||
|
*/
|
||||||
|
String keyword;
|
||||||
|
}
|
@ -0,0 +1,23 @@
|
|||||||
|
package com.example.wxhk.model.request;
|
||||||
|
|
||||||
|
import com.example.wxhk.infe.SendMsg;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.experimental.Accessors;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 转发消息
|
||||||
|
* @author wt
|
||||||
|
* @date 2023/06/01
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@Accessors(chain = true)
|
||||||
|
public class ForwardMessages implements SendMsg {
|
||||||
|
/**
|
||||||
|
* 消息接收人wxid
|
||||||
|
*/
|
||||||
|
String wxid;
|
||||||
|
/**
|
||||||
|
* 消息id
|
||||||
|
*/
|
||||||
|
String msgid;
|
||||||
|
}
|
@ -0,0 +1,16 @@
|
|||||||
|
package com.example.wxhk.model.request;
|
||||||
|
|
||||||
|
import com.example.wxhk.infe.SendMsg;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.experimental.Accessors;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取群成员
|
||||||
|
* @author wt
|
||||||
|
* @date 2023/06/01
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@Accessors(chain = true)
|
||||||
|
public class GetGroupMembers implements SendMsg {
|
||||||
|
String chatRoomId;
|
||||||
|
}
|
@ -0,0 +1,23 @@
|
|||||||
|
package com.example.wxhk.model.request;
|
||||||
|
|
||||||
|
import com.example.wxhk.infe.SendMsg;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.experimental.Accessors;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取群成员昵称
|
||||||
|
* @author wt
|
||||||
|
* @date 2023/06/01
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@Accessors(chain = true)
|
||||||
|
public class GetsTheNicknameOfAGroupMember implements SendMsg {
|
||||||
|
/**
|
||||||
|
* 聊天室id
|
||||||
|
*/
|
||||||
|
String chatRoomId;
|
||||||
|
/**
|
||||||
|
* 成员id
|
||||||
|
*/
|
||||||
|
String memberId;
|
||||||
|
}
|
@ -0,0 +1,23 @@
|
|||||||
|
package com.example.wxhk.model.request;
|
||||||
|
|
||||||
|
import com.example.wxhk.infe.SendMsg;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.experimental.Accessors;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 增加群成员
|
||||||
|
* @author wt
|
||||||
|
* @date 2023/06/01
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@Accessors(chain = true)
|
||||||
|
public class IncreaseGroupMembership implements SendMsg {
|
||||||
|
/**
|
||||||
|
* 聊天室id
|
||||||
|
*/
|
||||||
|
String chatRoomId;
|
||||||
|
/**
|
||||||
|
* 成员id,以,分割
|
||||||
|
*/
|
||||||
|
String memberIds;
|
||||||
|
}
|
@ -0,0 +1,25 @@
|
|||||||
|
package com.example.wxhk.model.request;
|
||||||
|
|
||||||
|
import com.example.wxhk.infe.SendMsg;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.experimental.Accessors;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 发送at文本
|
||||||
|
* @author wt
|
||||||
|
* @date 2023/06/01
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@Accessors(chain = true)
|
||||||
|
public class SendAtText implements SendMsg {
|
||||||
|
/**
|
||||||
|
* 聊天室id,群聊用
|
||||||
|
*/
|
||||||
|
String chatRoomId;
|
||||||
|
/**
|
||||||
|
* 群聊的时候用at多个用逗号隔开,@所有人则是<b>notify@all</b>
|
||||||
|
*/
|
||||||
|
String wxids;
|
||||||
|
|
||||||
|
String msg;
|
||||||
|
}
|
@ -0,0 +1,22 @@
|
|||||||
|
package com.example.wxhk.model.request;
|
||||||
|
|
||||||
|
import com.example.wxhk.infe.SendMsg;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.experimental.Accessors;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 发送文件
|
||||||
|
*
|
||||||
|
* @author wt
|
||||||
|
* @date 2023/06/01
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@Accessors(chain = true)
|
||||||
|
public class SendFile implements SendMsg {
|
||||||
|
String wxid;
|
||||||
|
/**
|
||||||
|
* 发送文件路径
|
||||||
|
* "filePath": "C:/Users/123.txt"
|
||||||
|
*/
|
||||||
|
String filePath;
|
||||||
|
}
|
@ -0,0 +1,22 @@
|
|||||||
|
package com.example.wxhk.model.request;
|
||||||
|
|
||||||
|
import com.example.wxhk.infe.SendMsg;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.experimental.Accessors;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 发送图片
|
||||||
|
*
|
||||||
|
* @author wt
|
||||||
|
* @date 2023/06/01
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@Accessors(chain = true)
|
||||||
|
public class SendImg implements SendMsg {
|
||||||
|
String wxid;
|
||||||
|
/**
|
||||||
|
* 发送图片接口
|
||||||
|
* "imagePath": "C:/Users/123.png"
|
||||||
|
*/
|
||||||
|
String imagePath;
|
||||||
|
}
|
@ -0,0 +1,52 @@
|
|||||||
|
package com.example.wxhk.model.request;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.experimental.Accessors;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* http请求参数
|
||||||
|
*
|
||||||
|
* @author wt
|
||||||
|
* @date 2023/06/01
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@Accessors(chain = true)
|
||||||
|
public class SendMsg {
|
||||||
|
/**
|
||||||
|
* wxid
|
||||||
|
*/
|
||||||
|
String wxid;
|
||||||
|
/**
|
||||||
|
* 消息内容
|
||||||
|
*/
|
||||||
|
String msg;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 聊天室id,群聊用
|
||||||
|
*/
|
||||||
|
String chatRoomId;
|
||||||
|
/**
|
||||||
|
* 成员id
|
||||||
|
*/
|
||||||
|
String memberId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 群聊的时候用at多个用逗号隔开,@所有人则是<b>notify@all</b>
|
||||||
|
*/
|
||||||
|
String wxids;
|
||||||
|
/**
|
||||||
|
* 发送图片接口
|
||||||
|
* "imagePath": "C:/Users/123.png"
|
||||||
|
*/
|
||||||
|
String imagePath;
|
||||||
|
/**
|
||||||
|
* 发送文件路径
|
||||||
|
* "filePath": "C:/Users/123.txt"
|
||||||
|
*/
|
||||||
|
String filePath;
|
||||||
|
/**
|
||||||
|
* 通过 手机或qq查询信息
|
||||||
|
*/
|
||||||
|
String keyword;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,18 @@
|
|||||||
|
package com.example.wxhk.model.request;
|
||||||
|
|
||||||
|
import com.example.wxhk.infe.SendMsg;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.experimental.Accessors;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 发送文本
|
||||||
|
*
|
||||||
|
* @author wt
|
||||||
|
* @date 2023/06/01
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@Accessors(chain = true)
|
||||||
|
public class SendText implements SendMsg {
|
||||||
|
String wxid;
|
||||||
|
String msg;
|
||||||
|
}
|
@ -0,0 +1,27 @@
|
|||||||
|
package com.example.wxhk.model.request;
|
||||||
|
|
||||||
|
import com.example.wxhk.infe.SendMsg;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.experimental.Accessors;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 通过好友请求
|
||||||
|
* @author wt
|
||||||
|
* @date 2023/06/01
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@Accessors(chain = true)
|
||||||
|
public class ThroughFriends implements SendMsg {
|
||||||
|
/**
|
||||||
|
* 添加好友消息内容里的encryptusername
|
||||||
|
*/
|
||||||
|
String v3;
|
||||||
|
/**
|
||||||
|
* 添加好友消息内容里的ticket
|
||||||
|
*/
|
||||||
|
String v4;
|
||||||
|
/**
|
||||||
|
* 好友权限,0是无限制,1是不让他看我,2是不看他,3是1+2
|
||||||
|
*/
|
||||||
|
String permission;
|
||||||
|
}
|
@ -18,23 +18,31 @@ import org.w3c.dom.NodeList;
|
|||||||
import java.math.BigDecimal;
|
import java.math.BigDecimal;
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
import java.util.Objects;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
import java.util.concurrent.ConcurrentHashMap;
|
import java.util.concurrent.ConcurrentHashMap;
|
||||||
|
|
||||||
@Component
|
@Component
|
||||||
public class WxMsgHandle {
|
public class WxMsgHandle {
|
||||||
public static final ConcurrentHashMap<Integer, Handle> map = new ConcurrentHashMap<>(32);
|
public static final ConcurrentHashMap<Integer, Handle> map = new ConcurrentHashMap<>(32);
|
||||||
|
|
||||||
public static ConcurrentHashMap<String, String> cache = new ConcurrentHashMap<>();
|
|
||||||
protected static final Log log = Log.get();
|
protected static final Log log = Log.get();
|
||||||
|
public static ConcurrentHashMap<String, String> cache = new ConcurrentHashMap<>();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public WxMsgHandle() {
|
public WxMsgHandle() {
|
||||||
add(chatMsg -> {
|
add(chatMsg -> {
|
||||||
|
if(Objects.equals(chatMsg.getIsSendMsg(), 1) && Objects.equals(chatMsg.getIsSendByPhone(), 1)){
|
||||||
|
log.info("手机端对:{}发出:{}",chatMsg.getFromUser(),chatMsg.getContent());
|
||||||
return 1;
|
return 1;
|
||||||
},WxMsgType.私聊信息);// 好友请求
|
}
|
||||||
|
return 1;
|
||||||
|
}, WxMsgType.私聊信息);
|
||||||
|
add(chatMsg -> {
|
||||||
|
if("filehelper".equals(chatMsg.getFromUser())){
|
||||||
|
log.info("文件助手:{},",chatMsg.getContent());
|
||||||
|
}
|
||||||
|
return 1;
|
||||||
|
}, WxMsgType.收到转账之后或者文件助手等信息);
|
||||||
add(chatMsg -> {
|
add(chatMsg -> {
|
||||||
HttpSendUtil.通过好友请求(chatMsg);
|
HttpSendUtil.通过好友请求(chatMsg);
|
||||||
return 1;
|
return 1;
|
||||||
@ -55,7 +63,6 @@ public class WxMsgHandle {
|
|||||||
}, WxMsgType.扫码触发);
|
}, WxMsgType.扫码触发);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -130,6 +137,7 @@ public class WxMsgHandle {
|
|||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean 解析收款信息2段(PrivateChatMsg chatMsg) {
|
public static boolean 解析收款信息2段(PrivateChatMsg chatMsg) {
|
||||||
try {
|
try {
|
||||||
Document document = XmlUtil.parseXml(chatMsg.getContent());
|
Document document = XmlUtil.parseXml(chatMsg.getContent());
|
||||||
@ -163,6 +171,7 @@ public class WxMsgHandle {
|
|||||||
/**
|
/**
|
||||||
* 解析收款信息1段
|
* 解析收款信息1段
|
||||||
* <b>会自动进行收款</b>
|
* <b>会自动进行收款</b>
|
||||||
|
*
|
||||||
* @param chatMsg
|
* @param chatMsg
|
||||||
* @return boolean true则 继续解析,false则不需要解析了
|
* @return boolean true则 继续解析,false则不需要解析了
|
||||||
*/
|
*/
|
||||||
@ -192,12 +201,12 @@ public class WxMsgHandle {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void exec(PrivateChatMsg chatMsg) {
|
||||||
public interface Handle{
|
Handle handle = map.get(chatMsg.getType());
|
||||||
Object handle(PrivateChatMsg chatMsg);
|
if (handle != null) {
|
||||||
|
handle.handle(chatMsg);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public void add(Handle handle, WxMsgType... type) {
|
public void add(Handle handle, WxMsgType... type) {
|
||||||
for (WxMsgType integer : type) {
|
for (WxMsgType integer : type) {
|
||||||
@ -205,10 +214,7 @@ public class WxMsgHandle {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void exec(PrivateChatMsg chatMsg){
|
public interface Handle {
|
||||||
Handle handle = map.get(chatMsg.getType());
|
Object handle(PrivateChatMsg chatMsg);
|
||||||
if (handle != null) {
|
|
||||||
handle.handle(chatMsg);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -15,15 +15,25 @@ import java.util.concurrent.TimeUnit;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 消息处理
|
* 消息处理
|
||||||
|
*
|
||||||
* @author wt
|
* @author wt
|
||||||
* @date 2023/05/31
|
* @date 2023/05/31
|
||||||
*/
|
*/
|
||||||
@Component
|
@Component
|
||||||
public class ArrHandle {
|
public class ArrHandle {
|
||||||
|
|
||||||
protected static final Log log = Log.get();
|
|
||||||
public static final ThreadPoolExecutor sub = new ThreadPoolExecutor(1, 10, 30, TimeUnit.MINUTES, new LinkedBlockingQueue<>(), new NamedThreadFactory("sub", false));
|
public static final ThreadPoolExecutor sub = new ThreadPoolExecutor(1, 10, 30, TimeUnit.MINUTES, new LinkedBlockingQueue<>(), new NamedThreadFactory("sub", false));
|
||||||
|
public static final ThreadLocal<PrivateChatMsg> chatMsgThreadLocal = new InheritableThreadLocal<>();
|
||||||
|
protected static final Log log = Log.get();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 得到当前正在处理的消息
|
||||||
|
*
|
||||||
|
* @return {@link PrivateChatMsg}
|
||||||
|
*/
|
||||||
|
public static PrivateChatMsg getPriMsg() {
|
||||||
|
return chatMsgThreadLocal.get();
|
||||||
|
}
|
||||||
|
|
||||||
@PostConstruct
|
@PostConstruct
|
||||||
public void exec() {
|
public void exec() {
|
||||||
@ -33,14 +43,15 @@ public class ArrHandle {
|
|||||||
try {
|
try {
|
||||||
JsonObject take = VertxTcp.LINKED_BLOCKING_QUEUE.take();
|
JsonObject take = VertxTcp.LINKED_BLOCKING_QUEUE.take();
|
||||||
log.info("{}", take.encode());
|
log.info("{}", take.encode());
|
||||||
|
|
||||||
PrivateChatMsg privateChatMsg = take.mapTo(PrivateChatMsg.class);
|
PrivateChatMsg privateChatMsg = take.mapTo(PrivateChatMsg.class);
|
||||||
|
chatMsgThreadLocal.set(privateChatMsg);
|
||||||
if ("weixin".equals(privateChatMsg.getFromUser())) {
|
if ("weixin".equals(privateChatMsg.getFromUser())) {
|
||||||
String s = HttpSendUtil.获取当前登陆微信id();
|
String s = HttpSendUtil.获取当前登陆微信id();
|
||||||
InitWeChat.WXID_MAP.add(s);
|
InitWeChat.WXID_MAP.add(s);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
WxMsgHandle.exec(privateChatMsg);
|
WxMsgHandle.exec(privateChatMsg);
|
||||||
|
chatMsgThreadLocal.remove();
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
log.error(e);
|
log.error(e);
|
||||||
}
|
}
|
||||||
|
@ -31,9 +31,8 @@ import java.io.IOException;
|
|||||||
public class InitWeChat implements CommandLineRunner {
|
public class InitWeChat implements CommandLineRunner {
|
||||||
|
|
||||||
public final static Log log = Log.get();
|
public final static Log log = Log.get();
|
||||||
|
public static final ConcurrentHashSet<String> WXID_MAP = new ConcurrentHashSet<>();
|
||||||
public static String wxPath;
|
public static String wxPath;
|
||||||
|
|
||||||
public static Integer wxPort;
|
public static Integer wxPort;
|
||||||
public static Integer vertxPort;
|
public static Integer vertxPort;
|
||||||
/**
|
/**
|
||||||
@ -41,9 +40,6 @@ public class InitWeChat implements CommandLineRunner {
|
|||||||
*/
|
*/
|
||||||
public static File DLL_PATH;
|
public static File DLL_PATH;
|
||||||
|
|
||||||
public static final ConcurrentHashSet<String> WXID_MAP=new ConcurrentHashSet<>();
|
|
||||||
|
|
||||||
|
|
||||||
public static void 注入dll(String wxPid) throws IOException {
|
public static void 注入dll(String wxPid) throws IOException {
|
||||||
String format = StrUtil.format("cmd /C c.exe -I {} -p {}\\wxhelper.dll -m {}", wxPid, DLL_PATH.getAbsolutePath(), wxPid);
|
String format = StrUtil.format("cmd /C c.exe -I {} -p {}\\wxhelper.dll -m {}", wxPid, DLL_PATH.getAbsolutePath(), wxPid);
|
||||||
Process exec = Runtime.getRuntime().exec(format, null, DLL_PATH);
|
Process exec = Runtime.getRuntime().exec(format, null, DLL_PATH);
|
||||||
|
@ -19,17 +19,16 @@ import java.util.concurrent.LinkedBlockingQueue;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 接受微信hook信息
|
* 接受微信hook信息
|
||||||
|
*
|
||||||
* @author wt
|
* @author wt
|
||||||
* @date 2023/05/26
|
* @date 2023/05/26
|
||||||
*/
|
*/
|
||||||
@Component
|
@Component
|
||||||
@Order()
|
@Order()
|
||||||
public class VertxTcp extends AbstractVerticle implements CommandLineRunner {
|
public class VertxTcp extends AbstractVerticle implements CommandLineRunner {
|
||||||
|
public final static LinkedBlockingQueue<JsonObject> LINKED_BLOCKING_QUEUE = new LinkedBlockingQueue<>();
|
||||||
protected static final Log log = Log.get();
|
protected static final Log log = Log.get();
|
||||||
NetServer netServer;
|
NetServer netServer;
|
||||||
public final static LinkedBlockingQueue<JsonObject> LINKED_BLOCKING_QUEUE = new LinkedBlockingQueue<>();
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void start(Promise<Void> startPromise) throws Exception {
|
public void start(Promise<Void> startPromise) throws Exception {
|
||||||
@ -63,7 +62,7 @@ public class VertxTcp extends AbstractVerticle implements CommandLineRunner {
|
|||||||
listen.onComplete(event -> {
|
listen.onComplete(event -> {
|
||||||
boolean succeeded = event.succeeded();
|
boolean succeeded = event.succeeded();
|
||||||
if (succeeded) {
|
if (succeeded) {
|
||||||
HttpAsyncUtil.exec(HttpAsyncUtil.Type.开启hook, new JsonObject().put("port", "8080").put("ip", "127.0.0.1"));
|
HttpAsyncUtil.exec(HttpAsyncUtil.Type.开启hook, new JsonObject().put("port", InitWeChat.getVertxPort().toString()).put("ip", "127.0.0.1"));
|
||||||
startPromise.complete();
|
startPromise.complete();
|
||||||
} else {
|
} else {
|
||||||
startPromise.fail(event.cause());
|
startPromise.fail(event.cause());
|
||||||
|
@ -19,9 +19,9 @@ import org.dromara.hutool.log.Log;
|
|||||||
* @date 2023/05/25
|
* @date 2023/05/25
|
||||||
*/
|
*/
|
||||||
public class HttpAsyncUtil {
|
public class HttpAsyncUtil {
|
||||||
protected static final Log log = Log.get();
|
|
||||||
public static final WebClient client = WebClient.create(WxhkApplication.vertx, new WebClientOptions().setDefaultHost("localhost").setDefaultPort(InitWeChat.wxPort)
|
public static final WebClient client = WebClient.create(WxhkApplication.vertx, new WebClientOptions().setDefaultHost("localhost").setDefaultPort(InitWeChat.wxPort)
|
||||||
.setConnectTimeout(10000).setMaxPoolSize(10).setPoolEventLoopSize(10));
|
.setConnectTimeout(10000).setMaxPoolSize(10).setPoolEventLoopSize(10));
|
||||||
|
protected static final Log log = Log.get();
|
||||||
|
|
||||||
public static Future<HttpResponse<Buffer>> exec(Type type, JsonObject object) {
|
public static Future<HttpResponse<Buffer>> exec(Type type, JsonObject object) {
|
||||||
return client.post(InitWeChat.wxPort, "localhost", "/api/?type=" + type.getType())
|
return client.post(InitWeChat.wxPort, "localhost", "/api/?type=" + type.getType())
|
||||||
@ -65,12 +65,12 @@ public class HttpAsyncUtil {
|
|||||||
;
|
;
|
||||||
String type;
|
String type;
|
||||||
|
|
||||||
public String getType() {
|
|
||||||
return type;
|
|
||||||
}
|
|
||||||
|
|
||||||
Type(String type) {
|
Type(String type) {
|
||||||
this.type = type;
|
this.type = type;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getType() {
|
||||||
|
return type;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
package com.example.wxhk.util;
|
package com.example.wxhk.util;
|
||||||
|
|
||||||
import com.example.wxhk.model.PrivateChatMsg;
|
import com.example.wxhk.model.PrivateChatMsg;
|
||||||
|
import com.example.wxhk.model.request.SendMsg;
|
||||||
|
import com.example.wxhk.tcp.vertx.ArrHandle;
|
||||||
import com.example.wxhk.tcp.vertx.InitWeChat;
|
import com.example.wxhk.tcp.vertx.InitWeChat;
|
||||||
import io.vertx.core.json.JsonObject;
|
import io.vertx.core.json.JsonObject;
|
||||||
import org.dromara.hutool.core.util.XmlUtil;
|
import org.dromara.hutool.core.util.XmlUtil;
|
||||||
@ -10,18 +12,21 @@ import org.w3c.dom.Node;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 常见方法
|
* 常见方法
|
||||||
|
*
|
||||||
* @author wt
|
* @author wt
|
||||||
* @date 2023/05/29
|
* @date 2023/05/29
|
||||||
*/
|
*/
|
||||||
public class HttpSendUtil {
|
public class HttpSendUtil {
|
||||||
|
|
||||||
protected static final Log log = Log.get();
|
protected static final Log log = Log.get();
|
||||||
|
|
||||||
public static JsonObject 通过好友请求(PrivateChatMsg msg) {
|
public static JsonObject 通过好友请求(PrivateChatMsg msg) {
|
||||||
Document document = XmlUtil.parseXml(msg.getContent());
|
Document document = XmlUtil.parseXml(msg.getContent());
|
||||||
String encryptusername = document.getDocumentElement().getAttribute("encryptusername");
|
String encryptusername = document.getDocumentElement().getAttribute("encryptusername");
|
||||||
String ticket = document.getDocumentElement().getAttribute("ticket");
|
String ticket = document.getDocumentElement().getAttribute("ticket");
|
||||||
return HttpSyncUtil.exec(HttpAsyncUtil.Type.通过好友申请, new JsonObject().put("v3", encryptusername).put("v4", ticket).put("permission", "0"));
|
return HttpSyncUtil.exec(HttpAsyncUtil.Type.通过好友申请, new JsonObject().put("v3", encryptusername).put("v4", ticket).put("permission", "0"));
|
||||||
}
|
}
|
||||||
|
|
||||||
public static JsonObject 确认收款(PrivateChatMsg msg) {
|
public static JsonObject 确认收款(PrivateChatMsg msg) {
|
||||||
try {
|
try {
|
||||||
String content = msg.getContent();
|
String content = msg.getContent();
|
||||||
@ -49,6 +54,32 @@ public class HttpSendUtil {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public static JsonObject 发送文本(String wxid,String msg){
|
||||||
|
return HttpSyncUtil.exec(HttpAsyncUtil.Type.发送文本, JsonObject.mapFrom(new SendMsg().setMsg(msg).setWxid(wxid)));
|
||||||
|
}
|
||||||
|
public static JsonObject 发送文本(String msg){
|
||||||
|
return 发送文本(ArrHandle.getPriMsg().getFromUser(),msg);
|
||||||
|
}
|
||||||
|
public static JsonObject 发送at文本(String chatRoomId,String wxids,String msg){
|
||||||
|
return HttpSyncUtil.exec(HttpAsyncUtil.Type.发送at文本, JsonObject.mapFrom(new SendMsg().setMsg(msg).setWxids(wxids).setChatRoomId(chatRoomId)));
|
||||||
|
}
|
||||||
|
public static JsonObject 发送at文本(String wxids,String msg){
|
||||||
|
return 发送at文本(ArrHandle.getPriMsg().getFromGroup(),wxids,msg);
|
||||||
|
}
|
||||||
|
public static JsonObject 发送图片(String wxid,String msg){
|
||||||
|
return HttpSyncUtil.exec(HttpAsyncUtil.Type.发送图片, JsonObject.mapFrom(new SendMsg().setImagePath(msg).setWxid(wxid)));
|
||||||
|
}
|
||||||
|
public static JsonObject 发送图片(String msg){
|
||||||
|
return 发送图片(ArrHandle.getPriMsg().getFromUser(),msg);
|
||||||
|
}
|
||||||
|
public static JsonObject 发送文件(String wxid,String msg){
|
||||||
|
return HttpSyncUtil.exec(HttpAsyncUtil.Type.发送文件, JsonObject.mapFrom(new SendMsg().setFilePath(msg).setWxid(wxid)));
|
||||||
|
}
|
||||||
|
public static JsonObject 发送文件(String msg){
|
||||||
|
return 发送文件(ArrHandle.getPriMsg().getFromUser(),msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
public static String 获取当前登陆微信id() {
|
public static String 获取当前登陆微信id() {
|
||||||
JsonObject exec = HttpSyncUtil.exec(HttpAsyncUtil.Type.获取登录信息, new JsonObject());
|
JsonObject exec = HttpSyncUtil.exec(HttpAsyncUtil.Type.获取登录信息, new JsonObject());
|
||||||
return exec.getJsonObject("data").getString("wxid");
|
return exec.getJsonObject("data").getString("wxid");
|
||||||
|
@ -16,14 +16,16 @@ import org.dromara.hutool.log.Log;
|
|||||||
* @date 2023/05/25
|
* @date 2023/05/25
|
||||||
*/
|
*/
|
||||||
public class HttpSyncUtil {
|
public class HttpSyncUtil {
|
||||||
static final ClientEngine engine;
|
|
||||||
protected static final Log log = Log.get();
|
protected static final Log log = Log.get();
|
||||||
|
static final ClientEngine engine;
|
||||||
|
|
||||||
static {
|
static {
|
||||||
ClientConfig clientConfig = ClientConfig.of()
|
ClientConfig clientConfig = ClientConfig.of()
|
||||||
.setTimeout(30 * 1000);
|
.setTimeout(30 * 1000);
|
||||||
engine = ClientEngineFactory.createEngine(clientConfig);
|
engine = ClientEngineFactory.createEngine(clientConfig);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static JsonObject exec(HttpAsyncUtil.Type type, JsonObject obj) {
|
public static JsonObject exec(HttpAsyncUtil.Type type, JsonObject obj) {
|
||||||
String post = engine.send(Request.of("http://localhost:" + InitWeChat.wxPort + "/api/?type=" + type.getType()).method(Method.POST).body(obj.encode())).bodyStr();
|
String post = engine.send(Request.of("http://localhost:" + InitWeChat.wxPort + "/api/?type=" + type.getType()).method(Method.POST).body(obj.encode())).bodyStr();
|
||||||
if (log.isDebugEnabled()) {
|
if (log.isDebugEnabled()) {
|
||||||
|
Loading…
Reference in New Issue
Block a user