summaryrefslogtreecommitdiff
path: root/app/src/main/java/foundation/e/advancedprivacy/domain/usecases/ShowFeaturesWarningUseCase.kt
blob: 11bce86c1029554a72d6237a8ae3e785326c1b32 (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
/*
 * Copyright (C) 2022 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.domain.usecases

import foundation.e.advancedprivacy.data.repositories.LocalStateRepository
import foundation.e.advancedprivacy.domain.entities.MainFeatures
import kotlinx.coroutines.flow.Flow
import kotlinx.coroutines.flow.drop
import kotlinx.coroutines.flow.dropWhile
import kotlinx.coroutines.flow.filter
import kotlinx.coroutines.flow.map
import kotlinx.coroutines.flow.merge

class ShowFeaturesWarningUseCase(
    private val localStateRepository: LocalStateRepository
) {

    fun showWarning(): Flow<MainFeatures> {
        return merge(
            localStateRepository.blockTrackers.drop(1).dropWhile { !it }
                .filter { it && !localStateRepository.hideWarningTrackers }
                .map { MainFeatures.TRACKERS_CONTROL },
            localStateRepository.fakeLocationEnabled.drop(1).dropWhile { !it }
                .filter { it && !localStateRepository.hideWarningLocation }
                .map { MainFeatures.FAKE_LOCATION },
            localStateRepository.ipScramblingSetting.drop(1).dropWhile { !it }
                .filter { it && !localStateRepository.hideWarningIpScrambling }
                .map { MainFeatures.IP_SCRAMBLING }
        )
    }

    fun doNotShowAgain(feature: MainFeatures) {
        when (feature) {
            MainFeatures.TRACKERS_CONTROL -> localStateRepository.hideWarningTrackers = true
            MainFeatures.FAKE_LOCATION -> localStateRepository.hideWarningLocation = true
            MainFeatures.IP_SCRAMBLING -> localStateRepository.hideWarningIpScrambling = true
        }
    }
}