summaryrefslogtreecommitdiff
path: root/PermissionController/src/com/android/permissioncontroller/permission/ui/handheld/v34/PermissionRationaleViewHandlerImpl.kt
blob: 3998ca14155a182f0d402233d7b79bd21189107a (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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
/*
 * Copyright (C) 2022 The Android Open Source Project
 *
 * 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 com.android.permissioncontroller.permission.ui.handheld.v34

import android.app.Activity
import android.content.Context
import android.content.res.ColorStateList
import android.os.Build
import android.os.Bundle
import android.transition.ChangeBounds
import android.transition.TransitionManager
import android.view.Gravity
import android.view.LayoutInflater
import android.view.View
import android.view.View.OnClickListener
import android.view.ViewGroup
import android.view.animation.AnimationUtils
import android.widget.Button
import android.widget.LinearLayout
import android.widget.TextView
import androidx.annotation.RequiresApi
import com.android.permissioncontroller.R
import com.android.permissioncontroller.permission.compat.LinkMovementMethodCompat
import com.android.permissioncontroller.permission.ui.v34.PermissionRationaleViewHandler
import com.android.permissioncontroller.permission.ui.v34.PermissionRationaleViewHandler.Result.Companion.CANCELLED

/**
 * Handheld implementation of [PermissionRationaleViewHandler]. Used for managing the presentation
 * and user interaction of the "permission rationale" user interface.
 */
@RequiresApi(Build.VERSION_CODES.UPSIDE_DOWN_CAKE)
class PermissionRationaleViewHandlerImpl(
    private val mActivity: Activity,
    private val resultListener: PermissionRationaleViewHandler.ResultListener,
    private val shouldShowSettingsSection: Boolean
) : PermissionRationaleViewHandler, OnClickListener {

    private var groupName: String? = null
    private var title: CharSequence? = null
    private var dataSharingSourceMessage: CharSequence? = null
    private var purposeTitle: CharSequence? = null
    private var purposeMessage: CharSequence? = null
    private var learnMoreMessage: CharSequence? = null
    private var settingsMessage: CharSequence? = null

    private var rootView: ViewGroup? = null
    private var titleView: TextView? = null
    private var dataSharingSourceMessageView: TextView? = null
    private var purposeTitleView: TextView? = null
    private var purposeMessageView: TextView? = null
    private var learnMoreMessageView: TextView? = null
    private var settingsMessageView: TextView? = null
    private var backButton: Button? = null

    override fun saveInstanceState(outState: Bundle) {
        outState.putString(ARG_GROUP_NAME, groupName)
        outState.putCharSequence(ARG_TITLE, title)
        outState.putCharSequence(ARG_DATA_SHARING_SOURCE_MESSAGE, dataSharingSourceMessage)
        outState.putCharSequence(ARG_PURPOSE_TITLE, purposeTitle)
        outState.putCharSequence(ARG_PURPOSE_MESSAGE, purposeMessage)
        outState.putCharSequence(ARG_LEARN_MORE_MESSAGE, learnMoreMessage)
        outState.putCharSequence(ARG_SETTINGS_MESSAGE, settingsMessage)
    }

    override fun loadInstanceState(savedInstanceState: Bundle) {
        groupName = savedInstanceState.getString(ARG_GROUP_NAME)
        title = savedInstanceState.getCharSequence(ARG_TITLE)
        dataSharingSourceMessage =
            savedInstanceState.getCharSequence(ARG_DATA_SHARING_SOURCE_MESSAGE)
        purposeTitle = savedInstanceState.getCharSequence(ARG_PURPOSE_TITLE)
        purposeMessage = savedInstanceState.getCharSequence(ARG_PURPOSE_MESSAGE)
        learnMoreMessage = savedInstanceState.getCharSequence(ARG_LEARN_MORE_MESSAGE)
        settingsMessage = savedInstanceState.getCharSequence(ARG_SETTINGS_MESSAGE)
    }

    override fun updateUi(
        groupName: String,
        title: CharSequence,
        dataSharingSourceMessage: CharSequence,
        purposeTitle: CharSequence,
        purposeMessage: CharSequence,
        learnMoreMessage: CharSequence,
        settingsMessage: CharSequence
    ) {
        this.groupName = groupName
        this.title = title
        this.dataSharingSourceMessage = dataSharingSourceMessage
        this.purposeTitle = purposeTitle
        this.purposeMessage = purposeMessage
        this.learnMoreMessage = learnMoreMessage
        this.settingsMessage = settingsMessage

        // If view already created, update all children
        if (rootView != null) {
            updateAll()
        }
    }

    private fun updateAll() {
        updateTitle()
        updateDataSharingSourceMessage()
        updatePurposeTitle()
        updatePurposeMessage()
        updateLearnMoreMessage()
        updateSettingsMessage()

        // Animate change in size
        // Grow or shrink the content container to size of new content
        val growShrinkToNewContentSize = ChangeBounds()
        growShrinkToNewContentSize.duration = ANIMATION_DURATION_MILLIS
        growShrinkToNewContentSize.interpolator = AnimationUtils.loadInterpolator(mActivity,
            android.R.interpolator.fast_out_slow_in)
        TransitionManager.beginDelayedTransition(rootView, growShrinkToNewContentSize)
    }

    override fun createView(): View {
        val rootView = LayoutInflater.from(mActivity)
            .inflate(R.layout.permission_rationale, null) as ViewGroup

        // Uses the vertical gravity of the PermissionGrantSingleton style to position the window
        val gravity =
            rootView.requireViewById<LinearLayout>(R.id.permission_rationale_singleton).gravity
        val verticalGravity = Gravity.VERTICAL_GRAVITY_MASK and gravity
        mActivity.window.setGravity(Gravity.CENTER_HORIZONTAL or verticalGravity)

        // Cancel dialog
        rootView.findViewById<View>(R.id.permission_rationale_singleton)!!.setOnClickListener(this)
        // Swallow click event
        rootView.findViewById<View>(R.id.permission_rationale_dialog)!!.setOnClickListener(this)

        titleView = rootView.findViewById(R.id.permission_rationale_title)

        dataSharingSourceMessageView = rootView.findViewById(R.id.data_sharing_source_message)
        dataSharingSourceMessageView!!.movementMethod = LinkMovementMethodCompat.getInstance()

        purposeTitleView = rootView.findViewById(R.id.purpose_title)
        purposeMessageView = rootView.findViewById(R.id.purpose_message)

        learnMoreMessageView = rootView.findViewById(R.id.learn_more_message)
        learnMoreMessageView!!.movementMethod = LinkMovementMethodCompat.getInstance()

        settingsMessageView = rootView.findViewById(R.id.settings_message)
        settingsMessageView!!.movementMethod = LinkMovementMethodCompat.getInstance()

        if (!shouldShowSettingsSection) {
            val settingsSectionView: ViewGroup? = rootView.findViewById(R.id.settings_section)
            settingsSectionView?.visibility = View.GONE
        }
        backButton = rootView.findViewById<Button>(R.id.back_button)!!.apply {
            setOnClickListener(this@PermissionRationaleViewHandlerImpl)

            // Load the text color from the activity theme rather than the Material Design theme
            val textColor = getColorStateListForAttr(mActivity, android.R.attr.textColorPrimary)!!
            setTextColor(textColor)
        }

        this.rootView = rootView

        // If ui model present, update all children
        if (groupName != null) {
            updateAll()
        }

        return rootView
    }

    override fun onClick(view: View) {
        val id = view.id

        if (id == R.id.permission_rationale_singleton) {
            onCancelled()
            return
        }

        if (id == R.id.back_button) {
            onCancelled()
        }
    }

    override fun onBackPressed() {
        onCancelled()
    }

    override fun onCancelled() {
        resultListener.onPermissionRationaleResult(groupName, CANCELLED)
    }

    private fun updateTitle() {
        if (title == null) {
            titleView!!.visibility = View.GONE
        } else {
            titleView!!.text = title
            titleView!!.visibility = View.VISIBLE
        }
    }

    private fun updateDataSharingSourceMessage() {
        if (dataSharingSourceMessage == null) {
            dataSharingSourceMessageView!!.visibility = View.GONE
        } else {
            dataSharingSourceMessageView!!.text = dataSharingSourceMessage
            dataSharingSourceMessageView!!.visibility = View.VISIBLE
        }
    }

    private fun updatePurposeTitle() {
        if (purposeTitle == null) {
            purposeTitleView!!.visibility = View.GONE
        } else {
            purposeTitleView!!.text = purposeTitle
            purposeTitleView!!.visibility = View.VISIBLE
        }
    }

    private fun updatePurposeMessage() {
        if (purposeMessage == null) {
            purposeMessageView!!.visibility = View.GONE
        } else {
            purposeMessageView!!.text = purposeMessage
            purposeMessageView!!.visibility = View.VISIBLE
        }
    }

    private fun updateLearnMoreMessage() {
        if (learnMoreMessage == null) {
            learnMoreMessageView!!.visibility = View.GONE
        } else {
            learnMoreMessageView!!.text = learnMoreMessage
            learnMoreMessageView!!.visibility = View.VISIBLE
        }
    }

    private fun updateSettingsMessage() {
        if (settingsMessage == null) {
            settingsMessageView!!.visibility = View.GONE
        } else {
            settingsMessageView!!.text = settingsMessage
            settingsMessageView!!.visibility = View.VISIBLE
        }
    }

    companion object {
        private val TAG = PermissionRationaleViewHandlerImpl::class.java.simpleName

        const val ARG_GROUP_NAME = "ARG_GROUP_NAME"
        const val ARG_TITLE = "ARG_TITLE"
        const val ARG_DATA_SHARING_SOURCE_MESSAGE = "ARG_DATA_SHARING_SOURCE_MESSAGE"
        const val ARG_PURPOSE_TITLE = "ARG_PURPOSE_TITLE"
        const val ARG_PURPOSE_MESSAGE = "ARG_PURPOSE_MESSAGE"
        const val ARG_LEARN_MORE_MESSAGE = "ARG_LEARN_MORE_MESSAGE"
        const val ARG_SETTINGS_MESSAGE = "ARG_SETTINGS_MESSAGE"

        // Animation parameters.
        private const val ANIMATION_DURATION_MILLIS: Long = 200

        fun getColorStateListForAttr(context: Context, attr: Int): ColorStateList? {
            val typedArray = context.obtainStyledAttributes(intArrayOf(attr))
            val colorStateList = typedArray.getColorStateList(0)
            typedArray.recycle()
            return colorStateList
        }
    }
}