summaryrefslogtreecommitdiff
path: root/app/src/main/java/foundation/e/advancedprivacy/features/internetprivacy/InternetPrivacyViewModel.kt
blob: 059e11d1e08cda41d25a255a985f035a10ecce69 (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
/*
 * Copyright (C) 2023 MURENA SAS
 * 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.internetprivacy

import androidx.annotation.StringRes
import androidx.lifecycle.ViewModel
import androidx.lifecycle.viewModelScope
import foundation.e.advancedprivacy.R
import foundation.e.advancedprivacy.domain.entities.InternetPrivacyMode
import foundation.e.advancedprivacy.domain.usecases.AppListUseCase
import foundation.e.advancedprivacy.domain.usecases.GetQuickPrivacyStateUseCase
import foundation.e.advancedprivacy.domain.usecases.IpScramblingStateUseCase
import foundation.e.advancedprivacy.ipscrambler.IpScramblerModule
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.FlowPreview
import kotlinx.coroutines.flow.MutableSharedFlow
import kotlinx.coroutines.flow.MutableStateFlow
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

class InternetPrivacyViewModel(
    private val ipScramblerModule: IpScramblerModule,
    private val getQuickPrivacyStateUseCase: GetQuickPrivacyStateUseCase,
    private val ipScramblingStateUseCase: IpScramblingStateUseCase,
    private val appListUseCase: AppListUseCase
) : ViewModel() {
    companion object {
        private const val WARNING_LOADING_LONG_DELAY = 5 * 1000L
    }

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

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

    val availablesLocationsIds = listOf("", *ipScramblerModule.getAvailablesLocations().sorted().toTypedArray())

    init {
        viewModelScope.launch(Dispatchers.IO) {
            _state.update {
                it.copy(
                    mode = ipScramblingStateUseCase.internetPrivacyMode.value,
                    availableLocationIds = availablesLocationsIds,
                    selectedLocation = ipScramblerModule.exitCountry
                )
            }
        }
    }

    @OptIn(FlowPreview::class)
    suspend fun doOnStartedState() = withContext(Dispatchers.IO) {
        launch {
            merge(
                appListUseCase.getAppsUsingInternet().map { apps ->
                    _state.update { s ->
                        s.copy(
                            availableApps = apps,
                            bypassTorApps = ipScramblingStateUseCase.bypassTorApps
                        )
                    }
                },
                ipScramblingStateUseCase.internetPrivacyMode.map {
                    _state.update { s -> s.copy(mode = it) }
                }
            ).collect {}
        }

        launch {
            ipScramblingStateUseCase.internetPrivacyMode
                .map { it == InternetPrivacyMode.HIDE_IP_LOADING }
                .debounce(WARNING_LOADING_LONG_DELAY)
                .collect {
                    if (it) _singleEvents.emit(
                        SingleEvent.ErrorEvent(R.string.ipscrambling_warning_starting_long)
                    )
                }
        }

        launch {
            getQuickPrivacyStateUseCase.otherVpnRunning.collect {
                _singleEvents.emit(
                    SingleEvent.ErrorEvent(
                        R.string.ipscrambling_error_always_on_vpn_already_running,
                        listOf(it.label ?: "")
                    )
                )
                _state.update { it.copy(forceRedraw = !it.forceRedraw) }
            }
        }
    }

    fun submitAction(action: Action) = viewModelScope.launch {
        when (action) {
            is Action.UseRealIPAction -> actionUseRealIP()
            is Action.UseHiddenIPAction -> actionUseHiddenIP()
            is Action.ToggleAppIpScrambled -> actionToggleAppIpScrambled(action)
            is Action.SelectLocationAction -> actionSelectLocation(action)
        }
    }

    private suspend fun actionUseRealIP() {
        ipScramblingStateUseCase.toggle(hideIp = false)
    }

    private suspend fun actionUseHiddenIP() {
        ipScramblingStateUseCase.toggle(hideIp = true)
    }

    private suspend fun actionToggleAppIpScrambled(action: Action.ToggleAppIpScrambled) = withContext(Dispatchers.IO) {
        ipScramblingStateUseCase.toggleBypassTor(action.packageName)
        _state.update { it.copy(bypassTorApps = ipScramblingStateUseCase.bypassTorApps) }
    }

    private suspend fun actionSelectLocation(action: Action.SelectLocationAction) = withContext(Dispatchers.IO) {
        val locationId = _state.value.availableLocationIds[action.position]
        if (locationId != ipScramblerModule.exitCountry) {
            ipScramblerModule.exitCountry = locationId
            _state.update { it.copy(selectedLocation = locationId) }
        }
    }

    sealed class SingleEvent {
        data class ErrorEvent(
            @StringRes val errorResId: Int,
            val args: List<Any> = emptyList()
        ) : SingleEvent()
    }

    sealed class Action {
        object UseRealIPAction : Action()
        object UseHiddenIPAction : Action()
        data class ToggleAppIpScrambled(val packageName: String) : Action()
        data class SelectLocationAction(val position: Int) : Action()
    }
}