1 /*
2 * Copyright (C) 2019 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 package com.android.systemui.statusbar.notification
18
19 import android.content.Context
20 import android.provider.DeviceConfig
21
22 import com.android.internal.annotations.VisibleForTesting
23 import com.android.internal.config.sysui.SystemUiDeviceConfigFlags.NOTIFICATIONS_USE_PEOPLE_FILTERING
24 import com.android.systemui.statusbar.notification.stack.BUCKET_ALERTING
25 import com.android.systemui.statusbar.notification.stack.BUCKET_FOREGROUND_SERVICE
26 import com.android.systemui.statusbar.notification.stack.BUCKET_HEADS_UP
27 import com.android.systemui.statusbar.notification.stack.BUCKET_MEDIA_CONTROLS
28 import com.android.systemui.statusbar.notification.stack.BUCKET_PEOPLE
29 import com.android.systemui.statusbar.notification.stack.BUCKET_SILENT
30 import com.android.systemui.util.DeviceConfigProxy
31 import com.android.systemui.util.Utils
32
33 import javax.inject.Inject
34
35 private var sUsePeopleFiltering: Boolean? = null
36
37 /**
38 * Feature controller for the NOTIFICATIONS_USE_PEOPLE_FILTERING config.
39 */
40 class NotificationSectionsFeatureManager @Inject constructor(
41 val proxy: DeviceConfigProxy,
42 val context: Context
43 ) {
44
isFilteringEnablednull45 fun isFilteringEnabled(): Boolean {
46 return usePeopleFiltering(proxy)
47 }
48
isMediaControlsEnablednull49 fun isMediaControlsEnabled(): Boolean {
50 return Utils.useQsMediaPlayer(context)
51 }
52
getNotificationBucketsnull53 fun getNotificationBuckets(): IntArray {
54 return when {
55 isFilteringEnabled() && isMediaControlsEnabled() ->
56 intArrayOf(BUCKET_HEADS_UP, BUCKET_FOREGROUND_SERVICE, BUCKET_MEDIA_CONTROLS,
57 BUCKET_PEOPLE, BUCKET_ALERTING, BUCKET_SILENT)
58 !isFilteringEnabled() && isMediaControlsEnabled() ->
59 intArrayOf(BUCKET_HEADS_UP, BUCKET_FOREGROUND_SERVICE, BUCKET_MEDIA_CONTROLS,
60 BUCKET_ALERTING, BUCKET_SILENT)
61 isFilteringEnabled() && !isMediaControlsEnabled() ->
62 intArrayOf(BUCKET_HEADS_UP, BUCKET_FOREGROUND_SERVICE, BUCKET_PEOPLE,
63 BUCKET_ALERTING, BUCKET_SILENT)
64 NotificationUtils.useNewInterruptionModel(context) ->
65 intArrayOf(BUCKET_ALERTING, BUCKET_SILENT)
66 else ->
67 intArrayOf(BUCKET_ALERTING)
68 }
69 }
70
getNumberOfBucketsnull71 fun getNumberOfBuckets(): Int {
72 return getNotificationBuckets().size
73 }
74
75 @VisibleForTesting
clearCachenull76 fun clearCache() {
77 sUsePeopleFiltering = null
78 }
79 }
80
usePeopleFilteringnull81 private fun usePeopleFiltering(proxy: DeviceConfigProxy): Boolean {
82 if (sUsePeopleFiltering == null) {
83 sUsePeopleFiltering = proxy.getBoolean(
84 DeviceConfig.NAMESPACE_SYSTEMUI, NOTIFICATIONS_USE_PEOPLE_FILTERING, true)
85 }
86
87 return sUsePeopleFiltering!!
88 }
89