forked from fdnd-task/proof-of-concept
-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
155 lines (109 loc) · 4.1 KB
/
server.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
// Importeer express uit de node_modules map
import { render } from "ejs";
import express, { response } from "express";
import "dotenv/config";
import { format, formatISO, add, differenceInMinutes, differenceInHours } from "date-fns"
import { utcToZonedTime } from "date-fns-tz"
// Maak een nieuwe express app aan
const app = express();
// base api url
const baseUrl = "https://api.werktijden.nl/2"
// get info form api
const url = `${baseUrl}/employees`;
// Haal de datum van vandaag op om alleen de punches van vandaag te laten zien:
const date = new Date()
const timeZone = 'Europe/Amsterdam'
const zonedDate = utcToZonedTime(date, timeZone)
const start = formatISO(new Date(zonedDate), { representation: 'date' })
const end = formatISO(add(new Date(zonedDate), { days: 1 }), { representation: 'date' })
const today = format(utcToZonedTime(date, timeZone), 'd-L-y')
// om inkloktijden op te vragen
const punchesUrl = `${baseUrl}/timeclock/punches?departmentId=98759&start=${start}&end=${end}`;
// voor posten van inkloktijden
const clockinUrl = `${baseUrl}/timeclock/clockin`;
// voor posten van uitkloktijden
const clockoutUrl= `${baseUrl}/timeclock/clockout`;
const options = {
headers: {
Authorization: `Bearer ${process.env.APIKEY}`,
"Content-Type": "application/json"
}
};
// GET-verzoek
async function fetchData(url) {
const response = await fetch(url, options);
const data = await response.json();
return data;
}
// POST-verzoek
async function postData(url, body) {
const postOptions = {
...options,
method: "POST",
body: JSON.stringify(body)
};
const response = await fetch(url, postOptions);
const data = await response.json();
return data;
}
// Stel ejs in als template engine en geef de 'views' map door
app.set("view engine", "ejs");
app.set("views", "./views");
// Stel afhandeling van formulieren
app.use(express.json());
app.use(express.urlencoded({ extended: true }));
// Gebruik de map 'public' voor statische resources
app.use(express.static("public"));
//route index
// index
app.get("/", async (request, response) => {
const employeesData = await fetchData(url);
const punchesData = await fetchData(punchesUrl);
console.log(punchesData)
// console.log(employeesData);
// console.log(punchesData.data);
response.render("index", { employee: employeesData, punches: punchesData.data ? punchesData.data : false });
});
// GET-verzoek voor het ophalen van de recente uitkloktijd
app.get("/clockout/:employeeId", async (request, response) => {
const { employeeId } = request.params;
const recentClockOutData = await fetchData(`/clockout/${employeeId}`);
const recentClockOutTime = recentClockOutData.timestamp;
response.send(recentClockOutTime);
});
// GET-verzoek voor het ophalen van de recente inkloktijd
app.get("/clockin/:employeeId", async (request, response) => {
const { employeeId } = request.params;
const recentClockInData = await fetchData(`/clockin/${employeeId}`);
const recentClockInTime = recentClockInData.timestamp;
response.send(recentClockInTime);
});
// Clock in
app.post("/clockin", async (request, response) => {
const { employeeId, departmentId } = request.body;
const clockInData = await postData(clockinUrl, {
employee_id: employeeId,
department_id: departmentId
});
console.log(clockInData);
response.redirect("/");
});
// Clock out
app.post("/clockout", async (request, response) => {
const { employeeId, departmentId } = request.body;
const clockOutData = await postData(clockoutUrl, {
employee_id: employeeId,
department_id: departmentId
});
console.log(clockOutData);
response.redirect("/");
});
// voor het posten moet ik de employee_id en department_id(#departmentnummer) meegeven
// index post functie voor inklokken en uitklokken van medewerkers
// Stel het poortnummer in waar express op gaat luisteren
app.set("port", process.env.PORT || 8000);
// Start express op, haal het ingestelde poortnummer op
app.listen(app.get("port"), function () {
// Toon een bericht in de console en geef het poortnummer door
console.log(`Application started on http://localhost:${app.get("port")}`);
});