-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlinktopic.lua
254 lines (220 loc) · 7.55 KB
/
linktopic.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
local log = require("log")
local Api = require("coreApi")
local json = require("json")
local http = require("http")
function ReceiveFriendMsg(CurrentQQ, data)
if data.FromUin ==2986807981 then--防止自我复读
return 1
end
if string.find(data.Content, "链接转图") then
img_url = data.Content:gsub("链接转图", "")--获取链接
log.notice("img_url---> %s", img_url)
if img_url == nil or img_url=="" then --空链接退出
return 1
end
response, error_message =
http.request(
"GET",
img_url,
{
query = "",
headers = {
["User-Agent"] = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36"
}
}
)
local html = error_message
log.notice("error_message %s", html)
if html~=nil then
luaMsg =
Api.Api_SendMsg(--调用发消息的接口
CurrentQQ,
{
toUser = data.FromUin, --回复当前消息的来源群ID
sendToType = 1, --2发送给群1发送给好友3私聊
sendMsgType = "TextMsg", --进行文本复读回复
groupid = 0, --不是私聊自然就为0咯
content = "淦 老哥你的鸡掰地址好几把怪啊"..html, --回复内容
atUser = 0 --是否 填上data.FromUserId就可以复读给他并@了
}
)
return 1
end
local re=response.headers
print(json.encode(response.headers))
local ContentType="Content-Type"--减号是特殊字符 要么转义要么拐弯抹角 欢迎告诉我怎么转义变量名里的符号
ContentType=re[ContentType]
--[[for k, v in pairs(re) do --遍历结果测试用
print(k, v)
end]]--
if string.find(ContentType, "image") == 1 then
luaRes =
Api.Api_SendMsg(--调用发消息的接口
CurrentQQ,
{
toUser =data.FromUin, --回复当前消息的来源群ID
sendToType = 1, --2发送给群1发送给好友3私聊
sendMsgType = "PicMsg", --进行文本复读回复
content = "受限于服务器本身不能翻墙不保证能发出图片",
picUrl = img_url,
picBase64Buf = "",
fileMd5 = ""
}
)
-- log.notice("From Lua SendMsg Ret-->%d", luaRes.Ret)
else
--返回类型不是image/***就退出
luaMsg =
Api.Api_SendMsg(--调用发消息的接口
CurrentQQ,
{
toUser = data.FromUin, --回复当前消息的来源群ID
sendToType = 1, --2发送给群1发送给好友3私聊
sendMsgType = "TextMsg", --进行文本复读回复
groupid = 0, --不是私聊自然就为0咯
content = "淦 老哥你的鸡掰地址好几把怪啊,类型不是图片诶它是"..ContentType, --回复内容
atUser = 0 --是否 填上data.FromUserId就可以复读给他并@了
}
)
return 1
end
end
return 1
end
function ReceiveGroupMsg(CurrentQQ, data)
if data.FromUserId ==2986807981 then--防止自我复读
return 1
end
if string.find(data.Content, "链接转图") then
img_url = data.Content:gsub("链接转图", "")--获取链接
log.notice("img_url---> %s", img_url)
if img_url == nil or img_url=="" then --空链接退出
return 1
end
response, error_message =
http.request(
"GET",
img_url,
{
query = "",
headers = {
["User-Agent"] = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36"
}
}
)
local html = error_message
--log.notice("error_message %s", html)
if html~=nil then
luaMsg =
Api.Api_SendMsg(--调用发消息的接口
CurrentQQ,
{
toUser = data.FromGroupId, --回复当前消息的来源群ID
sendToType = 2, --2发送给群1发送给好友3私聊
sendMsgType = "TextMsg", --进行文本复读回复
groupid = 0, --不是私聊自然就为0咯
content = "淦 老哥你的鸡掰地址好几把怪啊"..html, --回复内容
atUser = 0 --是否 填上data.FromUserId就可以复读给他并@了
}
)
return 1
end
local re=response.headers
--print(json.encode(response.headers))
local ContentType="Content-Type"--减号是特殊字符 要么转义要么拐弯抹角 欢迎告诉我怎么转义变量名里的符号
ContentType=re[ContentType]
--[[for k, v in pairs(re) do --遍历结果测试用
print(k, v)
end]]--
if string.find(ContentType, "image") == 1 then
luaRes =
Api.Api_SendMsg(--调用发消息的接口
CurrentQQ,
{
toUser = data.FromGroupId, --回复当前消息的来源群ID
sendToType = 2, --2发送给群1发送给好友3私聊
sendMsgType = "PicMsg", --进行文本复读回复
content = "受限于服务器本身不能翻墙不保证能发出图片",
picUrl = img_url,
picBase64Buf = "",
fileMd5 = ""
}
)
-- log.notice("From Lua SendMsg Ret-->%d", luaRes.Ret)
else
--返回类型不是image/***就退出
luaMsg =
Api.Api_SendMsg(--调用发消息的接口
CurrentQQ,
{
toUser = data.FromGroupId, --回复当前消息的来源群ID
sendToType = 2, --2发送给群1发送给好友3私聊
sendMsgType = "TextMsg", --进行文本复读回复
groupid = 0, --不是私聊自然就为0咯
content = "淦 老哥你的鸡掰地址好几把怪啊,类型不是图片诶它是"..ContentType, --回复内容
atUser = 0 --是否 填上data.FromUserId就可以复读给他并@了
}
)
return 1
end
end
if string.find(data.Content, "MD5转图") then
img_MD5 = data.Content:gsub("MD5转图", "")
local tab = Split(img_MD5, "\r")
--print(img_MD5)
luaRes =
Api.Api_SendMsgV2(--调用发消息的接口
CurrentQQ,
{
ToUserUid=data.FromGroupId,
SendToType=2,
SendMsgType="PicMsg",
PicMd5s = tab
}
)
end
if string.find(data.Content, "图转MD5") then
str = json.decode(data.Content)
img_MD5 =""
for i=1 , #str.GroupPic, 1 do
img_MD5 =img_MD5..str.GroupPic[i].FileMd5.."\r"
end
Api.Api_SendMsgV2(
CurrentQQ,
{
ToUserUid = data.FromGroupId,
GroupID = 0,
SendToType = 2, --2发送给群1发送给好友3私聊
SendMsgType = "TextMsg" , --进行文本复读回复
Content = img_MD5
}
)
end
return 1
end
function ReceiveEvents(CurrentQQ, data, extData)
return 1
end
--[[用法:
local list = Split("abc,123,345", ",")
然后list里面就是
abc
123
345
第二个参数可以是多个字符,但是不能是Lua正则表达式。例如. ,或者 %w 之类的。]]
function Split(szFullString, szSeparator) --https://www.cnblogs.com/AaronBlogs/p/7615877.html
local nFindStartIndex = 1
local nSplitIndex = 1
local nSplitArray = {}
while true do
local nFindLastIndex = string.find(szFullString, szSeparator, nFindStartIndex)
if not nFindLastIndex then
nSplitArray[nSplitIndex] = string.sub(szFullString, nFindStartIndex, string.len(szFullString))
break
end
nSplitArray[nSplitIndex] = string.sub(szFullString, nFindStartIndex, nFindLastIndex - 1)
nFindStartIndex = nFindLastIndex + string.len(szSeparator)
nSplitIndex = nSplitIndex + 1
end
return nSplitArray
end