-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.ts
518 lines (457 loc) · 13.8 KB
/
index.ts
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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
import "@logseq/libs";
import { BlockEntity, SettingSchemaDesc } from "@logseq/libs/dist/LSPlugin.user";
import axios from "axios";
import dayjs from "dayjs";
let isProcessing = false;
let isDebug = false;
interface IPayload {
offset?: number;
}
interface IUpdate {
update_id: number;
message?: {
date: number;
text: string;
from: {
username: string;
};
chat: {
id: number;
}
},
channel_post?: {
date: number;
text: string;
chat: {
id: number;
}
}
}
interface IMessagesList {
chatId: number;
text: string;
}
interface IGroup {
[key: string]: string[];
}
function log(message: any) {
if (isDebug) console.log(message);
}
/**
* main entry
*/
async function main() {
const logseqSettings = logseq.settings;
if (!logseqSettings) {
logseq.UI.showMsg("[Inbox Telegram] Cannot get settings", "error");
return;
}
if (logseqSettings.isDebug === true) {
isDebug = true;
}
if (!logseqSettings.hasOwnProperty("inboxName")) {
await logseq.updateSettings({
inboxName: "#inbox",
});
}
if (!logseqSettings.hasOwnProperty("invertMessagesOrder")) {
await logseq.updateSettings({
invertMessagesOrder: false,
});
}
if (!logseqSettings.hasOwnProperty("addTimestamp")) {
await logseq.updateSettings({
addTimestamp: false,
});
}
if (!logseqSettings.hasOwnProperty("authorizedUsers")) {
await logseq.updateSettings({
authorizedUsers: [],
});
}
if (
typeof logseqSettings.pollingInterval === "undefined" ||
logseqSettings.pollingInterval === null
) {
await logseq.updateSettings({
pollingInterval: 60000,
});
}
if (!logseq.settings!.inboxByChat) {
await logseq.updateSettings({
inboxByChat: [],
});
}
if (!logseqSettings.hasOwnProperty("botToken")) {
await logseq.updateSettings({
botToken: "",
});
}
applySettingsSchema();
if (!logseqSettings.botToken) {
logseq.UI.showMsg("[Inbox Telegram] You should change plugin settings");
return;
}
console.log("[Inbox Telegram] Started!");
setTimeout(() => {
process();
}, 3000);
if (logseqSettings.pollingInterval > 0) {
startPolling();
}
}
function applySettingsSchema() {
const settings: SettingSchemaDesc[] = [
{
key: "botToken",
description: "Telegram Bot token. In order to start you need to create Telegram bot: https://core.telegram.org/bots#3-how-do-i-create-a-bot. Create a bot with BotFather, which is essentially a bot used to create other bots. The command you need is /newbot. After you choose title, BotFaher give you the token",
type: "string",
default: "",
title: "Bot token",
},
{
key: "pollingInterval",
description:
"This interval will be used to get new messages from Telegram bot",
type: "number",
default: 600000,
title: "Polling interval (milliseconds)",
},
{
key: "inboxName",
description:
"Messages will be pasted in daily journal into block with text, specified in inboxName property. Replace it in case of necessary. If you don't want to group messages, set inboxName property to null. In this case messages will be inserted directly into page block",
type: "string",
default: "#inbox",
title: "Title in daily journal",
},
{
key: "authorizedUsers",
description:
"Be sure to add your username in authorizedUsers array, because your recently created bot is publicly findable and other peoples may send messages to your bot. For example \"authorizedUsers\": [\"your_username\"]. If you leave this array empty - all messages from all users will be processed!",
type: "object",
default: [],
title: "authorizedUsers",
},
{
key: "useActiveGraph",
description: "If enabled, bot messages will be sent to the currently active graph",
type: "boolean",
default: true,
title: "Paste messages to currently active graph",
},
{
key: "botTargetGraph",
description: "Specify the graph where bot messages should be received, used only if useActiveGraph is false",
type: "string",
default: "",
title: "Bot Target Graph",
},
{
key: "addTimestamp",
description:
"If this set to true, message received time in format HH:mm will be added to message text, for example 21:13 - Test message",
type: "boolean",
default: false,
title: "Add timestamp",
},
{
key: "invertMessagesOrder",
description:
"New messages adds to the top of node by default, this setting will inverse the order of added messages, new messages will be added to the bottom of node",
type: "boolean",
default: false,
title: "Invert messages order",
},
{
key: "inboxByChat",
description:
"Allows to set multiple inboxes, more information at https://github.com/shady2k/logseq-inbox-telegram-plugin#multiple-inboxes",
type: "object",
default: [],
title: "Allows to set multiple inboxes",
},
{
key: "isDebug",
description:
"Debug mode. Usually you don't need this. Use it if you are developer or developers asks you to turn this on",
type: "boolean",
default: false,
title: "Debug mode",
},
];
logseq.useSettingsSchema(settings);
}
function startPolling() {
console.log("[Inbox Telegram] Polling started!");
setInterval(() => process(), logseq.settings!.pollingInterval);
}
async function process() {
log("Processing");
if (!logseq.settings!.useActiveGraph) {
const botTargetGraph = logseq.settings!.botTargetGraph;
const currentGraph = await logseq.App.getCurrentGraph();
if (currentGraph?.name !== botTargetGraph) {
log(`Not in the bot target graph: ${botTargetGraph}, current graph: ${currentGraph?.name}, skipped`);
return;
}
}
if (isProcessing) {
log("Already running, processing skipped");
return;
}
isProcessing = true;
const messages = await (async () => {
try {
const res = await getMessages();
return res;
} catch (error) {
console.error(error);
return undefined;
}
})();
log({ messages });
if (!messages || messages.length === 0) {
isProcessing = false;
return;
}
const todayJournalPage = await getTodayJournal();
if (
!todayJournalPage ||
todayJournalPage.length <= 0 ||
!todayJournalPage[0].name
) {
logseq.UI.showMsg(
"[Inbox Telegram] Cannot get today's journal page",
"error"
);
isProcessing = false;
return;
}
const defaultInboxName = logseq.settings!.inboxName || null;
const inboxByChat = logseq.settings!.inboxByChat;
function getInboxByChatId(chatId: number): string {
if (!inboxByChat) return defaultInboxName;
const obj = inboxByChat.find(
(item: { chatId: number }) => item.chatId === chatId
);
if (obj && obj.inboxName && obj.inboxName !== "") {
return obj.inboxName;
} else {
return defaultInboxName;
}
}
const grouped = messages.reduce(
(groups, item) => ({
...groups,
[getInboxByChatId(item.chatId)]: [
...(groups[getInboxByChatId(item.chatId)] || []),
item.text,
],
}),
{} as IGroup
);
Object.entries(grouped).forEach(async ([inboxName, messages]) => {
await insertMessages(todayJournalPage[0].name, inboxName, messages);
});
logseq.UI.showMsg("[Inbox Telegram] Messages added to inbox", "success");
const uniqueChats = [...new Set(messages.map((item) => item.chatId))];
const newInboxByChat = inboxByChat.slice();
uniqueChats.forEach(async (chatId) => {
const obj = inboxByChat.find(
(item: { chatId: number }) => item.chatId === chatId
);
if (!obj) {
newInboxByChat.push({
chatId,
inboxName: defaultInboxName,
});
}
});
await logseq.updateSettings({
inboxByChat: newInboxByChat,
});
}
async function insertMessages(
todayJournalPageName: string,
inboxName: string | null,
messages: string[]
) {
const inboxBlock = await checkInbox(todayJournalPageName, inboxName);
if (!inboxBlock) {
isProcessing = false;
logseq.UI.showMsg("[Inbox Telegram] Cannot get inbox block", "error");
return;
}
const blocks = messages.map((message) => ({ content: message }));
const params = {
sibling: false,
before: true
};
let targetBlock = inboxBlock.uuid;
if (logseq.settings!.invertMessagesOrder) {
const inboxBlockTree = await logseq.Editor.getBlock(inboxBlock.uuid, { includeChildren: true });
if (inboxBlockTree && inboxBlockTree.children && inboxBlockTree?.children?.length > 0) {
const block = inboxBlockTree?.children[inboxBlockTree?.children?.length - 1] as BlockEntity
if (block && block.uuid) {
targetBlock = block.uuid
params.sibling = true
}
}
}
if (inboxName === null || inboxName === "null" || inboxName === "") {
params.sibling = true;
if (logseq.settings!.invertMessagesOrder) {
params.before = false
}
}
log({ inboxBlock, blocks, params });
await logseq.Editor.insertBatchBlock(targetBlock, blocks, params);
isProcessing = false;
}
async function checkInbox(pageName: string, inboxName: string | null) {
log({ pageName, inboxName });
const pageBlocksTree = await logseq.Editor.getPageBlocksTree(pageName);
if (inboxName === null || inboxName === "null" || inboxName === "") {
log("No group");
return pageBlocksTree[0];
}
let inboxBlock;
inboxBlock = pageBlocksTree.find((block: { content: string }) => {
return block.content === inboxName;
});
if (!inboxBlock) {
const newInboxBlock = await logseq.Editor.insertBlock(
pageBlocksTree[pageBlocksTree.length - 1].uuid,
inboxName,
{
before: pageBlocksTree[pageBlocksTree.length - 1].content ? false : true,
sibling: true
}
);
return newInboxBlock;
} else {
return inboxBlock;
}
}
async function getTodayJournal() {
const d = new Date();
const todayDateObj = {
day: `${d.getDate()}`.padStart(2, "0"),
month: `${d.getMonth() + 1}`.padStart(2, "0"),
year: d.getFullYear(),
};
const todayDate = `${todayDateObj.year}${todayDateObj.month}${todayDateObj.day}`;
let ret;
try {
ret = await logseq.DB.datascriptQuery(`
[:find (pull ?p [*])
:where
[?b :block/page ?p]
[?p :block/journal? true]
[?p :block/journal-day ?d]
[(= ?d ${todayDate})]]
`);
} catch (e) {
console.error(e);
}
return (ret || []).flat();
}
function getMessages(): Promise<IMessagesList[] | undefined> {
return new Promise((resolve, reject) => {
let updateId: number;
let messages: IMessagesList[] = [];
const botToken = logseq.settings!.botToken;
const payload: IPayload = {
...(logseq.settings!.updateId && {
offset: logseq.settings!.updateId + 1,
}),
};
axios
.post(`https://api.telegram.org/bot${botToken}/getUpdates`, payload)
.then(async function (response) {
if (response && response.data && response.data.ok) {
const resArr = response.data.result;
resArr.forEach((element: IUpdate) => {
updateId = element.update_id;
if (
element.message &&
element.message.text &&
element.message.date &&
element.message.from.username
) {
const authorizedUsers: string[] =
logseq.settings!.authorizedUsers;
if (authorizedUsers && authorizedUsers.length > 0) {
if (!authorizedUsers.includes(element.message.from.username)) {
log({
name: "Ignore messages, user not authorized",
element,
});
return;
}
}
const text = ((telegramText: string, addTimestamp: boolean) => {
if (addTimestamp) {
return `${dayjs
.unix(element.message.date)
.format("HH:mm")} - ${telegramText}`;
} else {
return telegramText;
}
})(element.message.text, logseq.settings!.addTimestamp);
log({
name: "Push in group messages",
element: element.message.chat.id,
text,
});
messages.push({
chatId: element.message.chat.id,
text,
});
}
if (
element.channel_post &&
element.channel_post.text &&
element.channel_post.date
) {
const text = ((telegramText: string, addTimestamp: boolean) => {
if (addTimestamp) {
return `${dayjs
.unix(element.channel_post.date)
.format("HH:mm")} - ${telegramText}`;
} else {
return telegramText;
}
})(element.channel_post.text, logseq.settings!.addTimestamp);
log({
name: "Push in channel messages",
element: element.channel_post.chat.id,
text,
});
messages.push({
chatId: element.channel_post.chat.id,
text,
});
}
});
await logseq.updateSettings({
updateId,
});
resolve(messages);
} else {
logseq.UI.showMsg(
"[Inbox Telegram] Unable to parse Telegram response",
"error"
);
reject();
}
})
.catch(function (error) {
console.error(error);
reject(error);
});
});
}
// bootstrap
logseq.ready(main).catch(console.error);