-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
server.js
280 lines (251 loc) · 6.75 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
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
import apicache from 'apicache'
import compression from 'compression'
import cors from 'cors'
import * as dotenv from 'dotenv' // see https://github.com/motdotla/dotenv#how-do-i-use-dotenv-with-import
import express from 'express'
import path from 'path'
import brouterRequest from './brouterRequest'
import computeCycling from './computeCycling'
import { overpassRequestURL } from './cyclingPointsRequests'
import { compute as computeWalking } from './geoStudio.js'
import { Server } from 'socket.io'
import { previousDate, getDirectory } from './algorithmVersion'
import { writeFileSyncRecursive } from './nodeUtils'
import scopes from './scopes'
import { BUCKET_NAME, s3, testStorage } from './storage'
import { fetchRetry } from './utils'
dotenv.config()
testStorage()
const app = express()
app.use(
cors({
origin: '*',
})
)
app.use(compression())
const port = process.env.PORT
const httpServer = app.listen(port, function () {
console.log(
'Allez là ! Piétonniez les toutes les villles ! Sur le port ' + port
)
})
const io = new Server(httpServer, {
cors: {
origin: '*',
},
})
const cache = apicache.options({
headers: {
'cache-control': 'no-cache',
},
debug: true,
}).middleware
const onlyStatus200 = (req, res) => res.statusCode === 200
console.log('io initialised')
io.on('connection', (socket) => {
console.log('a user connected')
socket.on('message-socket-initial', () =>
console.log('message socket initial bien reçu !')
)
socket.on('api', ({ dimension, scope, ville, directory }) => {
console.log(
'socket message API received',
dimension,
scope,
ville,
directory
)
const inform = (message) => {
console.log('will server emit', message)
const path = `api/${dimension}/${scope}/${ville}/${directory}`
console.log('path', path)
if (message.data) apicache.clear('/' + path) // not sure this works, but onlyStatus200 should
io.emit(path, message)
}
computeAndCacheCity(dimension, ville, scope, null, null, inform)
})
})
app.get('/bikeRouter/:query', cache('1 day'), (req, res) => {
const { query } = req.params
brouterRequest(query, (json) => res.json(json))
})
app.get('/points/:city/:requestCore', cache('1 day'), async (req, res) => {
const { city, requestCore } = req.params
const url = overpassRequestURL(city, requestCore)
try {
console.log(`Will fetch ${requestCore} points for ${city}`)
console.log(url)
const response = await fetchRetry(url, {}, 5)
const json = await response.json()
res.json(json)
} catch (e) {
res.send(`Error fetching and retry points for ${city}`, e)
}
})
const readFile = async (dimension, ville, scope, directory) => {
if (!directory)
throw new Error(`Le paramètre directory (date + version) est nécessaire`)
try {
const key = `${directory}/${ville}.${scope}${
dimension === 'cycling' ? '.cycling' : ''
}.json`
console.log('Will try to retrieve s3 data for ', key)
const file = await s3
.getObject({
Bucket: BUCKET_NAME,
Key: key,
})
.promise()
const content = file.Body.toString('utf-8')
console.log('les meta sont déjà là pour ' + ville)
console.log('will parse and filter data from S3', ville, scope)
let data = JSON.parse(content),
filteredData = scopes[dimension].find(
([name, selector]) => name === scope
)[1](data)
return filteredData
} catch (e) {
const message = "Ce territoire n'est pas encore calculé"
console.log(message, e)
return { message }
}
}
let computingLock = []
const removeLock = (ville, dimension) => {
computingLock = computingLock.filter((el) => el != ville + dimension)
}
const addLock = (ville, dimension) => {
computingLock = [...computingLock, ville + dimension]
}
const waitingForLockInterval = 10000
const computeAndCacheCity = async (
dimension,
ville,
returnScope,
res,
doNotCache,
inform
) => {
const intervalId = setInterval(() => {
if (computingLock.length > 0) {
console.log(
computingLock,
' already being processed, waiting for...',
ville
)
} else {
addLock(ville, dimension)
clearInterval(intervalId)
return (
dimension === 'walking'
? computeWalking(ville, inform)
: computeCycling(ville, inform)
)
.then((data) => {
scopes[dimension].map(async ([scope, selector]) => {
const string = JSON.stringify(selector(data))
try {
if (!doNotCache) {
const fileName = `${getDirectory()}/${ville}.${scope}${
dimension === 'cycling' ? '.cycling' : ''
}.json`
try {
writeFileSyncRecursive(
`${__dirname}/cache/${fileName}`,
string
)
// fichier écrit avec succès
} catch (err) {
console.error(
"Erreur dans l'écriture du fichier localement",
fileName,
err
)
}
const file = await s3
.upload({
Bucket: BUCKET_NAME,
Key: fileName,
Body: string,
})
.promise()
console.log('Fichier écrit :', ville, scope)
}
if (returnScope === scope) {
res && res.json(JSON.parse(string))
removeLock(ville, dimension)
}
} catch (err) {
console.log('removing lock for ', ville + dimension)
removeLock(ville, dimension)
console.log(err) || (res && res.status(400).end())
}
})
})
.catch((e) => {
removeLock(ville, dimension)
console.log(e)
})
}
}, waitingForLockInterval)
console.log('territoire pas encore connu : ', ville)
}
let resUnknownCity = (res, ville) =>
res &&
res.status(404).send('Ville inconnue <br/> Unknown city').end() &&
console.log('Unknown city : ' + ville)
app.get(
'/api/:dimension/:scope/:ville/:date/:algorithmVersion',
cache('1 day', onlyStatus200),
async function (req, res) {
const {
ville,
scope,
dimension,
date: rawDate,
algorithmVersion,
} = req.params
const date =
dimension === 'walking' && ville === 'Paris' ? '10-2023' : rawDate
console.log(
'API request : ',
dimension,
ville,
' for the ',
scope,
' scope',
'for the date ',
date
)
if (!date)
throw new Error(
`Le directory (date + version algo) est maintenant requise dans l'appel à l'API`
)
console.log('Will read ', dimension, ville, scope, date, algorithmVersion)
const data = await readFile(
dimension,
ville,
scope,
date + '/' + algorithmVersion
)
if (data.message) return res.status(202).send(data).end()
if (scope !== 'meta') return res.json(data)
const previousData = await readFile(
dimension,
ville,
scope,
previousDate,
algorithmVersion
)
return res.json({
...data,
previousData: previousData.score && {
date: previousDate,
score: previousData.score,
},
})
}
)
app.get('*', (req, res) => {
res.sendFile(path.resolve(__dirname, 'index.html'))
})