-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.ts
118 lines (111 loc) · 3.27 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
import moment from 'moment'
import Watcher from './watcher'
import { Readable } from 'stream'
import DiscordDriver from './drivers/discord'
import MessageLike from './models/message-like'
import fetch from 'node-fetch'
import * as fs from 'fs'
const config: Config = JSON.parse(fs.readFileSync('config.json', 'utf-8'))
interface Config {
watchInterval: {
value: number
unit: string
}
watchURLs: string[]
watchTargets?: {
url: string
selector?: string
}[]
discord: {
token: string
channels: string[]
motd: boolean
threshold: number
permittedGroups: string[]
}
commandPrefix: string
}
function writeConfig(config: unknown): void {
const path = `${__dirname}/config.json`
fs.writeFileSync(path, JSON.stringify(config))
}
async function watchadd(msg: MessageLike, command: string[]) {
if (command.length < 2) {
msg.reply('Usage: watchadd <url>')
} else if (
msg.user.group.some((v) => config.discord.permittedGroups.includes(v))
) {
const url = command[1]
console.debug(url)
let testRes
try {
testRes = await fetch(url)
if (!testRes.ok)
msg.reply(
`Error: server returned ${testRes.status} ${testRes.statusText}`,
)
else {
if (!config.watchURLs.includes(testRes.url)) {
config.watchURLs.push(testRes.url)
writeConfig(config)
msg.reply(`Successfully added the URL: ${testRes.url}`)
}
}
} catch (e) {
console.debug(e)
msg.reply(`Error: ${e.message}`)
}
} else {
msg.reply("You don't have a permission!")
}
}
async function main(): Promise<void> {
console.log('>>> Starting... <<<')
console.log(moment().toString())
console.log(config.watchInterval)
const driver = new DiscordDriver()
await driver.initialize(config.discord.motd)
const duration = moment.duration(
config.watchInterval.value,
config.watchInterval.unit as moment.unitOfTime.Base,
)
const urlTargets = config.watchURLs.map((url: string) => ({ url: url }))
const targets = urlTargets.concat(config.watchTargets || [])
const watcher = new Watcher(targets, duration)
watcher.onDiff = (diff): void => {
console.debug(`diff found: ${moment().toString()} at ${diff.target.url}`)
console.debug(diff.d)
const message = `更新が検出されました!${moment().format(
'YYYY-MM-DD HH:mm:ss',
)}\n${diff.target.url}`
const content = `更新が検出されました!${moment().format(
'YYYY-MM-DD HH:mm:ss',
)}\`\`\`diff\n${diff.d}\`\`\`\n${diff.target.url}`
if (content.length > config.discord.threshold) {
const readable = new Readable()
readable.push(diff.d)
readable.push(null)
driver.uploadAll(message, readable, `diff-${moment().toString()}.txt`)
} else {
driver.sendAll(content)
}
}
driver.onMessage = async (msg: MessageLike): Promise<void> => {
if (msg.content.startsWith(config.commandPrefix)) {
const command = msg.content.substr(1).split(' ')
console.debug(command)
console.debug(msg.user.group)
switch (command[0]) {
case 'watchadd':
await watchadd(msg, command)
break
case 'ping':
await msg.reply('pong!')
break
default:
break
}
}
}
}
main()