-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
135 lines (126 loc) · 3.11 KB
/
main.js
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
function doGet(e) {
var params = JSON.stringify(e);
if (e.parameter.hasOwnProperty("xhsCookie")) {
handleXhsCookie(e.parameter.xhsCookie);
}
return HtmlService.createHtmlOutput(params);
}
function doPost(e) {
if (e.postData.type == "application/json") {
var update = JSON.parse(e.postData.contents);
// Handle Messages
if (update.hasOwnProperty("message")) {
var msg = update.message;
console.info(msg);
if (isBotCommand(msg)) {
handleBotCommand(update);
} else if (isWhiteList(msg)) {
// auto fetch for whitelist chats
fetch(msg);
// ether's reply
reply(msg);
// get video id
getVideoFileId(msg);
} else if (shouldForward(msg)) {
// forward non-whitelisted regular message
forward(msg);
}
return;
}
// Handle Channel Posts
if (update.hasOwnProperty("channel_post")) {
var channel_post = update.channel_post;
console.info(channel_post);
handleChannelPost(channel_post);
return;
}
if (update.hasOwnProperty("edited_channel_post")) {
var channel_post = update.edited_channel_post;
console.info(channel_post);
handleEditedChannelPost(channel_post);
return;
}
if (update.hasOwnProperty("callback_query")) {
var callback_query = update.callback_query;
console.info(callback_query);
handleCallbackQuery(callback_query);
return;
}
// Fall though service messages/updates
console.warn(update);
return;
}
}
function handleBotCommand(update) {
var msg = update.message;
var msgSplitted = msg.text.split(" ");
if (isPrivateChat(msg)) {
var command = msgSplitted[0].replace("/", "").split("@")[0];
} else {
var command = msgSplitted[0].replace("/", "").replace(botName, "");
}
switch (command) {
case "start":
start(msg);
break;
case "fetch":
fetch(msg);
break;
case "guess":
guess(msg);
break;
case "hotweibo":
hotweibo(msg);
break;
case "debug":
sendMessage({
chat_id: msg.chat.id,
text: debug(update),
reply_to_message_id: msg.message_id,
disable_web_page_preview: true,
});
break;
// Private Only Commands
case "j":
jptv(msg);
break;
case "jpls":
jpls(msg);
break;
}
return;
}
function handleChannelPost(channel_post) {
switch (channel_post.chat.id) {
case jptvId:
insertJptv(channel_post);
break;
case jptvPrivateId:
insertJptvPrivate(channel_post);
break;
case favId:
insertFav(channel_post);
break;
}
}
function handleEditedChannelPost(channel_post) {
switch (channel_post.chat.id) {
case jptvId:
updateJptv(channel_post);
break;
case favId:
updateFav(channel_post);
break;
}
}
function handleCallbackQuery(callback_query) {
let identifier = callback_query.data.split(":")[0];
switch (identifier) {
case "jpls":
handleJplsCallback(callback_query);
break;
case "jptv":
handleJptvCallback(callback_query);
break;
}
}