Lunatic/src/net/typeblog/lunatic/Services/NotificationService.java
Peter Cai 883ace4eb2 Remove unnecessary notification tracking
we don't need this whatsoever. We only play animations when the
notification is posted, and that's all we ever do. Animating all the
time while notifications are there is only annoying.
2023-04-29 11:25:08 -04:00

93 lines
3.5 KiB
Java

/*
* Copyright (C) 2022 Paranoid Android
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package net.typeblog.lunatic.Services;
import android.app.NotificationChannel;
import android.app.NotificationManager;
import android.content.Context;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.os.IBinder;
import android.service.notification.NotificationListenerService;
import android.service.notification.StatusBarNotification;
import android.util.Log;
//import com.android.internal.util.ArrayUtils;
import net.typeblog.lunatic.Constants.Constants;
import net.typeblog.lunatic.Manager.AnimationManager;
import net.typeblog.lunatic.Manager.SettingsManager;
import java.util.ArrayList;
import java.util.Arrays;
public class NotificationService extends NotificationListenerService {
private static final String TAG = "SpotlightNotification";
private static final boolean DEBUG = true;
private AnimationManager mAnimationManager;
@Override
public void onCreate() {
if (DEBUG) Log.d(TAG, "Creating service");
mAnimationManager = new AnimationManager(this);
super.onCreate();
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
if (DEBUG) Log.d(TAG, "Starting service");
return super.onStartCommand(intent, flags, startId);
}
@Override
public void onDestroy() {
if (DEBUG) Log.d(TAG, "Destroying service");
super.onDestroy();
}
@Override
public IBinder onBind(Intent intent) {
return super.onBind(intent);
}
@Override
public void onNotificationPosted(StatusBarNotification sbn){
String packageName = sbn.getPackageName();
String packageChannelID = sbn.getNotification().getChannelId();
int packageImportance = -1;
try {
Context packageContext = createPackageContext(packageName, 0);
NotificationManager packageNotificationManager = (NotificationManager) packageContext.getSystemService(Context.NOTIFICATION_SERVICE);
NotificationChannel packageChannel = packageNotificationManager.getNotificationChannel(packageChannelID);
if (packageChannel != null) {
packageImportance = packageChannel.getImportance();
}
} catch (PackageManager.NameNotFoundException e) {};
if (DEBUG) Log.d(TAG, "onNotificationPosted: package:" + packageName + " | channel id: " + packageChannelID + " | importance: " + packageImportance);
if (SettingsManager.isSpotlightNotifsAppEnabled(this, packageName)
&& !sbn.isOngoing()
&& !Arrays.asList(Constants.APPSTOIGNORE).contains(packageName)
&& !Arrays.asList(Constants.NOTIFSTOIGNORE).contains(packageName + ":" + packageChannelID)
&& (packageImportance >= NotificationManager.IMPORTANCE_DEFAULT || packageImportance == -1)) {
mAnimationManager.playNotifications();
}
}
}