summaryrefslogtreecommitdiff
path: root/app/src/main/java/se/leap/bitmaskclient/tor/TorNotificationManager.java
blob: 3f3fbf4f4f0a13fd3c7f90a3b089afba5ad3ed38 (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
package se.leap.bitmaskclient.tor;
/**
 * Copyright (c) 2021 LEAP Encryption Access Project and contributers
 *
 * 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 <http://www.gnu.org/licenses/>.
 */

import android.annotation.TargetApi;
import android.app.Notification;
import android.app.NotificationChannel;
import android.app.NotificationManager;
import android.content.Context;
import android.os.Build;

import androidx.core.app.NotificationCompat;

import se.leap.bitmaskclient.R;

public class TorNotificationManager {
    public   final static int TOR_SERVICE_NOTIFICATION_ID = 10;
    static final String NOTIFICATION_CHANNEL_NEWSTATUS_ID = "bitmask_tor_service_news";
    private long lastNotificationTime = 0;
    // debounce timeout in milliseconds
    private final static long NOTIFICATION_DEBOUNCE_TIME = 500;


    public TorNotificationManager() {}


    public static Notification buildTorForegroundNotification(Context context) {
        NotificationManager notificationManager = initNotificationManager(context);
        if (notificationManager == null) {
            return null;
        }
        NotificationCompat.Builder notificationBuilder = initNotificationBuilderDefaults(context);
        return notificationBuilder
                .setSmallIcon(R.drawable.ic_bridge_36)
                .setWhen(System.currentTimeMillis())
                .setContentText(context.getString(R.string.tor_started)).build();
    }

    public void buildTorNotification(Context context, String state, String message, int progress) {
        if (shouldDropNotification()) {
            return;
        }
        NotificationManager notificationManager = initNotificationManager(context);
        if (notificationManager == null) {
            return;
        }
        NotificationCompat.Builder notificationBuilder = initNotificationBuilderDefaults(context);
        notificationBuilder
                .setSmallIcon(R.drawable.ic_bridge_36)
                .setWhen(System.currentTimeMillis())
                .setStyle(new NotificationCompat.BigTextStyle().
                        setBigContentTitle(state).
                        bigText(message))
                .setTicker(message)
                .setContentTitle(state)
                .setOnlyAlertOnce(true)
                .setContentText(message);
        if (progress > 0) {
            notificationBuilder.setProgress(100, progress, false);
        }
        notificationManager.notify(TOR_SERVICE_NOTIFICATION_ID, notificationBuilder.build());
    }

    private boolean shouldDropNotification() {
        long now = System.currentTimeMillis();
        if (now - lastNotificationTime < NOTIFICATION_DEBOUNCE_TIME) {
            return true;
        }
        lastNotificationTime = now;
        return false;
    }


    private static NotificationManager initNotificationManager(Context context) {
        NotificationManager notificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
        if (notificationManager == null) {
            return null;
        }
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
            createNotificationChannel(context, notificationManager);
        }
        return notificationManager;
    }

    @TargetApi(26)
    private static void createNotificationChannel(Context context, NotificationManager notificationManager) {
        String appName = context.getString(R.string.app_name);
        CharSequence name =  context.getString(R.string.channel_name_tor_service, appName);
        String description = context.getString(R.string.channel_description_tor_service, appName);
        NotificationChannel channel = new NotificationChannel(NOTIFICATION_CHANNEL_NEWSTATUS_ID,
                name,
                NotificationManager.IMPORTANCE_LOW);
        channel.setSound(null, null);
        channel.setDescription(description);
        notificationManager.createNotificationChannel(channel);
    }

    private static NotificationCompat.Builder initNotificationBuilderDefaults(Context context) {
        NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(context, NOTIFICATION_CHANNEL_NEWSTATUS_ID);
        notificationBuilder.
                setDefaults(Notification.DEFAULT_ALL).
                setLocalOnly(true).
                setAutoCancel(false);
        return notificationBuilder;
    }

    public void cancelNotifications(Context context) {
        NotificationManager notificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
        if (notificationManager == null) {
            return;
        }
        notificationManager.cancel(TOR_SERVICE_NOTIFICATION_ID);
    }
}