-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgetOrCreateLocation.js
More file actions
80 lines (67 loc) · 2.03 KB
/
getOrCreateLocation.js
File metadata and controls
80 lines (67 loc) · 2.03 KB
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
'use strict';
const potentialOaError = require('./utils/potentialOaError');
const upStats = require('./lib/upStats');
module.exports = async function getOrCreateLocation(context, {
agendaUid,
event,
eventId,
oaLocations,
eventLocation,
}) {
const {
methods,
syncDb,
oa,
simulate,
stats,
log,
} = context;
const agendaStats = stats.agendas[agendaUid];
let location;
let locationId = methods.location.getId(eventLocation, event);
const foundOaLocation = methods.location.find(oaLocations, eventLocation);
let foundLocation = (await syncDb.locations.findOne({ query: { correspondenceId: locationId } }));
// This is commented because the oaLocations is not up to date (mySQL <-> ES)
// if (
// foundLocation && !foundOaLocation
// && !oaLocations.find( oaLocation => oaLocation.uid === foundLocation.data.uid )
// ) {
// await syncDb.locations.remove( { _id: foundLocation._id }, {} );
// foundLocation = null;
// }
if (!foundLocation) {
if (!foundOaLocation) {
const getContext = methods.event.map.createContext(context);
const { result: sLocation } = await methods.location.get(locationId, eventLocation, getContext);
const mappedLocation = await methods.location.map(sLocation, eventLocation);
location = mappedLocation;
if (!simulate) {
location = await potentialOaError(oa.locations.create(agendaUid, mappedLocation));
await syncDb.locations.insert({
correspondenceId: locationId,
syncedAt: new Date(),
data: location
});
}
log(
'info',
'LOCATION NOT FOUND => created',
{ agendaUid, eventId, locationId, location }
);
upStats(agendaStats, 'createdLocations');
} else {
await syncDb.locations.insert({
correspondenceId: locationId,
syncedAt: new Date(),
data: foundOaLocation
});
location = foundOaLocation;
}
} else {
location = foundLocation.data;
}
return {
location,
locationId,
};
};