-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathstartup-message.ts
214 lines (182 loc) · 6.54 KB
/
startup-message.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
/**********************************************************************************
* MIT License *
* *
* Copyright (c) 2021 Hyperjump Technology *
* *
* Permission is hereby granted, free of charge, to any person obtaining a copy *
* of this software and associated documentation files (the "Software"), to deal *
* in the Software without restriction, including without limitation the rights *
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell *
* copies of the Software, and to permit persons to whom the Software is *
* furnished to do so, subject to the following conditions: *
* *
* The above copyright notice and this permission notice shall be included in all *
* copies or substantial portions of the Software. *
* *
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR *
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, *
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE *
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER *
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, *
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE *
* SOFTWARE. *
**********************************************************************************/
import path from 'path'
import isUrl from 'is-url'
import boxen from 'boxen'
import chalk from 'chalk'
import type { MonikaFlags } from '../../flag'
import type { ValidatedConfig } from '../../interfaces/config'
import type { Notification } from '@hyperjumptech/monika-notification'
import { channels } from '@hyperjumptech/monika-notification'
import type { Probe } from '../../interfaces/probe'
import { log } from '../../utils/pino'
import { isSymonModeFrom } from '../config'
import { createProber } from '../probe/prober/factory'
type LogStartupMessage = {
config: ValidatedConfig
flags: Pick<
MonikaFlags,
'config' | 'symonKey' | 'symonUrl' | 'verbose' | 'skip-start-message'
>
isFirstRun: boolean
}
export function logStartupMessage({
config,
flags,
isFirstRun,
}: LogStartupMessage): void {
if (flags['skip-start-message'] === true) {
// if skipping, wont have any message
return
}
if (isSymonModeFrom(flags)) {
log.info('Running in Symon mode')
return
}
for (const configSource of flags.config) {
if (isUrl(configSource)) {
log.info(`Using remote config: ${configSource}`)
} else if (configSource.length > 0) {
log.info(`Using config file: ${path.resolve(configSource)}`)
}
}
const startupMessage = generateStartupMessage({
config,
flags,
isFirstRun,
})
console.log(startupMessage)
}
function generateStartupMessage({
config,
flags,
isFirstRun,
}: LogStartupMessage): string {
const { notifications, probes } = config
const notificationTotal = notifications.length
const probeTotal = probes.length
const hasNotification = notificationTotal > 0
let startupMessage = ''
if (flags['skip-start-message'] === true) {
// if skipping, wont have any message
return ''
}
// warn if config is empty
if (!hasNotification) {
startupMessage += generateEmptyNotificationMessage()
}
startupMessage += generateConfigInfoMessage({
isFirstRun,
notificationTotal,
probeTotal,
})
if (flags.verbose) {
startupMessage += generateProbeMessage(probes)
startupMessage += generateNotificationMessage(notifications)
}
if (probes.some((p) => p.requests?.some((r) => r.ping))) {
startupMessage += generateDeprecatedPingMessage()
}
return startupMessage
}
function generateEmptyNotificationMessage(): string {
const NO_NOTIFICATIONS_MESSAGE = `Notifications has not been set. We will not be able to notify you when an INCIDENT occurs!
Please refer to the Monika documentations on how to how to configure notifications (e.g., Telegram, Slack, Desktop notification, etc.) at https://monika.hyperjump.tech/guides/notifications.`
return boxen(chalk.yellow(NO_NOTIFICATIONS_MESSAGE), {
padding: 1,
margin: {
top: 2,
right: 1,
bottom: 2,
left: 1,
},
borderStyle: 'bold',
borderColor: 'yellow',
})
}
function generateDeprecatedPingMessage(): string {
const message = `We are deprecating probe requests with flag "ping: true", please migrate to standalone probe https://monika.hyperjump.tech/guides/probes#ping-request`
return boxen(chalk.yellow(message), {
padding: 1,
margin: {
top: 2,
right: 1,
bottom: 2,
left: 1,
},
borderStyle: 'bold',
borderColor: 'yellow',
})
}
type GenerateConfigInfoMessageParams = {
isFirstRun: boolean
notificationTotal: number
probeTotal: number
}
function generateConfigInfoMessage({
isFirstRun,
notificationTotal,
probeTotal,
}: GenerateConfigInfoMessageParams) {
return `${
isFirstRun ? 'Starting' : 'Restarting'
} Monika. Probes: ${probeTotal}. Notifications: ${notificationTotal}\n\n`
}
function generateProbeMessage(probes: Probe[]): string {
let startupMessage = 'Probes:\n'
for (const probe of probes) {
const prober = createProber({
probeConfig: probe,
counter: 0,
notifications: [],
})
startupMessage += prober.generateVerboseStartupMessage()
}
return startupMessage
}
function generateNotificationMessage(notifications: Notification[]): string {
const hasNotification = notifications.length > 0
if (!hasNotification) {
return ''
}
let result = '`\nNotifications:\n`'
for (const notification of notifications) {
result += getIDMessage(notification)
result += getAdditionalMessage(notification)
}
return result
}
function getIDMessage({ id, type }: Notification) {
return `- Notification ID: ${id}
Type: ${type}
`
}
function getAdditionalMessage(notification: Notification) {
const { data, type } = notification
const channel = channels[type]
if (!channel?.additionalStartupMessage || !data) {
return ''
}
return channel.additionalStartupMessage(data)
}