fleetmap-reports 1.0.870 → 1.0.873
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/partnerReports/afriquia.js +5 -0
- package/src/speeding-report.js +53 -42
- package/src/tests/activity.test.js +0 -10
- package/src/tests/index.test.js +3 -11
- package/src/tests/zones.test.js +0 -12
package/package.json
CHANGED
|
@@ -6,6 +6,11 @@ const { convertToFeature, convertPositionToFeature } = require('../util/utils')
|
|
|
6
6
|
function calculateLastStopTime (stopTime, to, time) {
|
|
7
7
|
return stopTime + (to.getTime() - new Date(time).getTime())
|
|
8
8
|
}
|
|
9
|
+
|
|
10
|
+
function calculateFirstStopTime (stopTime, from, time) {
|
|
11
|
+
return stopTime + (new Date(time).getTime() - from.getTime())
|
|
12
|
+
}
|
|
13
|
+
|
|
9
14
|
async function createActivityReport (from, to, userData, traccarInstance) {
|
|
10
15
|
const unauthorizedGeofences = []
|
|
11
16
|
const authorizedGeofences = []
|
package/src/speeding-report.js
CHANGED
|
@@ -315,6 +315,58 @@ async function getRoadSpeedLimits (devices, routes, threshold, minimumMinutes =
|
|
|
315
315
|
return method(devices, routes, threshold, minimumMinutes, country && country.code)
|
|
316
316
|
}
|
|
317
317
|
|
|
318
|
+
async function invokeValhalla (route, i, chunk, country, threshold, results, retry = 3) {
|
|
319
|
+
const slice = route.slice(i, i + chunk)
|
|
320
|
+
try {
|
|
321
|
+
const url = `http://valhalla-${getCountry(slice[0]) || country}.pinme.io:8002/trace_attributes`
|
|
322
|
+
console.log(url)
|
|
323
|
+
const {
|
|
324
|
+
// eslint-disable-next-line camelcase
|
|
325
|
+
matched_points,
|
|
326
|
+
edges
|
|
327
|
+
} = await axios.post(url,
|
|
328
|
+
{
|
|
329
|
+
costing: 'auto',
|
|
330
|
+
shape_match: 'map_snap',
|
|
331
|
+
filters: {
|
|
332
|
+
attributes: [
|
|
333
|
+
'admin.country_code',
|
|
334
|
+
'admin.country_text',
|
|
335
|
+
'admin.state_code',
|
|
336
|
+
'admin.state_text',
|
|
337
|
+
'edge.names',
|
|
338
|
+
'edge.way_id',
|
|
339
|
+
'edge.speed_limit',
|
|
340
|
+
'matched.point',
|
|
341
|
+
'matched.type',
|
|
342
|
+
'matched.edge_index'
|
|
343
|
+
],
|
|
344
|
+
action: 'include'
|
|
345
|
+
},
|
|
346
|
+
shape: slice.map(p => ({
|
|
347
|
+
lon: p.longitude,
|
|
348
|
+
lat: p.latitude
|
|
349
|
+
}))
|
|
350
|
+
}, { timeout: 10000 })
|
|
351
|
+
.then(r => r.data)
|
|
352
|
+
// eslint-disable-next-line camelcase
|
|
353
|
+
matched_points.forEach((mp, mIndex) => {
|
|
354
|
+
const edge = edges[mp.edge_index]
|
|
355
|
+
const position = route[mIndex + i]
|
|
356
|
+
if (edge && (edge.speed_limit + (threshold || 0)) < position.speed * 1.852) {
|
|
357
|
+
results.push({ ...mp, ...edge, ...position })
|
|
358
|
+
}
|
|
359
|
+
})
|
|
360
|
+
} catch (e) {
|
|
361
|
+
if (--retry) {
|
|
362
|
+
console.log(e.message, 'retry:', retry)
|
|
363
|
+
return invokeValhalla(route, i, chunk, country, threshold, results, retry)
|
|
364
|
+
} else {
|
|
365
|
+
console.error(e.message, e.response && e.response.data, slice[0])
|
|
366
|
+
}
|
|
367
|
+
}
|
|
368
|
+
}
|
|
369
|
+
|
|
318
370
|
async function getOSMSpeedingEvents (devices, routes, threshold, minimumMinutes = 0, country) {
|
|
319
371
|
const chunk = 1000
|
|
320
372
|
const events = []
|
|
@@ -322,48 +374,7 @@ async function getOSMSpeedingEvents (devices, routes, threshold, minimumMinutes
|
|
|
322
374
|
const route = routes.filter(r => r.deviceId === d.id)
|
|
323
375
|
const results = []
|
|
324
376
|
for (let i = 0; i < route.length; i += chunk) {
|
|
325
|
-
|
|
326
|
-
try {
|
|
327
|
-
const {
|
|
328
|
-
// eslint-disable-next-line camelcase
|
|
329
|
-
matched_points,
|
|
330
|
-
edges
|
|
331
|
-
} = await axios.post(`http://valhalla-${getCountry(slice[0]) || country}.pinme.io:8002/trace_attributes`,
|
|
332
|
-
{
|
|
333
|
-
costing: 'auto',
|
|
334
|
-
shape_match: 'map_snap',
|
|
335
|
-
filters: {
|
|
336
|
-
attributes: [
|
|
337
|
-
'admin.country_code',
|
|
338
|
-
'admin.country_text',
|
|
339
|
-
'admin.state_code',
|
|
340
|
-
'admin.state_text',
|
|
341
|
-
'edge.names',
|
|
342
|
-
'edge.way_id',
|
|
343
|
-
'edge.speed_limit',
|
|
344
|
-
'matched.point',
|
|
345
|
-
'matched.type',
|
|
346
|
-
'matched.edge_index'
|
|
347
|
-
],
|
|
348
|
-
action: 'include'
|
|
349
|
-
},
|
|
350
|
-
shape: slice.map(p => ({
|
|
351
|
-
lon: p.longitude,
|
|
352
|
-
lat: p.latitude
|
|
353
|
-
}))
|
|
354
|
-
})
|
|
355
|
-
.then(r => r.data)
|
|
356
|
-
// eslint-disable-next-line camelcase
|
|
357
|
-
matched_points.forEach((mp, mIndex) => {
|
|
358
|
-
const edge = edges[mp.edge_index]
|
|
359
|
-
const position = route[mIndex + i]
|
|
360
|
-
if (edge && (edge.speed_limit + (threshold || 0)) < position.speed * 1.852) {
|
|
361
|
-
results.push({ ...mp, ...edge, ...position })
|
|
362
|
-
}
|
|
363
|
-
})
|
|
364
|
-
} catch (e) {
|
|
365
|
-
console.error(e.message, e.response && e.response.data, slice[0])
|
|
366
|
-
}
|
|
377
|
+
await invokeValhalla(route, i, chunk, country, threshold, results)
|
|
367
378
|
}
|
|
368
379
|
const reduced = results.reduce((acc, cur, idx, src) => {
|
|
369
380
|
const last = acc.length && acc.slice(-1)[0]
|
|
@@ -72,14 +72,4 @@ describe('activity report', function () {
|
|
|
72
72
|
console.log(device)
|
|
73
73
|
assert.equal(device.summary.reduce((a, b) => a + b.convertedSpentFuel, 0), 168.79999999999995)
|
|
74
74
|
}, 800000)
|
|
75
|
-
it('Activity test performance', async () => {
|
|
76
|
-
const report = await getReports('q.trans', 'quality1214')
|
|
77
|
-
const userData = await report.getUserData()
|
|
78
|
-
console.log(userData)
|
|
79
|
-
userData.groupByDay = true
|
|
80
|
-
const data = await report.activityReport(new Date(2023, 7, 1, 0, 0, 0, 0),
|
|
81
|
-
new Date(2023, 31, 5, 23, 59, 59, 0),
|
|
82
|
-
userData)
|
|
83
|
-
assert.equal(data.length, 1)
|
|
84
|
-
}, 8000000)
|
|
85
75
|
})
|
package/src/tests/index.test.js
CHANGED
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
const { getReports } = require('./index')
|
|
3
3
|
const assert = require('assert')
|
|
4
4
|
const utils = require('../util/utils')
|
|
5
|
-
const { createGPSJumpReport } = require('../partnerReports/gpsjump-report')
|
|
6
5
|
|
|
7
6
|
// eslint-disable-next-line no-undef
|
|
8
7
|
describe('Test_Reports', function () {
|
|
@@ -19,19 +18,12 @@ describe('Test_Reports', function () {
|
|
|
19
18
|
const pdf = await report.speedingReportToPDF(userData, data[0])
|
|
20
19
|
pdf.save()
|
|
21
20
|
}, 40000)
|
|
21
|
+
|
|
22
22
|
it('converts madrid time', async () => {
|
|
23
23
|
assert.equal(false, utils.isClientSide())
|
|
24
24
|
console.log(utils.convertToLocaleString(new Date(), 'es-CL', 'Europe/Madrid'))
|
|
25
25
|
})
|
|
26
|
-
|
|
27
|
-
const report = await getReports('HASSANE', 'movitec.1637')
|
|
28
|
-
const userData = await report.getUserData()
|
|
29
|
-
userData.devices = userData.devices.filter(d => d.id === 148725)
|
|
30
|
-
const data = await createGPSJumpReport(new Date(2023, 8, 22, 0, 0, 0, 0),
|
|
31
|
-
new Date(2023, 8, 24, 23, 59, 59, 0),
|
|
32
|
-
userData, report.traccar)
|
|
33
|
-
console.log(data)
|
|
34
|
-
}, 40000)
|
|
26
|
+
|
|
35
27
|
it('Idle by device', async () => {
|
|
36
28
|
const report = await getReports()
|
|
37
29
|
const userData = await report.getUserData()
|
|
@@ -62,7 +54,7 @@ describe('Test_Reports', function () {
|
|
|
62
54
|
const totalIdleTime = driver.idleEvents.reduce((a, b) => a + b.idleTime, 0)
|
|
63
55
|
assert.equal(driver.idleEvents.length, 15) // Total Alerts
|
|
64
56
|
assert.equal(totalIdleTime, 16000) // Total Duration
|
|
65
|
-
}, 20000)
|
|
57
|
+
}, 20000)
|
|
66
58
|
// eslint-disable-next-line no-undef
|
|
67
59
|
it('test allinone', async () => {
|
|
68
60
|
console.log('Start')
|
package/src/tests/zones.test.js
CHANGED
|
@@ -27,18 +27,6 @@ describe('zones', function () {
|
|
|
27
27
|
console.log('result', result)
|
|
28
28
|
}, 4000000)
|
|
29
29
|
|
|
30
|
-
it('works with afriquia', async () => {
|
|
31
|
-
const report = await getReports(process.env.USER_AFRIQUIA, process.env.PASS_AFRIQUIA)
|
|
32
|
-
const userData = await report.getUserData()
|
|
33
|
-
console.log(userData.devices.length)
|
|
34
|
-
console.log(userData.geofences)
|
|
35
|
-
const result = await report.zoneReport(
|
|
36
|
-
new Date(Date.UTC(2023, 5, 11, 0, 0, 0, 0)),
|
|
37
|
-
new Date(Date.UTC(2023, 5, 11, 23, 59, 59, 0)),
|
|
38
|
-
userData)
|
|
39
|
-
console.log('result', result)
|
|
40
|
-
}, 4000000)
|
|
41
|
-
|
|
42
30
|
// eslint-disable-next-line no-undef
|
|
43
31
|
it('works with casais', async () => {
|
|
44
32
|
const report = await getReports(process.env.USER_CASAIS, process.env.PASS_CASAIS)
|