summaryrefslogtreecommitdiff
path: root/app/src/main/java/foundation/e/advancedprivacy/features/location/FakeLocationViewModel.kt
blob: c88c638c5117d685d5457bedf1441792d9e4d8d1 (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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
/*
 * Copyright (C) 2024 Leonard Kugis
 * Copyright (C) 2021 E FOUNDATION
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <https://www.gnu.org/licenses/>.
 */

package foundation.e.advancedprivacy.features.location

import android.location.Location
import androidx.lifecycle.ViewModel
import androidx.lifecycle.viewModelScope
import foundation.e.advancedprivacy.domain.usecases.FakeLocationStateUseCase
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.FlowPreview
import kotlinx.coroutines.flow.MutableSharedFlow
import kotlinx.coroutines.flow.MutableStateFlow
import kotlinx.coroutines.flow.StateFlow
import kotlinx.coroutines.flow.asSharedFlow
import kotlinx.coroutines.flow.asStateFlow
import kotlinx.coroutines.flow.debounce
import kotlinx.coroutines.flow.map
import kotlinx.coroutines.flow.merge
import kotlinx.coroutines.flow.update
import kotlinx.coroutines.launch
import kotlinx.coroutines.withContext
import kotlin.time.Duration.Companion.milliseconds
import foundation.e.advancedprivacy.domain.entities.FakeLocationCoordinate

class FakeLocationViewModel(
    private val fakeLocationStateUseCase: FakeLocationStateUseCase
) : ViewModel() {
    companion object {
        private val SET_SPECIFIC_LOCATION_DELAY = 200.milliseconds
        private val SET_MOCK_LOCATION_PARAMETERS_DELAY = 1000.milliseconds
        private val SET_ROUTE_LOOP_ENABLED_DELAY = 1000.milliseconds
        private val SET_ROUTE_DELAY = 1000.milliseconds
    }

    private val _state = MutableStateFlow(FakeLocationState())
    val state = _state.asStateFlow()

    val currentLocation: StateFlow<Location?> = fakeLocationStateUseCase.currentLocation

    private val _singleEvents = MutableSharedFlow<SingleEvent>()
    val singleEvents = _singleEvents.asSharedFlow()

    private val specificLocationInputFlow = MutableSharedFlow<Action.SetSpecificLocationAction>()
    private val mockLocationParametersInputFlow = MutableSharedFlow<Action.UpdateMockLocationParameters>()
    private val setRouteLoopEnabledInputFlow = MutableSharedFlow<Action.SetRouteLoopEnabledAction>()
    private val setRouteInputFlow = MutableSharedFlow<Action.SetRoute>()

    @OptIn(FlowPreview::class)
    suspend fun doOnStartedState() = withContext(Dispatchers.Main) {
        launch {
            merge(
                fakeLocationStateUseCase.configuredLocationMode.map { ss ->
                    _state.update { s ->
                        s.copy(
                            mode = ss.mode,
                            altitude = ss.altitude,
                            speed = ss.speed,
                            jitter = ss.jitter,
                            specificLatitude = ss.specificLatitude,
                            specificLongitude = ss.specificLongitude
                        )
                    }
                },
                specificLocationInputFlow
                    .debounce(SET_SPECIFIC_LOCATION_DELAY).map { action ->
                        fakeLocationStateUseCase.useFakeLocation(Pair<Float,Float>(action.latitude, action.longitude))
                    },
                mockLocationParametersInputFlow
                    .debounce(SET_MOCK_LOCATION_PARAMETERS_DELAY).map { action ->
                        fakeLocationStateUseCase.setFakeLocationParameters(action.altitude, action.speed, action.jitter)
                    },
                setRouteLoopEnabledInputFlow
                    .debounce(SET_ROUTE_LOOP_ENABLED_DELAY).map { action -> 
                        fakeLocationStateUseCase.setRouteLoopEnabled(action.isEnabled)
                    },
                setRouteInputFlow
                    .debounce(SET_ROUTE_DELAY).map { action -> 
                        fakeLocationStateUseCase.setRoute(action.route)
                    },
            ).collect {}
        }
    }

    fun submitAction(action: Action) = viewModelScope.launch {
        when (action) {
            is Action.StartListeningLocation -> actionStartListeningLocation()
            is Action.StopListeningLocation -> fakeLocationStateUseCase.stopListeningLocation()
            is Action.SetSpecificLocationAction -> setSpecificLocation(action)
            is Action.UseRandomLocationAction -> fakeLocationStateUseCase.useRandomLocation()
            is Action.UseRealLocationAction -> fakeLocationStateUseCase.useRealLocation()
            is Action.UseRoute -> fakeLocationStateUseCase.useRoute()
            is Action.UpdateMockLocationParameters -> updateMockLocationParameters(action)
            is Action.SetRoute -> setRouteInputFlow.emit(action)
            is Action.SetRouteLoopEnabledAction -> setRouteLoopEnabled(action)
            is Action.RouteStartAction -> fakeLocationStateUseCase.routeStart()
            is Action.RouteStopAction -> fakeLocationStateUseCase.routeStop()
        }
    }

    private suspend fun actionStartListeningLocation() {
        val started = fakeLocationStateUseCase.startListeningLocation()
        if (!started) {
            _singleEvents.emit(SingleEvent.RequestLocationPermission)
        }
    }

    private suspend fun setSpecificLocation(action: Action.SetSpecificLocationAction) {
        specificLocationInputFlow.emit(action)
    }

    private suspend fun updateMockLocationParameters(action: Action.UpdateMockLocationParameters) {
        mockLocationParametersInputFlow.emit(action)
    }

    private suspend fun setRouteLoopEnabled(action: Action.SetRouteLoopEnabledAction) {
        setRouteLoopEnabledInputFlow.emit(action)
    }

    sealed class SingleEvent {
        object RequestLocationPermission : SingleEvent()
        data class ErrorEvent(val error: String) : SingleEvent()
    }

    sealed class Action {
        object StartListeningLocation : Action()
        object StopListeningLocation : Action()
        object UseRealLocationAction : Action()
        object UseRandomLocationAction : Action()
        object UseRoute : Action()
        data class UpdateMockLocationParameters(
            val altitude: Float,
            val speed: Float,
            val jitter: Float
        ) : Action()
        data class SetSpecificLocationAction(
            val latitude: Float,
            val longitude: Float
        ) : Action()
        data class SetRoute(
            val route: List<FakeLocationCoordinate>
        ) : Action()
        data class SetRouteLoopEnabledAction(
            val isEnabled: Boolean
        ) : Action()
        object RouteStartAction : Action()
        object RouteStopAction : Action()
    }
}