]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/java/com/stoutner/privacybrowser/dialogs/ProxyNotInstalledDialog.kt
Convert a number of files to Kotlin. https://redmine.stoutner.com/issues/641
[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.content.res.Configuration
24 import android.os.Bundle
25 import android.view.WindowManager
26
27 import androidx.appcompat.app.AlertDialog
28 import androidx.fragment.app.DialogFragment
29 import androidx.preference.PreferenceManager
30
31 import com.stoutner.privacybrowser.R
32 import com.stoutner.privacybrowser.helpers.ProxyHelper
33
34 // Declare the class constants.
35 private const val PROXY_MODE = "proxy_mode"
36
37 class ProxyNotInstalledDialog : DialogFragment() {
38     companion object {
39         // `@JvmStatic` will no longer be required once all the code has transitioned to Kotlin.
40         @JvmStatic
41         fun displayDialog(proxyMode: String): ProxyNotInstalledDialog {
42             // Create an arguments bundle.
43             val argumentsBundle = Bundle()
44
45             // Store the proxy mode in the bundle.
46             argumentsBundle.putString(PROXY_MODE, proxyMode)
47
48             // Create a new instance of the dialog.
49             val proxyNotInstalledDialog = ProxyNotInstalledDialog()
50
51             // Add the bundle to the dialog.
52             proxyNotInstalledDialog.arguments = argumentsBundle
53
54             // Return the new dialog.
55             return proxyNotInstalledDialog
56         }
57     }
58
59     override fun onCreateDialog(savedInstanceState: Bundle?): Dialog {
60         // Get the proxy mode from the arguments.
61         val proxyMode = requireArguments().getString(PROXY_MODE)!!
62
63         // Use a builder to create the alert dialog.
64         val dialogBuilder = AlertDialog.Builder(requireContext(), R.style.PrivacyBrowserAlertDialog)
65
66         // Get the current theme status.
67         val currentThemeStatus = resources.configuration.uiMode and Configuration.UI_MODE_NIGHT_MASK
68
69         // Set the icon according to the theme.
70         if (currentThemeStatus == Configuration.UI_MODE_NIGHT_NO) {
71             dialogBuilder.setIcon(R.drawable.proxy_enabled_day)
72         } else {
73             dialogBuilder.setIcon(R.drawable.proxy_enabled_night)
74         }
75
76         // Set the title and the message according to the proxy mode.
77         when (proxyMode) {
78             ProxyHelper.TOR -> {
79                 // Set the title.
80                 dialogBuilder.setTitle(R.string.orbot_not_installed_title)
81
82                 // Set the message.
83                 dialogBuilder.setMessage(R.string.orbot_not_installed_message)
84             }
85
86             ProxyHelper.I2P -> {
87                 // Set the title.
88                 dialogBuilder.setTitle(R.string.i2p_not_installed_title)
89
90                 // Set the message.
91                 dialogBuilder.setMessage(R.string.i2p_not_installed_message)
92             }
93         }
94
95         // Set the close button listener.  Using `null` as the listener closes the dialog without doing anything else.
96         dialogBuilder.setPositiveButton(R.string.close, null)
97
98         // Create an alert dialog from the alert dialog builder.
99         val alertDialog = dialogBuilder.create()
100
101         // Get a handle for the shared preferences.
102         val sharedPreferences = PreferenceManager.getDefaultSharedPreferences(context)
103
104         // Get the screenshot preference.
105         val allowScreenshots = sharedPreferences.getBoolean(getString(R.string.allow_screenshots_key), false)
106
107         // Disable screenshots if not allowed.
108         if (!allowScreenshots) {
109             alertDialog.window!!.addFlags(WindowManager.LayoutParams.FLAG_SECURE)
110         }
111
112         // Return the alert dialog.
113         return alertDialog
114     }
115 }