-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStartserver.mjs
454 lines (429 loc) · 14.4 KB
/
Startserver.mjs
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
import fs from "fs";
import fetch from "node-fetch";
import cron from "node-cron";
import nodemailer from "nodemailer";
import { WebClient } from "@slack/web-api";
import Database from "better-sqlite3";
import moment from "moment";
process.env.NODE_TLS_REJECT_UNAUTHORIZED = "0";
const SMTP_HOST = "Pass your SMTP host here...";
const SMTP_PORT = "Pass your SMTP port here...";
const SMTP_USER = "Pass your SMTP user here...";
const SMTP_PASS = "Pass your SMTP password here...";
const db = new Database("apiHealth.db");
const storeInDB = (data) => {
db.exec("CREATE TABLE IF NOT EXISTS objects (data TEXT)");
const serializedData = JSON.stringify(data);
const insert = db.prepare("INSERT INTO objects (data) VALUES (?)");
insert.run(serializedData);
console.log("Data stored in database successfully...");
const rows = db.prepare("SELECT * FROM objects").all();
const deserializedData = rows.map((row) => JSON.parse(row.data));
// console.log("Data read from database:", deserializedData);
};
const readAPIsFromJSON = () => {
try {
const data = fs.readFileSync(new URL("./apis.json", import.meta.url));
return JSON.parse(data);
} catch (error) {
console.error("Error reading APIs from JSON:", error);
throw error;
}
};
const sendEmail = async (unhealthyAPI) => {
try {
let transporter = nodemailer.createTransport({
host: SMTP_HOST,
port: SMTP_PORT,
auth: {
user: SMTP_USER,
pass: SMTP_PASS,
},
secure: false,
tls: {
ciphers: "SSLv3",
},
});
for (const api of unhealthyAPI) {
if (api.value && !api.value.healthy) {
for (const ownerEmail of api.owners) {
let mailOptions = {
from: SMTP_USER,
to: ownerEmail,
subject: `Unhealthy API Alert: ${api.name} ⚠️`,
text: `
⚠️ Unhealthy API Alert for ${api.name} ⚠️
Owner Email: ${
ownerEmail ? ownerEmail : "Not Available"
}
--------------------
• API Name: ${api.name ? api.name : "Not Available"}
• API Health: ${
api.value.healthy ? "Healthy" : "Unhealthy 🚫"
}
• Error: ${
api.value.error ? api.value.error : "Not Available"
}
• API EndPoint: ${
api.endpoint ? api.endpoint : "Not Available"
}
• API Method: ${
api.method ? api.method : "Not Available"
}
• API Headers: ${
api.headers
? JSON.stringify(api.headers)
: "Not Available"
}
• API Body: ${api.body ? api.body : "Not Available"}
• API Query Params: ${
api.queryParams
? JSON.stringify(api.queryParams)
: "Not Available"
}
• Status: ${
api.value.status ? api.value.status : 500 + "❌"
}
• Message: ${
api.value.message
? api.value.message
: api.value.error
? api.value.error
: "Not Available"
}
• Time: ${
api.value.time ? api.value.time : moment().format()
}
--------------------
"This email has been automatically generated by the API Health Monitoring System. Please refrain from replying to this email."
`,
};
await transporter.sendMail(mailOptions);
console.log("Email sent successfully...");
break;
}
}
}
} catch (error) {
console.error(`Error sending email for unhealthy APIs:`, error);
}
};
const sendSlackMessage = async (unhealthyAPI) => {
try {
// Create a new instance of the WebClient class with the WebClient token passed in the constructor to authenticate with Slack API using the WebClient.
const slackClient = new WebClient("<pass slack WebClient Token >");
for (const api of unhealthyAPI) {
if (api.value && !api.value.healthy) {
const messageBlock = {
blocks: [
{
type: "section",
text: {
type: "mrkdwn",
text: `:warning: *Unhealthy API Alert for ${api.name}*`,
},
},
{
type: "divider",
},
{
type: "section",
fields: [
{
type: "mrkdwn",
text: `*API Name:*\n${api.name} 📡`,
},
{
type: "mrkdwn",
text: `*Owner Email:*\n${
api.owners == ""
? "Not Available ⚠️"
: api.owners
? api.owners + " 👨💻"
: "Not Available ⚠️"
}`,
},
],
},
{
type: "divider",
},
{
type: "section",
fields: [
{
type: "mrkdwn",
text: `*API Health:*\n${
api.value.healthy ? "Healthy ✅" : "Unhealthy ❌"
}`,
},
{
type: "mrkdwn",
text: `*Error:*\n${
api.value.error ? api.value.error : "Not Available ✔️"
}`,
},
],
},
{
type: "divider",
},
{
type: "section",
fields: [
{
type: "mrkdwn",
text: `*API EndPoint:*\n${
api.endpoint
? "```" + api.endpoint + " 🔗" + "```"
: "```" + "Not Available ⚠️" + "```"
}`,
},
{
type: "mrkdwn",
text: `*API Method:*\n${
api.method
? "```" + api.method + "```"
: "```" + "Not Available ⚠️" + "```"
}`,
},
],
},
{
type: "divider",
},
{
type: "section",
fields: [
{
type: "mrkdwn",
text: `*API Headers:*\n${
api.headers
? "```" + JSON.stringify(api.headers) + "```"
: "Not Available ⚠️"
}`,
},
{
type: "mrkdwn",
text: `*API Body:*\n${
api.body == undefined
? "```" + "Not Available" + "```"
: api.body
? "```" + api.body + "```"
: "```" + JSON.stringify(api.json) + "```"
? "```" + JSON.stringify(api.json) + "```"
: "Not Available"
}`,
},
],
},
{
type: "divider",
},
{
type: "section",
fields: [
{
type: "mrkdwn",
text: `*API Query Params:*\n${
api.queryParams
? "```" + JSON.stringify(api.queryParams) + "```" + ""
: "Not Available"
}`,
},
],
},
{
type: "divider",
},
{
type: "section",
fields: [
{
type: "mrkdwn",
text: `*Status:*\n${
api.value.status
? api.value.status == "200"
? "200 ✅"
: api.value.status == "404"
? "```" + "404 ⌛" + "```"
: "```" + api.value.status + " ❌" + "```"
: "```" + "500 ❌" + "```"
}`,
},
{
type: "mrkdwn",
text: `*Message:*\n${
api.value.message
? "```" + api.value.message + " 📌" + "```"
: "```" + api.value.error + " 📌" + "```"
}`,
},
],
},
{
type: "divider",
},
{
type: "section",
fields: [
{
type: "mrkdwn",
text: `*Time:*\n${
api.value.time
? api.value.time + " ⏰"
: moment().format() + " ⏰"
}`,
},
],
},
],
};
const result = await slackClient.chat.postMessage({
channel: api.slack,
blocks: messageBlock.blocks,
});
console.log("Slack message sent successfully...");
}
}
} catch (error) {
console.error(`Error sending Slack message for unhealthy APIs:`, error);
}
};
const checkHealth = async (api) => {
try {
let url = api.endpoint;
if (api.queryParams) {
const queryParams = new URLSearchParams(api.queryParams);
url += `?${queryParams.toString()}`;
}
const response = await fetch(url, {
method: api.method,
headers: api.headers,
body: api.json ? JSON.stringify(api.json) : api.body,
});
if (response.ok) {
return {
...response,
healthy: true,
name: api.name,
url: response.url,
status: response.status,
message: response.statusText,
time: moment().format(),
};
} else {
return {
...response,
healthy: false,
name: api.name,
url: response.url,
status: response.status,
message: response.statusText,
time: moment().format(),
};
}
} catch (error) {
return {
error: error.message,
healthy: false,
name: api.name,
time: moment().format(),
};
}
};
const checkAPIsStatuspage = async (mergedResults) => {
const apiKey = "4bdaa902fdbe47b9b52ea01f92ea2ed0";
async function patchComponentStatus(
componentId,
healthy,
error,
name,
headers,
method,
urlAPI,
status,
message
) {
//<key> is the page key of the statuspage.io replace it with your page key or leave it as it is if you want any dashboard to be updated.
const url = `https://api.statuspage.io/v1/pages/<key>/components/${componentId}?api_key=${apiKey}`;
const data = {
component: {
status: healthy ? "operational" : "major_outage",
description: `API ${name}\n URL: ${urlAPI}\n Status: ${status}\n Message: ${message} \n Method: ${method}\n`,
},
};
try {
const response = await fetch(url, {
method: "PATCH",
body: JSON.stringify(data),
headers: {
"Content-Type": "application/json",
},
});
const result = await response.json();
console.log(
"PATCH request succeeded for all APIs on statuspage.io if you pass the correct componentId..."
);
} catch (error) {
console.error("Error making PATCH request:", error);
}
}
async function patchComponents() {
for (const component of mergedResults) {
await patchComponentStatus(
component.componentId,
component.value.healthy,
component.value.error,
component.value.name,
component.headers,
component.method,
component.value.url ? component.value.url : component.endpoint,
component.value.status ? component.value.status : 500,
component.value.message
? component.value.message
: component.value.error
);
}
}
patchComponents();
};
const checkAPIsHealth = async (apis) => {
try {
console.log("Checking APIs health...");
let results = await Promise.allSettled(apis.map((api) => checkHealth(api)));
let mergedResults = apis.map((api, i) => ({
...api,
value: results[i].status === "fulfilled" ? results[i].value : null,
}));
console.log("APIs health checked successfully...");
const unhealthyAPIs = mergedResults.filter(
(api) => !api.value || !api.value.healthy
);
if (unhealthyAPIs.length > 0) {
console.log(unhealthyAPIs.length, "Unhealthy APIs found");
console.log("Sending email and slack message for unhealthy APIs...");
await sendEmail(unhealthyAPIs);
await sendSlackMessage(unhealthyAPIs);
} else {
console.log("All APIs are healthy...");
}
checkAPIsStatuspage(mergedResults);
console.log("Storing results in database...");
storeInDB(mergedResults);
return mergedResults;
} catch (error) {
console.error("Error occurred while checking APIs health:", error);
throw error;
}
};
cron.schedule("*/1 * * * *", async () => {
console.log("Running a task every minute...");
try {
const apis = readAPIsFromJSON();
console.log("APIs read from JSON successfully", apis);
await checkAPIsHealth(apis.apis);
} catch (error) {
console.error("An error occurred during task execution:", error);
}
});