]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/java/com/stoutner/privacybrowser/dialogs/ProxyNotInstalledDialog.kt
Release 3.8.1.
[PrivacyBrowserAndroid.git] / app / src / main / java / com / stoutner / privacybrowser / dialogs / ProxyNotInstalledDialog.kt
1 /*
2  * Copyright © 2019-2021 Soren Stoutner <soren@stoutner.com>.
3  *
4  * This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
5  *
6  * Privacy Browser is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * Privacy Browser is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with Privacy Browser.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 package com.stoutner.privacybrowser.dialogs
21
22 import android.app.Dialog
23 import android.os.Bundle
24 import android.view.WindowManager
25
26 import androidx.appcompat.app.AlertDialog
27 import androidx.fragment.app.DialogFragment
28 import androidx.preference.PreferenceManager
29
30 import com.stoutner.privacybrowser.R
31 import com.stoutner.privacybrowser.helpers.ProxyHelper
32
33 // Define the class constants.
34 private const val PROXY_MODE = "proxy_mode"
35
36 class ProxyNotInstalledDialog : DialogFragment() {
37     companion object {
38         // `@JvmStatic` will no longer be required once all the code has transitioned to Kotlin.
39         @JvmStatic
40         fun displayDialog(proxyMode: String): ProxyNotInstalledDialog {
41             // Create an arguments bundle.
42             val argumentsBundle = Bundle()
43
44             // Store the proxy mode in the bundle.
45             argumentsBundle.putString(PROXY_MODE, proxyMode)
46
47             // Create a new instance of the dialog.
48             val proxyNotInstalledDialog = ProxyNotInstalledDialog()
49
50             // Add the bundle to the dialog.
51             proxyNotInstalledDialog.arguments = argumentsBundle
52
53             // Return the new dialog.
54             return proxyNotInstalledDialog
55         }
56     }
57
58     override fun onCreateDialog(savedInstanceState: Bundle?): Dialog {
59         // Get the proxy mode from the arguments.
60         val proxyMode = requireArguments().getString(PROXY_MODE)!!
61
62         // Use a builder to create the alert dialog.
63         val dialogBuilder = AlertDialog.Builder(requireContext(), R.style.PrivacyBrowserAlertDialog)
64
65         // Set the icon according to the theme.
66         dialogBuilder.setIconAttribute(R.attr.proxyBlueIcon)
67
68         // Set the title and the message according to the proxy mode.
69         when (proxyMode) {
70             ProxyHelper.TOR -> {
71                 // Set the title.
72                 dialogBuilder.setTitle(R.string.orbot_not_installed_title)
73
74                 // Set the message.
75                 dialogBuilder.setMessage(R.string.orbot_not_installed_message)
76             }
77
78             ProxyHelper.I2P -> {
79                 // Set the title.
80                 dialogBuilder.setTitle(R.string.i2p_not_installed_title)
81
82                 // Set the message.
83                 dialogBuilder.setMessage(R.string.i2p_not_installed_message)
84             }
85         }
86
87         // Set the close button listener.  Using `null` as the listener closes the dialog without doing anything else.
88         dialogBuilder.setPositiveButton(R.string.close, null)
89
90         // Create an alert dialog from the alert dialog builder.
91         val alertDialog = dialogBuilder.create()
92
93         // Get a handle for the shared preferences.
94         val sharedPreferences = PreferenceManager.getDefaultSharedPreferences(context)
95
96         // Get the screenshot preference.
97         val allowScreenshots = sharedPreferences.getBoolean(getString(R.string.allow_screenshots_key), false)
98
99         // Disable screenshots if not allowed.
100         if (!allowScreenshots) {
101             alertDialog.window!!.addFlags(WindowManager.LayoutParams.FLAG_SECURE)
102         }
103
104         // Return the alert dialog.
105         return alertDialog
106     }
107 }