This repository was archived by the owner on Aug 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathattendance.js
175 lines (153 loc) · 4.9 KB
/
attendance.js
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
const axios = require("axios").default;
const fs = require("fs");
const { login } = require("./utils");
const { attendanceUrl, logFilePath, attendanceFilePath } = require("./vars");
module.exports = function ({ configService, loggerService }) {
async function tryMarkAttendance(timeStr, cookies) {
const targetTimeMessage = `The next time this app will run is on ${getNextTargetTime(
timeStr
)}`;
try {
const response = await axios({
method: "get",
url: `${attendanceUrl}/MarkAttendance`,
headers: getHeaders(cookies),
});
if (response.data.code === "200") {
loggerService.log(response.data.msg, false);
markAttendanceInLog();
loggerService.log(
`Your attendance was marked successfully. ${targetTimeMessage}`,
true,
"Attendance Marked Successfully"
);
} else {
throw new Error(response.data.msg);
}
} catch (error) {
loggerService.handleError(
new Error(
`Attendance marking failed. ${targetTimeMessage}\n${error.message}`
),
true,
"Attendance Marking Failed"
);
}
}
function getHeaders(cookies) {
return {
accept:
"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7",
"accept-language": "en-US,en;q=0.9",
"cache-control": "no-cache",
pragma: "no-cache",
"sec-ch-ua":
'"Not/A)Brand";v="99", "Google Chrome";v="115", "Chromium";v="115"',
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-platform": '"Windows"',
"sec-fetch-dest": "document",
"sec-fetch-mode": "navigate",
"sec-fetch-site": "none",
"sec-fetch-user": "?1",
"upgrade-insecure-requests": "1",
cookie: cookies,
};
}
function markAttendanceAtPreferredTime(timeStr) {
const delay = getDelayForTargetTime(timeStr);
setTimeout(async () => {
if (isAttendanceMarked()) {
reschedule(timeStr);
return;
}
const config = configService.getConfig();
const cookies = await login(config.userName, config.password);
if (!cookies) {
loggerService.handleError(
new Error(
`Login failed. Please check your credentials. ${reschedule(
timeStr
)}`
),
true,
"Login Failed"
);
} else {
await tryMarkAttendance(timeStr, cookies);
}
markAttendanceAtPreferredTime(timeStr);
}, delay);
}
function reschedule(timeStr) {
const targetTime = getNextTargetTime(timeStr);
return `Attendance already marked, skipping for today. The next time this app will run is on ${targetTime}`;
}
function getDelayForTargetTime(timeStr) {
const now = new Date();
const targetTime = getNextTargetTime(timeStr);
return targetTime - now;
}
function isAttendanceMarked() {
if (fs.existsSync(logFilePath)) {
const logData = fs.readFileSync(logFilePath, "utf-8");
const lines = logData.split("\n");
const lastLog = lines[lines.length - 1];
const [loggedDate] = lastLog.split(" ");
const now = new Date();
const today = now.toISOString().split("T")[0];
return loggedDate === today;
}
return false;
}
function markAttendanceInLog() {
const now = new Date();
const logEntry = `${
now.toISOString().split("T")[0]
} ${now.toTimeString()}\n`;
fs.appendFileSync(logFilePath, logEntry);
}
function getNextTargetTime(timeStr) {
if (
typeof timeStr !== "string" ||
!/^(\d{1,2}:\d{2} (AM|PM))$/i.test(timeStr)
) {
console.error("Received invalid timeStr:", timeStr);
throw new Error(
"Invalid time format passed to getNextTargetTime. Expected format: HH:mm AM/PM"
);
}
let [hour, rest] = timeStr.split(":");
let [minute, ampm] = rest.split(" ");
hour = parseInt(hour);
minute = parseInt(minute);
if (ampm.toLowerCase() === "pm" && hour < 12) hour += 12;
if (ampm.toLowerCase() === "am" && hour === 12) hour = 0;
const now = new Date();
const targetTime = new Date(now);
targetTime.setHours(hour);
targetTime.setMinutes(minute);
targetTime.setSeconds(0);
if (now > targetTime) {
targetTime.setDate(targetTime.getDate() + 1);
}
while (true) {
const dayOfWeek = targetTime.getDay();
if (dayOfWeek === 6) {
// If it's Saturday, skip to Monday
targetTime.setDate(targetTime.getDate() + 2);
} else if (dayOfWeek === 0) {
// If it's Sunday, skip to Monday
targetTime.setDate(targetTime.getDate() + 1);
} else {
break; // If it's not Saturday or Sunday, break out of the loop
}
}
return targetTime;
}
return {
markAttendanceAtPreferredTime,
getNextTargetTime,
isAttendanceMarked,
markAttendanceInLog,
};
};