aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/reports/Events.java
blob: d3457e5a55e5823a151027a6ae9d6d9cf7d60bb9 (plain)
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
package org.traccar.reports;

import java.sql.SQLException;
import java.util.Collection;
import java.util.Date;

import javax.json.Json;
import javax.json.JsonObjectBuilder;

import org.traccar.Context;
import org.traccar.model.Event;
import org.traccar.web.CsvBuilder;
import org.traccar.web.JsonConverter;

public final class Events {

    private Events() {
    }

    public static String getJson(long userId, Collection<Long> deviceIds, Collection<Long> groupIds,
            Collection<String> types, Date from, Date to) throws SQLException {
        JsonObjectBuilder json = Json.createObjectBuilder();
        for (long deviceId: ReportUtils.getReportedDevices(deviceIds, groupIds)) {
            Context.getPermissionsManager().checkDevice(userId, deviceId);
            for (String type : types) {
                json.add(String.valueOf(deviceId), JsonConverter.arrayToJson(Context.getDataManager()
                        .getEvents(deviceId, type, from, to)));
            }
        }
        return json.build().toString();
    }

    public static byte[] getCsv(long userId, Collection<Long> deviceIds, Collection<Long> groupIds,
            Collection<String> types, Date from, Date to) throws SQLException {
        CsvBuilder csv = new CsvBuilder();
        csv.addHeaderLine(new Event());
        for (long deviceId: ReportUtils.getReportedDevices(deviceIds, groupIds)) {
            Context.getPermissionsManager().checkDevice(userId, deviceId);
            for (String type : types) {
                csv.addArray(Context.getDataManager().getEvents(deviceId, type, from, to));
            }
        }
        return csv.get();
    }
}