aboutsummaryrefslogtreecommitdiff
path: root/shared/src/commonMain/kotlin/mx/trackermap/TrackerMap/controllers/ReportController.kt
blob: bc0a48fa2c46c449c838eeb6d1fb87426cd88c62 (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
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
/**
 * TrackerMap
 * Copyright (C) 2021-2022  Iván Ávalos <avalos@disroot.org>, Henoch Ojeda <imhenoch@protonmail.com>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */
package mx.trackermap.TrackerMap.controllers

import kotlinx.coroutines.DelicateCoroutinesApi
import kotlinx.coroutines.GlobalScope
import kotlinx.coroutines.flow.MutableStateFlow
import kotlinx.coroutines.launch
import mx.trackermap.TrackerMap.Injectable
import mx.trackermap.TrackerMap.client.apis.GeofencesApi
import mx.trackermap.TrackerMap.client.apis.ReportsApi
import mx.trackermap.TrackerMap.client.models.EventInformation
import mx.trackermap.TrackerMap.client.models.Position
import mx.trackermap.TrackerMap.client.models.Stop
import mx.trackermap.TrackerMap.utils.ReportDates

@DelicateCoroutinesApi
class ReportController(
    private val reportsApi: ReportsApi,
    private val geofencesApi: GeofencesApi
): Injectable {

    sealed class Report {
        class PositionsReport(val positions: List<Position>) : Report()
        class EventsReport(val events: List<EventInformation>) : Report()
        class StopsReport(val stops: List<Stop>) : Report()
        class XlsxReport(val data: ByteArray) : Report()
        object LoadingReport: Report()
    }

    enum class ReportType {
        POSITIONS, EVENTS, STOPS
    }

    val reportFlow: MutableStateFlow<Report> = MutableStateFlow(Report.LoadingReport)

    suspend fun fetchReport(
        deviceId: Int,
        reportType: ReportType?,
        reportPeriod: ReportDates.ReportPeriod?,
        xlsx: Boolean = false,
        eventTypes: List<EventInformation.Type> = listOf()
    ) {
        if (reportType == null || reportPeriod == null) {
            return
        }

        val (from, to) = reportPeriod.getStringDates()

        if (!xlsx) {
            reportFlow.value = Report.LoadingReport
        }

        when (reportType) {
            ReportType.POSITIONS -> fetchPositions(deviceId, from, to, xlsx)
            ReportType.EVENTS -> fetchEvents(deviceId, from, to, eventTypes, xlsx)
            ReportType.STOPS -> fetchStops(deviceId, from, to, xlsx)
        }
    }

    private suspend fun fetchPositions(
        deviceId: Int,
        from: String,
        to: String,
        xlsx: Boolean
    ) {
        if (!xlsx) {
            val result = reportsApi.reportsRouteGet(from, to, deviceId)
            reportFlow.value = Report.PositionsReport(result.toList())
        } else {
            val result = reportsApi.reportsRouteGetXlsx(from, to, deviceId)
            reportFlow.value = Report.XlsxReport(result)
        }

    }

    private suspend fun fetchEvents(
        deviceId: Int,
        from: String,
        to: String,
        types: List<EventInformation.Type>,
        xlsx: Boolean
    ) {

        if (!xlsx) {
            val positionsResult = reportsApi.reportsRouteGet(from, to, deviceId)
            val eventsResult = reportsApi.reportsEventsGet(
                from, to, EventInformation.reportTypesToStrings(types), deviceId
            )
            val geofencesResult = geofencesApi.geofencesGet()

            val result = mutableListOf<EventInformation>()
            eventsResult.forEach { event ->
                result.add(EventInformation(
                    event = event,
                    position = positionsResult.find { it.id == event.positionId },
                    geofence = geofencesResult.find { it.id == event.geofenceId }
                ))
            }

            reportFlow.value = Report.EventsReport(result)
        } else {
            val result = reportsApi.reportsEventsGetXlsx(
                from, to, EventInformation.reportTypesToStrings(types), deviceId
            )

            reportFlow.value = Report.XlsxReport(result)
        }
    }

    private suspend fun fetchStops(
        deviceId: Int,
        from: String,
        to: String,
        xlsx: Boolean
    ) {
        if (!xlsx) {
            val result = reportsApi.reportsStopsGet(from, to, deviceId)
            reportFlow.value = Report.StopsReport(result.toList())
        } else {
            val result = reportsApi.reportsStopsGetXlsx(from, to, deviceId)
            reportFlow.value = Report.XlsxReport(result)
        }

    }
}