-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.ts
57 lines (47 loc) · 1.28 KB
/
main.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
import { load } from "@std/dotenv";
import { Cron } from "https://deno.land/x/[email protected]/dist/croner.js";
import { Download } from "./services/download.ts";
import { Process } from "./services/process.ts";
import { DatabaseService, Upgrade } from "./services/pg-service.ts";
await load({ export: true });
let isRunning = false;
const upgradeFirePointsData = async () => {
if (isRunning) return;
const downloader = new Download();
const processor = new Process();
const db = new DatabaseService();
const upgrader = new Upgrade(db);
try {
await downloader.download();
const records = await processor.process();
await upgrader.clearFirePointsTable();
await upgrader.insert(records);
} catch (error) {
console.error(
`System cron error [${new Date().toLocaleDateString()}]: `,
error
);
} finally {
await db.end();
isRunning = false;
}
};
const upgradeCron = new Cron(
"*/60 * * * *",
{
timezone: "Asia/Shanghai",
name: "system-cron",
protect: true,
maxRuns: Infinity,
},
async () => {
await upgradeFirePointsData();
}
);
Deno.addSignalListener("SIGINT", () => {
console.log("\nStopping cron...");
upgradeCron.stop();
Deno.exit(0);
});
console.log("Upgrade cron started...");
await upgradeFirePointsData();