forked from snicod/SAE-API-Golf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.init.js
377 lines (372 loc) · 12.1 KB
/
db.init.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
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
const Golfeur = require('./models/golfeur.model');
const CameraSurveillance = require('./models/cameraSurveillance.model');
const ConditionMeteo = require('./models/conditionMeteo.model');
const Drapeau = require('./models/drapeau.model');
const EtatSol = require('./models/etatSol.model');
const GestionnaireTrous = require('./models/gestionnaireTrous.model');
const ImageDrapeau = require('./models/imageDrapeau.model');
const LocalisationBalle = require('./models/localisationBalle.model');
const statistiqueCoup = require('./models/statistiqueCoup.model');
const Trou = require('./models/trou.model');
const bcrypt = require('bcryptjs');
const SALT_WORK_FACTOR = 10;
async function initGolfeur () {
let golfeur1, golfeur2 = null
try {
golfeur1 = await Golfeur.findOne({nom: 'Woods'}).exec()
if (golfeur1 === null) {
const salt = bcrypt.genSaltSync(SALT_WORK_FACTOR);
const password = bcrypt.hashSync('golfeur1', salt);
golfeur1 = new Golfeur({
nom: "Woods",
prenom: "Tiger",
email: "[email protected]",
"mot_de_passe": password
})
golfeur1 = await golfeur1.save()
console.log("added Woods");
}
} catch (err) {
console.log("cannot add Woods")
}
try {
golfeur2 = await Golfeur.findOne({nom: 'McIlroy'}).exec()
if (golfeur2 === null) {
const salt = bcrypt.genSaltSync(SALT_WORK_FACTOR);
const password = bcrypt.hashSync('golfeur2', salt);
golfeur2 = new Golfeur({
nom: "McIlroy",
prenom: "Rory",
email: "[email protected]",
"mot_de_passe": password
})
golfeur2 = await golfeur2.save()
console.log("added McIlroy");
}
} catch (err) {
console.log("cannot add McIlroy")
}
console.log(golfeur1, golfeur2)
return {golfeur1, golfeur2} ;
}
async function initGestionnaireTrous () {
let gestionnaire1, gestionnaire2 = null
try {
gestionnaire1 = await GestionnaireTrous.findOne({nom: 'Tibs'}).exec()
if (gestionnaire1 === null) {
const salt = bcrypt.genSaltSync(SALT_WORK_FACTOR);
const password = bcrypt.hashSync('gestionnaire1', salt);
gestionnaire1 = new GestionnaireTrous({
nom: "Tibs",
prenom: "Tibault",
email: "[email protected]",
"mot_de_passe": password
})
gestionnaire1 = await gestionnaire1.save()
console.log("added Tibs");
}
} catch (err) {
console.log("cannot add Tibs")
}
try {
gestionnaire2 = await GestionnaireTrous.findOne({nom: 'Etang'}).exec()
if (gestionnaire2 === null) {
const salt = bcrypt.genSaltSync(SALT_WORK_FACTOR);
const password = bcrypt.hashSync('gestionnaire2', salt);
gestionnaire2 = new GestionnaireTrous({
nom: "Etang",
prenom: "loffy",
email: "[email protected]",
"mot_de_passe": password
})
gestionnaire2 = await gestionnaire2.save()
console.log("added Etang");
}
} catch (err) {
console.log("cannot add Etang")
}
return {gestionnaire1, gestionnaire2}
}
async function initCameraSurveillance (trou1, trou2) {
let camera1, camera2 = null
try {
camera1 = await CameraSurveillance.findOne({video_url: "urlvideo1"}).exec()
if (camera1 === null) {
camera1 = new CameraSurveillance({
date: new Date(),
video_url: "urlvideo1",
trou_id: trou1._id
})
camera1 = await camera1.save()
console.log("added Camera1");
}
} catch (err) {
console.log("cannot add Camera1")
}
try {
camera2 = await CameraSurveillance.findOne({video_url: "urlvideo2"}).exec()
if (camera2 === null) {
camera2 = new CameraSurveillance({
date: new Date(),
video_url: "urlvideo2",
trou_id: trou2._id
})
camera2 = await camera2.save()
console.log("added Camera2");
}
} catch (err) {
console.log("cannot add Camera2")
}
}
async function initDrapeau () {
let drapeau1, drapeau2 = null
try {
drapeau1 = await Drapeau.findOne({latitude: 232344}).exec()
if (drapeau1 === null) {
drapeau1 = new Drapeau({
latitude: 232344,
longitude: 23244111
})
drapeau1 = await drapeau1.save()
console.log("added Drapeau1");
}
} catch (err) {
console.log("cannot add Drapeau1")
}
try {
drapeau2 = await Drapeau.findOne({latitude: 2111134}).exec()
if (drapeau2 === null) {
drapeau2 = new Drapeau({
latitude: 2111134,
longitude: 2166134
})
drapeau2 = await drapeau2.save()
console.log("added Drapeau2");
}
} catch (err) {
console.log("cannot add Drapeau2")
}
return {drapeau1, drapeau2}
}
async function initTrou (gestionnaire1, gestionnaire2, drapeau1, drapeau2) {
let trou1, trou2 = null
try {
trou1 = await Trou.findOne({ numero: 1 }).exec()
if (trou1 === null) {
trou1 = new Trou({
numero: 1,
gestionnaire_id: gestionnaire1._id,
drapeau_id: drapeau1._id
})
trou1 = await trou1.save()
console.log("added Trou1");
}
} catch (err) {
console.log("Error adding Trou1:", err);
}
try {
trou2 = await Trou.findOne({ numero: 2 }).exec()
if (trou2 === null) {
trou2 = new Trou({
numero: 2,
gestionnaire_id: gestionnaire2._id,
drapeau_id: drapeau2._id
})
trou2 = await trou2.save()
console.log("added Trou2");
}
} catch (err) {
console.log("Error adding Trou2:", err);
}
return {trou1, trou2}
}
async function initConditionMeteo (trou1, trou2) {
let condition1, condition2 = null
try {
condition1 = await ConditionMeteo.findOne({temperature: 25}).exec()
if (condition1 === null) {
condition1 = new ConditionMeteo({
trou_id: trou1._id,
date: new Date(),
temperature: 25,
humidite: 60,
vent: {
vitesse: 15,
direction: "N"
}
})
condition1 = await condition1.save()
console.log("added Condition1");
}
} catch (err) {
console.log("cannot add Condition1")
}
try {
condition2 = await ConditionMeteo.findOne({temperature: 23}).exec()
if (condition2 === null) {
condition2 = new ConditionMeteo({
trou_id: trou2._id,
date: new Date(),
temperature: 23,
humidite: 50,
vent: {
vitesse: 25,
direction: "S"
}
})
condition2 = await condition2.save()
console.log("added Condition2");
}
} catch (err) {
console.log("cannot add Condition2")
}
}
async function initEtatSol (trou1, trou2) {
let etat1, etat2 = null
try {
etat1 = await EtatSol.findOne({densite_herbe: "Moyenne"}).exec()
if (etat1 === null) {
etat1 = new EtatSol({
date: new Date(),
densite_herbe: "Moyenne",
qualite_nutriments: "Pas mal",
humidite: 60,
trou_id: trou1._id
})
etat1 = await etat1.save()
console.log("added Etat1");
}
} catch (err) {
console.log("cannot add Etat1")
}
try {
etat2 = await EtatSol.findOne({densite_herbe: "Faible"}).exec()
if (etat2 === null) {
etat2 = new EtatSol({
date: new Date(),
densite_herbe: "Faible",
qualite_nutriments: "Mouais",
humidite: 20,
trou_id: trou2._id
})
etat2 = await etat2.save()
console.log("added Etat2");
}
} catch (err) {
console.log("cannot add Etat2")
}
}
async function initImageDrapeau (golfeur1, golfeur2) {
let image1, image2 = null
try {
image1 = await ImageDrapeau.findOne({image_url: "urlimage1"}).exec()
if (image1 === null) {
image1 = new ImageDrapeau({
golfeur_id: golfeur2._id,
image_url: "urlimage1",
distance_estimee: 10
})
image1 = await image1.save()
console.log("added Image1");
}
} catch (err) {
console.log("cannot add Image1")
}
try {
image2 = await ImageDrapeau.findOne({image_url: "urlimage2"}).exec()
if (image2 === null) {
image2 = new ImageDrapeau({
golfeur_id: golfeur2._id,
image_url: "urlimage2",
distance_estimee: 20
})
image2 = await image2.save()
console.log("added Image2");
}
} catch (err) {
console.log("cannot add Image2")
}
}
async function initLocalisationBalle (golfeur1, golfeur2) {
let localisation1, localisation2 = null
try {
localisation1 = await LocalisationBalle.findOne({latitude: 23234444}).exec()
if (localisation1 === null) {
localisation1 = new LocalisationBalle({
golfeur_id: golfeur2._id,
latitude: 23234444,
longitude: 23244111,
})
localisation1 = await localisation1.save()
console.log("added Localisation1");
}
} catch (err) {
console.log("cannot add Localisation1")
}
try {
localisation2 = await LocalisationBalle.findOne({latitude: 2111134}).exec()
if (localisation2 === null) {
localisation2 = new LocalisationBalle({
golfeur_id: golfeur1._id,
latitude: 2111134,
longitude: 2166134
})
localisation2 = await localisation2.save()
console.log("added Localisation2");
}
} catch (err) {
console.log("cannot add Localisation2")
}
}
async function initStatistiqueCoup (golfeur1, golfeur2) {
let statistique1, statistique2 = null
try {
statistique1 = await statistiqueCoup.findOne({vitesse: 34}).exec()
if (statistique1 === null) {
statistique1 = new statistiqueCoup({
golfeur_id: golfeur1._id,
vitesse: 34,
trajectoire: 45,
conseil: "tire plus fort !"
})
statistique1 = await statistique1.save()
console.log("added Statistique1");
}
} catch (err) {
console.log("cannot add Statistique1")
}
try {
statistique2 = await statistiqueCoup.findOne({vitesse: 21}).exec()
if (statistique2 === null) {
statistique2 = new statistiqueCoup({
golfeur_id: golfeur2._id,
vitesse: 21,
trajectoire: 15,
conseil: "tire plus vers le haut !"
})
statistique2 = await statistique2.save()
console.log("added Statistique2");
}
} catch (err) {
console.log("cannot add Statistique2")
}
}
async function initBdD() {
const {golfeur1, golfeur2} = await initGolfeur()
console.log("Golfeurs initialized:", golfeur1, golfeur2);
const { gestionnaire1, gestionnaire2 } = await initGestionnaireTrous();
console.log("Gestionnaires initialized:", gestionnaire1, gestionnaire2);
const { drapeau1, drapeau2 } = await initDrapeau();
console.log("Drapeaux initialized:", drapeau1, drapeau2);
const { trou1, trou2 } = await initTrou(gestionnaire1, gestionnaire2, drapeau1, drapeau2);
console.log("Trous initialized:", trou1, trou2);
await initCameraSurveillance(trou1, trou2)
await initConditionMeteo(trou1, trou2)
await initEtatSol(trou1, trou2)
await initImageDrapeau(golfeur1, golfeur2)
await initLocalisationBalle(golfeur1, golfeur2)
await initStatistiqueCoup(golfeur1, golfeur2)
}
module.exports = {
initBdD,
};