-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
346 lines (280 loc) · 10.7 KB
/
index.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
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
const express = require('express');
const Loki = require('lokijs');
const fetch = require('node-fetch');
const { WebhookClient } = require('dialogflow-fulfillment');
const jsonMiddleware = express.json();
const app = express();
const db = new Loki('foo.db');
const tableReservations = db.addCollection('tableReservations');
const tables = db.addCollection('tables');
const menu = db.addCollection('menu');
const orders = db.addCollection('orders');
tables.insert([
{tableSize: 2, id: 1},
{tableSize: 2, id: 2},
{tableSize: 3, id: 3},
{tableSize: 3, id: 4},
{tableSize: 3, id: 5},
{tableSize: 3, id: 5},
{tableSize: 3, id: 6},
{tableSize: 5, id: 7},
{tableSize: 7, id: 8},
{tableSize: 9, id: 9}
]);
menu.insert([
{ type: 'PRZYSTAWKA', id: 1, description: 'Domowe pierogi ruskie z okrasą', price: 18},
{ type: 'PRZYSTAWKA', id: 2, description: 'Carpaccio z buraka z dodatkiem bryndzy', price: 19},
{ type: 'ZUPA', id: 3, description: 'Pomidorowa z lanymi kluseczkami', price: 18},
{ type: 'ZUPA', id: 4, description: 'Krem z białych warzyw', price: 19},
{ type: 'DANIE GŁÓWNE', id: 5, description: 'Kotlet shabowy z kostką, pieczonymi ziemniakami i zasmżaną kapustą', price: 29},
{ type: 'DANIE GŁÓWNE', id: 6, description: 'Filet z sandacza z sosem koperkowym i ziemniakami z wody', price: 31},
{ type: 'DESER', id: 7, description: 'Ciasto marchewkowe', price: 16},
{ type: 'DESER', id: 8, description: 'Szarlotka', price: 16},
]);
app.post('/api', jsonMiddleware, (req, resp) => {
const agent = new WebhookClient({
request: req,
response: resp
});
const { parameters, contexts } = agent;
const intentMap = new Map();
intentMap.set('reserve table', async () => {
const person = parameters['person'].name;
const date = new Date(parameters['date']);
const time = new Date(parameters['time']);
const tableSize = parseInt(parameters['tableSize']);
freeTables = findFreeTables(date, time, tableSize);
if (checkIfPast(date, time)) {
agent.add(`
Nie można robić rezerwacji na przeszłość!
`);
}
else if (time.getHours() < 10 || time.getHours() > 22) {
agent.add(`
Nasza restauracja jest czynna między 10:00 a 22:00
`);
} else if (freeTables.length == 0) {
agent.add(`
Niestety, wszystkie stoliki mogące pomieścić tyle osób są już zajęte.\n
Możesz spróbować zarezerwować kilka stolików dla mniejszej ilości osób.
`);
} else {
tableReserv = {
person: person,
date : date,
time : time,
tableSize : tableSize,
tableId : freeTables[0].id
};
tableReservations.insert(tableReserv);
agent.add(`
Pomyślnie zarezerwowałeś stolik! Oczekujemy Cię o
${time.toLocaleTimeString("pl-PL", {hour: '2-digit', minute:'2-digit', timeZone: 'Europe/Warsaw'})},
${date.toLocaleDateString("pl-PL", {timeZone: 'Europe/Warsaw'})}, do zobaczenia!
`);
}
});
intentMap.set('cancel table reservation', async () => {
const person = parameters['person'].name;
const date = new Date(parameters['date']);
const time = new Date(parameters['time']);
if (checkIfPast(date, time)) {
agent.add(`
Nie można anulować przeszłych rezerwacji!
`);
} else {
const count = countReservations(person, date, time);
removeReservations(person, date, time);
if (count < 1) {
agent.add(`
Ups! Nie znaleziono żadnych rezerwacji!
`);
}
else if (count < 2) {
agent.add(`
Pomyślnie usunięto rezerwację.
`);
} else {
agent.add(`
Usunięto wszystkie Twoje rezerwacje na podaną godzinę.
`);
}
}
});
intentMap.set('free tables query', async () => {
const date = new Date(parameters['date']);
const time = new Date(parameters['time']);
const minTableSize = parseInt(parameters['tableSize']);
freeTables = findFreeTables(date, time, minTableSize);
freeTablesNumber = freeTables.length;
if (time.getHours() < 10 || time.getHours() > 22) {
agent.add(`
Nasza restauracja jest czynna między 10:00 a 22:00.
`);
}
else if (freeTablesNumber < 1) {
agent.add(`
Nie ma żadnych wolnych stolików.
`);
} else if (freeTablesNumber == 1) {
agent.add(`
Mamy jeden wolny stolik.
`);
} else if (freeTablesNumber < 5) {
agent.add(`
Mamy ${freeTablesNumber} wolne stoliki.
`);
} else {
agent.add(`
Mamy ${freeTablesNumber} wolnych stolików.
`);
}
});
intentMap.set('describe menu', async () => {
const types = parameters['menuType'];
const response = formatMenuByTypes(types);
agent.add(`Do zaoferowania mamy \n${response}`);
});
intentMap.set('dish price query', async () => {
const dishId = parseInt(parameters['dishId']);
const dishes = menu.where(dish => dish.id === dishId);
if (dishes.length < 1) {
agent.add(`Do zaoferowania mamy pozycje od 1 do ${menu.count()}`);
} else {
const dish = dishes[0];
agent.add(`Pozycja ${dish.id}. ${dish.description} kosztuje ${dish.price} zł`);
}
});
intentMap.set('order take-out', async () => {
const limit = menu.count();
const person = parameters['person'].name;
const date = new Date(parameters['orderDate']);
const time = new Date(parameters['orderTime']);
const dishIds = parameters['dishIds'].toString()
.split(",")
.map(Number)
.filter(dishId => dishId >= 1 && dishId <= limit);
const ordered = [];
var totalPrice = 0;
for (let dishId of dishIds) {
const dish = menu.findOne({'id': dishId});
ordered.push(dishId);
totalPrice += dish.price;
}
if (ordered.length < 1) {
agent.add(`
Nie udało się złożyć zamówienia! Oferujemy pozycje między 1 a ${limit}!
`);
} else {
const order = {
orderedDishes: ordered,
totalPrice : totalPrice,
person : person,
time : time,
date : date
};
orders.insert(order);
agent.add(`
Pomyślnie złożyłeś zamówienie! Zamówienie możesz odebrać o
${time.toLocaleTimeString("pl-PL", {hour: '2-digit', minute:'2-digit', timeZone: 'Europe/Warsaw'})},
${date.toLocaleDateString("pl-PL", {timeZone: 'Europe/Warsaw'})}, Cena za całość to ${totalPrice}zł. Do zobaczenia!
`);
}
});
intentMap.set('order expected wait time query', async () => {
const date = new Date(parameters['orderDate']);
const time = new Date(parameters['orderTime']);
const orderCount = countOrders(date, time);
if (orderCount < 1) {
agent.add(`
Nie ma żadnych zamówień! Możesz spodziewać się swojego zamówienia punktualnie.
`);
}
else if (orderCount < 20) {
agent.add(`
Mamy kilka zamówień - ${orderCount}, ale nie powinno być żadnych opóźnień
`);
}
else {
agent.add(`
Mamy ${orderCount} zamówień! Możesz spodziewać się opóźnień.
`);
}
});
intentMap.set('donald trump quotes', async () => {
const resp = await fetch('https://api.tronalddump.io/random/quote', {
method: 'GET',
headers: {
'Accept': 'application/hal+json'
}
}).then(resp => resp.json());
agent.add(resp.value);
});
agent.handleRequest(intentMap);
})
app.get('/', (req, resp) => {
resp.sendFile('index.html', { root: __dirname + '/static/'});
})
app.use(express.static('./static/'));
app.listen(process.env.PORT || 8080);
function findFreeTables(date, time, minTableSize) {
const taken = tableReservations.where((res) => {
return res.date.getTime() === date.getTime() &&
timeOverlaps(time, res.time) &&
res.tableSize >= minTableSize
});
return tables.where((d) => d.tableSize >= minTableSize)
.filter(table => !taken.some(reserv => reserv.tableId == table.id))
.sort((a, b) => a.tableSize - b.tableSize);
}
function countOrders(date, time) {
return orders.where((order) => {
return order.date.getTime() === date.getTime() &&
timeOverlaps(time, order.time, hours = .5)
}).length;
}
function countReservations(person, date, time) {
return tableReservations.where((res) => {
return res.date.getTime() === date.getTime() &&
res.time.getTime() == time.getTime() &&
res.person === person
}).length;
}
function removeReservations(person, date, time) {
tableReservations
.chain()
.find((res) => {
return res.date.getTime() === date.getTime() &&
res.time.getTime() == time.getTime() &&
res.person === person
})
.remove();
}
function formatMenuByTypes(types) {
res = "";
for (let type of types) {
// res += `${type}: \n`;
res += formatMenuByType(type);
}
return res;
}
function formatMenuByType(type) {
dishes = menu.where(d => d.type === type).sort((a, b) => a.id - b.id);
res = "";
for (let dish of dishes) {
res += `${dish.id}. ${dish.description}\n`
}
return res;
}
function timeOverlaps(time1, time2, hours = 2) {
mins1 = time1.getHours() * 60 + time1.getMinutes();
mins2 = time2.getHours() * 60 + time2.getMinutes();
return Math.abs(mins1 - mins2) < hours * 60;
}
function checkIfPast(date, time) {
const d1 = new Date();
const d2 = new Date(date);
d2.setMinutes(time.getMinutes())
d2.setHours(time.getHours())
return d1.getTime() > d2.getTime();
}