summaryrefslogtreecommitdiff
path: root/app/src/main/java/foundation/e/advancedprivacy/Notifications.kt
blob: cd85e9a6dc628a9d029d17a2a0b71315c3a1d9d6 (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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
/*
 * Copyright (C) 2023 MURENA SAS
 * Copyright (C) 2022 MURENA SAS
 *
 * 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

import android.app.NotificationChannel
import android.app.NotificationManager
import android.app.PendingIntent
import android.content.Context
import androidx.annotation.StringRes
import androidx.core.app.NotificationCompat
import androidx.core.app.NotificationManagerCompat
import foundation.e.advancedprivacy.domain.entities.InternetPrivacyMode
import foundation.e.advancedprivacy.domain.entities.MainFeatures
import foundation.e.advancedprivacy.domain.usecases.GetQuickPrivacyStateUseCase
import foundation.e.advancedprivacy.externalinterfaces.permissions.IPermissionsPrivacyModule
import foundation.e.advancedprivacy.main.MainActivity
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.flow.distinctUntilChanged
import kotlinx.coroutines.flow.launchIn
import kotlinx.coroutines.flow.map
import kotlinx.coroutines.flow.onEach

object Notifications {
    const val CHANNEL_FIRST_BOOT = "first_boot_notification"
    const val CHANNEL_FAKE_LOCATION_FLAG = "fake_location_flag"
    const val CHANNEL_IPSCRAMBLING_FLAG = "ipscrambling_flag"

    const val NOTIFICATION_FIRST_BOOT = 1000
    const val NOTIFICATION_FAKE_LOCATION_FLAG = NOTIFICATION_FIRST_BOOT + 1
    const val NOTIFICATION_IPSCRAMBLING_FLAG = NOTIFICATION_FAKE_LOCATION_FLAG + 1

    fun showFirstBootNotification(context: Context) {
        createNotificationFirstBootChannel(context)
        val notificationBuilder: NotificationCompat.Builder = notificationBuilder(
            context,
            NotificationContent(
                channelId = CHANNEL_FIRST_BOOT,
                icon = R.drawable.ic_notification_logo,
                title = R.string.first_notification_title,
                description = R.string.first_notification_summary,
                pendingIntent = MainActivity.deepLinkBuilder(context)
                    .setDestination(R.id.dashboardFragment)
                    .createPendingIntent()
            )
        )
            .setAutoCancel(true)

        NotificationManagerCompat.from(context).notify(
            NOTIFICATION_FIRST_BOOT, notificationBuilder.build()
        )
    }

    fun startListening(
        appContext: Context,
        getQuickPrivacyStateUseCase: GetQuickPrivacyStateUseCase,
        permissionsPrivacyModule: IPermissionsPrivacyModule,
        appScope: CoroutineScope
    ) {
        createNotificationFlagChannel(
            context = appContext,
            permissionsPrivacyModule = permissionsPrivacyModule,
            channelId = CHANNEL_FAKE_LOCATION_FLAG,
            channelName = R.string.notifications_fake_location_channel_name,
            channelDescription = R.string.notifications_fake_location_channel_description
        )

        createNotificationFlagChannel(
            context = appContext,
            permissionsPrivacyModule = permissionsPrivacyModule,
            channelId = CHANNEL_IPSCRAMBLING_FLAG,
            channelName = R.string.notifications_ipscrambling_channel_name,
            channelDescription = R.string.notifications_ipscrambling_channel_description
        )

        getQuickPrivacyStateUseCase.isLocationHidden.onEach {
            if (it) {
                showFlagNotification(appContext, MainFeatures.FAKE_LOCATION)
            } else {
                hideFlagNotification(appContext, MainFeatures.FAKE_LOCATION)
            }
        }.launchIn(appScope)

        getQuickPrivacyStateUseCase.ipScramblingMode.map {
            it != InternetPrivacyMode.REAL_IP
        }.distinctUntilChanged().onEach {
            if (it) {
                showFlagNotification(appContext, MainFeatures.IP_SCRAMBLING)
            } else {
                hideFlagNotification(appContext, MainFeatures.IP_SCRAMBLING)
            }
        }.launchIn(appScope)
    }

    private fun createNotificationFirstBootChannel(context: Context) {
        val channel = NotificationChannel(
            CHANNEL_FIRST_BOOT,
            context.getString(R.string.notifications_first_boot_channel_name),
            NotificationManager.IMPORTANCE_HIGH
        )
        NotificationManagerCompat.from(context).createNotificationChannel(channel)
    }

    private fun createNotificationFlagChannel(
        context: Context,
        permissionsPrivacyModule: IPermissionsPrivacyModule,
        channelId: String,
        @StringRes channelName: Int,
        @StringRes channelDescription: Int,
    ) {
        val channel = NotificationChannel(
            channelId, context.getString(channelName), NotificationManager.IMPORTANCE_LOW
        )
        channel.description = context.getString(channelDescription)
        permissionsPrivacyModule.setBlockable(channel)
        NotificationManagerCompat.from(context).createNotificationChannel(channel)
    }

    private fun showFlagNotification(context: Context, feature: MainFeatures) {
        when (feature) {
            MainFeatures.FAKE_LOCATION -> showFlagNotification(
                context = context,
                id = NOTIFICATION_FAKE_LOCATION_FLAG,
                content = NotificationContent(
                    channelId = CHANNEL_FAKE_LOCATION_FLAG,
                    icon = R.drawable.ic_fmd_bad,
                    title = R.string.notifications_fake_location_title,
                    description = R.string.notifications_fake_location_content,
                    pendingIntent = MainActivity.deepLinkBuilder(context)
                        .addDestination(R.id.fakeLocationFragment)
                        .createPendingIntent()
                )
            )
            MainFeatures.IP_SCRAMBLING -> showFlagNotification(
                context = context,
                id = NOTIFICATION_IPSCRAMBLING_FLAG,
                content = NotificationContent(
                    channelId = CHANNEL_IPSCRAMBLING_FLAG,
                    icon = R.drawable.ic_language,
                    title = R.string.notifications_ipscrambling_title,
                    description = R.string.notifications_ipscrambling_content,
                    pendingIntent = MainActivity.deepLinkBuilder(context)
                        .addDestination(R.id.internetPrivacyFragment)
                        .createPendingIntent()
                )
            )
            else -> {}
        }
    }

    private fun showFlagNotification(
        context: Context,
        id: Int,
        content: NotificationContent,
    ) {
        val builder = notificationBuilder(context, content)
            .setPriority(NotificationCompat.PRIORITY_LOW)
            .setOngoing(true)

        NotificationManagerCompat.from(context).notify(id, builder.build())
    }

    private fun hideFlagNotification(context: Context, feature: MainFeatures) {
        val id = when (feature) {
            MainFeatures.FAKE_LOCATION -> NOTIFICATION_FAKE_LOCATION_FLAG
            MainFeatures.IP_SCRAMBLING -> NOTIFICATION_IPSCRAMBLING_FLAG
            else -> return
        }
        NotificationManagerCompat.from(context).cancel(id)
    }

    private data class NotificationContent(
        val channelId: String,
        val icon: Int,
        val title: Int,
        val description: Int,
        val pendingIntent: PendingIntent?
    )

    private fun notificationBuilder(
        context: Context,
        content: NotificationContent
    ): NotificationCompat.Builder {
        val builder = NotificationCompat.Builder(context, content.channelId)
            .setSmallIcon(content.icon)
            .setPriority(NotificationCompat.PRIORITY_LOW)
            .setContentTitle(context.getString(content.title))
            .setStyle(NotificationCompat.BigTextStyle().bigText(context.getString(content.description)))
        content.pendingIntent?.let { builder.setContentIntent(it) }

        return builder
    }
}