summaryrefslogtreecommitdiffstats
path: root/src/com/cyngn/theme/chooser/NotificationHijackingService.java
blob: ca53791246386255cd9c372c891c7fc9b07989bf (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
/*
 * Copyright (C) 2014 Cyanogen, Inc.
 */
package com.cyngn.theme.chooser;

import android.app.PendingIntent;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.pm.PackageInfo;
import android.content.pm.PackageManager;
import android.provider.Settings;
import android.service.notification.NotificationListenerService;
import android.service.notification.StatusBarNotification;
import android.text.TextUtils;

public class NotificationHijackingService extends NotificationListenerService {
    private static final String TAG = NotificationHijackingService.class.getName();
    private static final String GOOGLE_PLAY_PACKAGE_NAME = "com.android.vending";
    private static final String ACTION_INSTALLED =
            "com.android.vending.SUCCESSFULLY_INSTALLED_CLICKED";
    private static final String EXTRA_PACKAGE_NAME = "package_name";

    @Override
    public void onNotificationPosted(StatusBarNotification sbn) {
        if (GOOGLE_PLAY_PACKAGE_NAME.equals(sbn.getPackageName())) {
            PendingIntent contentIntent = sbn.getNotification().contentIntent;
            if (contentIntent == null) return;
            Intent intent = contentIntent.getIntent();
            if (intent == null) return;
            String action = intent.getAction();
            if (ACTION_INSTALLED.equals(action)) {
                String pkgName = intent.getStringExtra(EXTRA_PACKAGE_NAME);
                try {
                    PackageInfo pi = getPackageManager().getPackageInfo(pkgName, 0);
                    if (pi != null) {
                        if (pi.themeInfo != null) {
                            cancelNotification(GOOGLE_PLAY_PACKAGE_NAME, sbn.getTag(), sbn.getId());
                        }
                    }
                } catch (PackageManager.NameNotFoundException e) {
                }
            }
        }
    }

    @Override
    public void onNotificationRemoved(StatusBarNotification sbn) {
    }

    // ensure that this notification listener is enabled.
    // the service watches for google play notifications
    public static void ensureEnabled(Context context) {
        ComponentName me = new ComponentName(context, NotificationHijackingService.class);
        String meFlattened = me.flattenToString();

        String existingListeners = Settings.Secure.getString(context.getContentResolver(),
                Settings.Secure.ENABLED_NOTIFICATION_LISTENERS);

        if (!TextUtils.isEmpty(existingListeners)) {
            if (existingListeners.contains(meFlattened)) {
                return;
            } else {
                existingListeners += ":" + meFlattened;
            }
        } else {
            existingListeners = meFlattened;
        }

        Settings.Secure.putString(context.getContentResolver(),
                Settings.Secure.ENABLED_NOTIFICATION_LISTENERS,
                existingListeners);
    }
}