-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.ts
39 lines (32 loc) · 1.24 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
import { AzureFunction, Context } from "@azure/functions";
import { Environment, isLocalEnvironment } from "../common/utils";
import { bookCleanupInternal } from "./bookCleanup";
const runEvenIfLocal: boolean = false;
// See README for schedule of time triggered tasks
const timerTrigger: AzureFunction = async function (
context: Context,
// eslint-disable-next-line @typescript-eslint/no-explicit-any
timer: any
): Promise<void> {
// By default, we don't want to run this if we are running the functions locally.
if (!runEvenIfLocal && isLocalEnvironment()) return;
context.log("bookCleanup trigger function started", new Date().toISOString());
if (timer.isPastDue) {
context.log("bookCleanup trigger function is running late");
}
try {
context.log("running book cleanup for development");
await bookCleanupInternal(Environment.DEVELOPMENT, context.log);
context.log("running book cleanup for production");
await bookCleanupInternal(Environment.PRODUCTION, context.log);
context.log("book cleanup succeeded");
} catch (e) {
context.log("book cleanup failed", e);
}
context.log(
"bookCleanup trigger function finished",
new Date().toISOString()
);
context.done();
};
export default timerTrigger;