annotate app/src/main/java/com/five_ten_sg/connectbot/service/ConnectionNotifier.java @ 487:3afdeb535e9f

notification needs a notification channel
author Carl Byington <carl@five-ten-sg.com>
date Wed, 14 Oct 2020 11:11:09 -0700
parents 105815cce146
children 869070df0e80
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
1 /*
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
2 * ConnectBot: simple, powerful, open-source SSH client for Android
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
3 * Copyright 2010 Kenny Root, Jeffrey Sharkey
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
4 *
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
5 * Licensed under the Apache License, Version 2.0 (the "License");
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
6 * you may not use this file except in compliance with the License.
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
7 * You may obtain a copy of the License at
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
8 *
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
9 * http://www.apache.org/licenses/LICENSE-2.0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
10 *
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
11 * Unless required by applicable law or agreed to in writing, software
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
12 * distributed under the License is distributed on an "AS IS" BASIS,
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
14 * See the License for the specific language governing permissions and
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
15 * limitations under the License.
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
16 */
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
17
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
18 package com.five_ten_sg.connectbot.service;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
19
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
20 import com.five_ten_sg.connectbot.ConsoleActivity;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
21 import com.five_ten_sg.connectbot.R;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
22 import com.five_ten_sg.connectbot.bean.HostBean;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
23 import com.five_ten_sg.connectbot.util.HostDatabase;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
24 import android.app.Notification;
487
3afdeb535e9f notification needs a notification channel
Carl Byington <carl@five-ten-sg.com>
parents: 457
diff changeset
25 import android.app.NotificationChannel;
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
26 import android.app.NotificationManager;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
27 import android.app.PendingIntent;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
28 import android.app.Service;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
29 import android.content.Context;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
30 import android.content.Intent;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
31 import android.content.res.Resources;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
32 import android.graphics.Color;
457
105815cce146 minimum version android 5, target and compile version api 28
Carl Byington <carl@five-ten-sg.com>
parents: 438
diff changeset
33 import android.graphics.BitmapFactory;
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
34
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
35 /**
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
36 * @author Kenny Root
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
37 *
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
38 * Based on the concept from jasta's blog post.
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
39 */
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
40 public class ConnectionNotifier {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
41 private static final int ONLINE_NOTIFICATION = 1;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
42 private static final int ACTIVITY_NOTIFICATION = 2;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
43
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
44 protected NotificationManager getNotificationManager(Context context) {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
45 return (NotificationManager)context.getSystemService(Context.NOTIFICATION_SERVICE);
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
46 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
47
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
48 protected Notification newActivityNotification(Context context, HostBean host) {
457
105815cce146 minimum version android 5, target and compile version api 28
Carl Byington <carl@five-ten-sg.com>
parents: 438
diff changeset
49 int rgb;
105815cce146 minimum version android 5, target and compile version api 28
Carl Byington <carl@five-ten-sg.com>
parents: 438
diff changeset
50 if (HostDatabase.COLOR_RED.equals(host.getColor()))
105815cce146 minimum version android 5, target and compile version api 28
Carl Byington <carl@five-ten-sg.com>
parents: 438
diff changeset
51 rgb = Color.RED;
105815cce146 minimum version android 5, target and compile version api 28
Carl Byington <carl@five-ten-sg.com>
parents: 438
diff changeset
52 else if (HostDatabase.COLOR_GREEN.equals(host.getColor()))
105815cce146 minimum version android 5, target and compile version api 28
Carl Byington <carl@five-ten-sg.com>
parents: 438
diff changeset
53 rgb = Color.GREEN;
105815cce146 minimum version android 5, target and compile version api 28
Carl Byington <carl@five-ten-sg.com>
parents: 438
diff changeset
54 else if (HostDatabase.COLOR_BLUE.equals(host.getColor()))
105815cce146 minimum version android 5, target and compile version api 28
Carl Byington <carl@five-ten-sg.com>
parents: 438
diff changeset
55 rgb = Color.BLUE;
105815cce146 minimum version android 5, target and compile version api 28
Carl Byington <carl@five-ten-sg.com>
parents: 438
diff changeset
56 else
105815cce146 minimum version android 5, target and compile version api 28
Carl Byington <carl@five-ten-sg.com>
parents: 438
diff changeset
57 rgb = Color.WHITE;
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
58 Resources res = context.getResources();
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
59 Intent notificationIntent = new Intent(context, ConsoleActivity.class);
457
105815cce146 minimum version android 5, target and compile version api 28
Carl Byington <carl@five-ten-sg.com>
parents: 438
diff changeset
60 PendingIntent contentIntent = PendingIntent.getActivity(context, 0, notificationIntent, 0);
487
3afdeb535e9f notification needs a notification channel
Carl Byington <carl@five-ten-sg.com>
parents: 457
diff changeset
61
3afdeb535e9f notification needs a notification channel
Carl Byington <carl@five-ten-sg.com>
parents: 457
diff changeset
62 String channelID = "com.five_ten_sg.connectbot.service";
3afdeb535e9f notification needs a notification channel
Carl Byington <carl@five-ten-sg.com>
parents: 457
diff changeset
63 String channelName = "background";
3afdeb535e9f notification needs a notification channel
Carl Byington <carl@five-ten-sg.com>
parents: 457
diff changeset
64 NotificationChannel chan = new NotificationChannel(channelID, channelName, NotificationManager.IMPORTANCE_NONE);
3afdeb535e9f notification needs a notification channel
Carl Byington <carl@five-ten-sg.com>
parents: 457
diff changeset
65 chan.setLightColor(R.color.colorAccent);
3afdeb535e9f notification needs a notification channel
Carl Byington <carl@five-ten-sg.com>
parents: 457
diff changeset
66 chan.setLockscreenVisibility(Notification.VISIBILITY_PRIVATE);
3afdeb535e9f notification needs a notification channel
Carl Byington <carl@five-ten-sg.com>
parents: 457
diff changeset
67
3afdeb535e9f notification needs a notification channel
Carl Byington <carl@five-ten-sg.com>
parents: 457
diff changeset
68 NotificationManager manager = getNotificationManager(context);
3afdeb535e9f notification needs a notification channel
Carl Byington <carl@five-ten-sg.com>
parents: 457
diff changeset
69 assert manager != null;
3afdeb535e9f notification needs a notification channel
Carl Byington <carl@five-ten-sg.com>
parents: 457
diff changeset
70 manager.createNotificationChannel(chan);
3afdeb535e9f notification needs a notification channel
Carl Byington <carl@five-ten-sg.com>
parents: 457
diff changeset
71
457
105815cce146 minimum version android 5, target and compile version api 28
Carl Byington <carl@five-ten-sg.com>
parents: 438
diff changeset
72 Notification notification = new Notification.Builder(context)
105815cce146 minimum version android 5, target and compile version api 28
Carl Byington <carl@five-ten-sg.com>
parents: 438
diff changeset
73 .setContentTitle(res.getString(R.string.app_name))
105815cce146 minimum version android 5, target and compile version api 28
Carl Byington <carl@five-ten-sg.com>
parents: 438
diff changeset
74 .setContentText(res.getString(R.string.notification_text, host.getNickname()))
105815cce146 minimum version android 5, target and compile version api 28
Carl Byington <carl@five-ten-sg.com>
parents: 438
diff changeset
75 .setContentIntent(contentIntent)
105815cce146 minimum version android 5, target and compile version api 28
Carl Byington <carl@five-ten-sg.com>
parents: 438
diff changeset
76 .setWhen(System.currentTimeMillis())
105815cce146 minimum version android 5, target and compile version api 28
Carl Byington <carl@five-ten-sg.com>
parents: 438
diff changeset
77 .setSmallIcon(R.drawable.notification_icon)
105815cce146 minimum version android 5, target and compile version api 28
Carl Byington <carl@five-ten-sg.com>
parents: 438
diff changeset
78 .setLargeIcon(BitmapFactory.decodeResource(res, R.drawable.notification_icon))
487
3afdeb535e9f notification needs a notification channel
Carl Byington <carl@five-ten-sg.com>
parents: 457
diff changeset
79 .setChannelId(channelID)
457
105815cce146 minimum version android 5, target and compile version api 28
Carl Byington <carl@five-ten-sg.com>
parents: 438
diff changeset
80 .setLights(rgb, 300, 1000)
105815cce146 minimum version android 5, target and compile version api 28
Carl Byington <carl@five-ten-sg.com>
parents: 438
diff changeset
81 .build();
105815cce146 minimum version android 5, target and compile version api 28
Carl Byington <carl@five-ten-sg.com>
parents: 438
diff changeset
82 notification.flags |= Notification.FLAG_AUTO_CANCEL;
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
83 return notification;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
84 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
85
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
86 protected Notification newRunningNotification(Context context) {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
87 Resources res = context.getResources();
457
105815cce146 minimum version android 5, target and compile version api 28
Carl Byington <carl@five-ten-sg.com>
parents: 438
diff changeset
88 Intent notificationIntent = new Intent(context, ConsoleActivity.class);
105815cce146 minimum version android 5, target and compile version api 28
Carl Byington <carl@five-ten-sg.com>
parents: 438
diff changeset
89 PendingIntent contentIntent = PendingIntent.getActivity(context, ONLINE_NOTIFICATION, notificationIntent, 0);
487
3afdeb535e9f notification needs a notification channel
Carl Byington <carl@five-ten-sg.com>
parents: 457
diff changeset
90
3afdeb535e9f notification needs a notification channel
Carl Byington <carl@five-ten-sg.com>
parents: 457
diff changeset
91 String channelID = "com.five_ten_sg.connectbot.service";
3afdeb535e9f notification needs a notification channel
Carl Byington <carl@five-ten-sg.com>
parents: 457
diff changeset
92 String channelName = "background";
3afdeb535e9f notification needs a notification channel
Carl Byington <carl@five-ten-sg.com>
parents: 457
diff changeset
93 NotificationChannel chan = new NotificationChannel(channelID, channelName, NotificationManager.IMPORTANCE_NONE);
3afdeb535e9f notification needs a notification channel
Carl Byington <carl@five-ten-sg.com>
parents: 457
diff changeset
94 chan.setLightColor(R.color.colorAccent);
3afdeb535e9f notification needs a notification channel
Carl Byington <carl@five-ten-sg.com>
parents: 457
diff changeset
95 chan.setLockscreenVisibility(Notification.VISIBILITY_PRIVATE);
3afdeb535e9f notification needs a notification channel
Carl Byington <carl@five-ten-sg.com>
parents: 457
diff changeset
96
3afdeb535e9f notification needs a notification channel
Carl Byington <carl@five-ten-sg.com>
parents: 457
diff changeset
97 NotificationManager manager = getNotificationManager(context);
3afdeb535e9f notification needs a notification channel
Carl Byington <carl@five-ten-sg.com>
parents: 457
diff changeset
98 assert manager != null;
3afdeb535e9f notification needs a notification channel
Carl Byington <carl@five-ten-sg.com>
parents: 457
diff changeset
99 manager.createNotificationChannel(chan);
3afdeb535e9f notification needs a notification channel
Carl Byington <carl@five-ten-sg.com>
parents: 457
diff changeset
100
457
105815cce146 minimum version android 5, target and compile version api 28
Carl Byington <carl@five-ten-sg.com>
parents: 438
diff changeset
101 Notification notification = new Notification.Builder(context)
105815cce146 minimum version android 5, target and compile version api 28
Carl Byington <carl@five-ten-sg.com>
parents: 438
diff changeset
102 .setContentTitle(res.getString(R.string.app_name))
105815cce146 minimum version android 5, target and compile version api 28
Carl Byington <carl@five-ten-sg.com>
parents: 438
diff changeset
103 .setContentText(res.getString(R.string.app_is_running))
105815cce146 minimum version android 5, target and compile version api 28
Carl Byington <carl@five-ten-sg.com>
parents: 438
diff changeset
104 .setContentIntent(contentIntent)
105815cce146 minimum version android 5, target and compile version api 28
Carl Byington <carl@five-ten-sg.com>
parents: 438
diff changeset
105 .setWhen(0)
105815cce146 minimum version android 5, target and compile version api 28
Carl Byington <carl@five-ten-sg.com>
parents: 438
diff changeset
106 .setOngoing(true)
105815cce146 minimum version android 5, target and compile version api 28
Carl Byington <carl@five-ten-sg.com>
parents: 438
diff changeset
107 .setSmallIcon(R.drawable.notification_icon)
105815cce146 minimum version android 5, target and compile version api 28
Carl Byington <carl@five-ten-sg.com>
parents: 438
diff changeset
108 .setLargeIcon(BitmapFactory.decodeResource(res, R.drawable.notification_icon))
487
3afdeb535e9f notification needs a notification channel
Carl Byington <carl@five-ten-sg.com>
parents: 457
diff changeset
109 .setChannelId(channelID)
457
105815cce146 minimum version android 5, target and compile version api 28
Carl Byington <carl@five-ten-sg.com>
parents: 438
diff changeset
110 .build();
105815cce146 minimum version android 5, target and compile version api 28
Carl Byington <carl@five-ten-sg.com>
parents: 438
diff changeset
111 notification.flags |= Notification.FLAG_NO_CLEAR;
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
112 return notification;
457
105815cce146 minimum version android 5, target and compile version api 28
Carl Byington <carl@five-ten-sg.com>
parents: 438
diff changeset
113
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
114 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
115
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
116 public void showActivityNotification(Service context, HostBean host) {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
117 getNotificationManager(context).notify(ACTIVITY_NOTIFICATION, newActivityNotification(context, host));
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
118 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
119
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
120 public void hideActivityNotification(Service context) {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
121 getNotificationManager(context).cancel(ACTIVITY_NOTIFICATION);
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
122 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
123
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
124 public void showRunningNotification(Service context) {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
125 context.startForeground(ONLINE_NOTIFICATION, newRunningNotification(context));
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
126 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
127
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
128 public void hideRunningNotification(Service context) {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
129 context.stopForeground(true);
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
130 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
131 }