]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/java/com/stoutner/privacybrowser/dialogs/SaveWebpageDialog.java
1c24e0bedc6ca95f4414c74ae3c92bd92001c205
[PrivacyBrowserAndroid.git] / app / src / main / java / com / stoutner / privacybrowser / dialogs / SaveWebpageDialog.java
1 /*
2  * Copyright © 2019 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.Manifest;
23 import android.annotation.SuppressLint;
24 import android.app.Activity;
25 import android.app.AlertDialog;
26 import android.app.Dialog;
27 import android.content.Context;
28 import android.content.DialogInterface;
29 import android.content.Intent;
30 import android.content.SharedPreferences;
31 import android.content.pm.PackageManager;
32 import android.os.Build;
33 import android.os.Bundle;
34 import android.os.Environment;
35 import android.provider.DocumentsContract;
36 import android.text.Editable;
37 import android.text.TextWatcher;
38 import android.view.View;
39 import android.view.WindowManager;
40 import android.widget.Button;
41 import android.widget.EditText;
42 import android.widget.TextView;
43
44 import androidx.annotation.NonNull;
45 import androidx.core.content.ContextCompat;
46 import androidx.fragment.app.DialogFragment;
47 import androidx.preference.PreferenceManager;
48
49 import com.stoutner.privacybrowser.R;
50 import com.stoutner.privacybrowser.activities.MainWebViewActivity;
51
52 public class SaveWebpageDialog extends DialogFragment {
53     // Define the save type constants.
54     public static final int ARCHIVE = 0;
55     public static final int IMAGE = 1;
56
57     // Define the save webpage listener.
58     private SaveWebpageListener saveWebpageListener;
59
60     // The public interface is used to send information back to the parent activity.
61     public interface SaveWebpageListener {
62         void onSaveWebpage(int saveType, DialogFragment dialogFragment);
63     }
64
65     @Override
66     public void onAttach(@NonNull Context context) {
67         // Run the default commands.
68         super.onAttach(context);
69
70         // Get a handle for the save webpage listener from the launching context.
71         saveWebpageListener = (SaveWebpageListener) context;
72     }
73
74     public static SaveWebpageDialog saveWebpage(int saveType) {
75         // Create an arguments bundle.
76         Bundle argumentsBundle = new Bundle();
77
78         // Store the save type in the bundle.
79         argumentsBundle.putInt("save_type", saveType);
80
81         // Create a new instance of the save webpage dialog.
82         SaveWebpageDialog saveWebpageDialog = new SaveWebpageDialog();
83
84         // Add the arguments bundle to the new dialog.
85         saveWebpageDialog.setArguments(argumentsBundle);
86
87         // Return the new dialog.
88         return saveWebpageDialog;
89     }
90
91     // `@SuppressLing("InflateParams")` removes the warning about using null as the parent view group when inflating the alert dialog.
92     @SuppressLint("InflateParams")
93     @Override
94     @NonNull
95     public Dialog onCreateDialog(Bundle savedInstanceState) {
96         // Get a handle for the arguments.
97         Bundle arguments = getArguments();
98
99         // Remove the incorrect lint warning that the arguments might be null.
100         assert arguments != null;
101
102         // Get the save type.
103         int saveType = arguments.getInt("save_type");
104
105         // Get a handle for the activity and the context.
106         Activity activity = getActivity();
107         Context context = getContext();
108
109         // Remove the incorrect lint warnings below that the activity and context might be null.
110         assert activity != null;
111         assert context != null;
112
113         // Get a handle for the shared preferences.
114         SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(context);
115
116         // Get the screenshot and theme preferences.
117         boolean darkTheme = sharedPreferences.getBoolean("dark_theme", false);
118         boolean allowScreenshots = sharedPreferences.getBoolean("allow_screenshots", false);
119
120         // Use an alert dialog builder to create the alert dialog.
121         AlertDialog.Builder dialogBuilder;
122
123         // Set the style and icon according to the theme.
124         if (darkTheme) {
125             // Set the style.
126             dialogBuilder = new AlertDialog.Builder(activity, R.style.PrivacyBrowserAlertDialogDark);
127
128             // Set the icon according to the save type.
129             switch (saveType) {
130                 case ARCHIVE:
131                     dialogBuilder.setIcon(R.drawable.dom_storage_cleared_dark);
132                     break;
133
134                 case IMAGE:
135                     dialogBuilder.setIcon(R.drawable.images_enabled_dark);
136                     break;
137             }
138         } else {
139             // Set the style.
140             dialogBuilder = new AlertDialog.Builder(activity, R.style.PrivacyBrowserAlertDialogLight);
141
142             // Set the icon according to the save type.
143             switch (saveType) {
144                 case ARCHIVE:
145                     dialogBuilder.setIcon(R.drawable.dom_storage_cleared_light);
146                     break;
147
148                 case IMAGE:
149                     dialogBuilder.setIcon(R.drawable.images_enabled_light);
150                     break;
151             }
152         }
153
154         // Set the title according to the type.
155         switch (saveType) {
156             case ARCHIVE:
157                 dialogBuilder.setTitle(R.string.save_archive);
158                 break;
159
160             case IMAGE:
161                 dialogBuilder.setTitle(R.string.save_image);
162                 break;
163         }
164
165         // Set the view.  The parent view is null because it will be assigned by the alert dialog.
166         dialogBuilder.setView(activity.getLayoutInflater().inflate(R.layout.save_dialog, null));
167
168         // Set the cancel button listener.  Using `null` as the listener closes the dialog without doing anything else.
169         dialogBuilder.setNegativeButton(R.string.cancel, null);
170
171         // Set the save button listener.
172         dialogBuilder.setPositiveButton(R.string.save, (DialogInterface dialog, int which) -> {
173             // Return the dialog fragment to the parent activity.
174             saveWebpageListener.onSaveWebpage(saveType, this);
175         });
176
177         // Create an alert dialog from the builder.
178         AlertDialog alertDialog = dialogBuilder.create();
179
180         // Remove the incorrect lint warning below that `getWindow()` might be null.
181         assert alertDialog.getWindow() != null;
182
183         // Disable screenshots if not allowed.
184         if (!allowScreenshots) {
185             alertDialog.getWindow().addFlags(WindowManager.LayoutParams.FLAG_SECURE);
186         }
187
188         // The alert dialog must be shown before items in the layout can be modified.
189         alertDialog.show();
190
191         // Get handles for the layout items.
192         EditText fileNameEditText = alertDialog.findViewById(R.id.file_name_edittext);
193         Button browseButton = alertDialog.findViewById(R.id.browse_button);
194         TextView storagePermissionTextView = alertDialog.findViewById(R.id.storage_permission_textview);
195         Button saveButton = alertDialog.getButton(AlertDialog.BUTTON_POSITIVE);
196
197         // Create a default file name string.
198         String defaultFileName = "";
199
200         // Set the default file name according to the type.
201         switch (saveType) {
202             case ARCHIVE:
203                 defaultFileName = getString(R.string.webpage_mht);
204                 break;
205
206             case IMAGE:
207                 defaultFileName = getString(R.string.webpage_png);
208                 break;
209         }
210
211         // Create a string for the default file path.
212         String defaultFilePath;
213
214         // Set the default file path according to the storage permission state.
215         if (ContextCompat.checkSelfPermission(context, Manifest.permission.WRITE_EXTERNAL_STORAGE) == PackageManager.PERMISSION_GRANTED) {  // The storage permission has been granted.
216             // Set the default file path to use the external public directory.
217             defaultFilePath = Environment.getExternalStorageDirectory() + "/" + defaultFileName;
218         } else {  // The storage permission has not been granted.
219             // Set the default file path to use the external private directory.
220             defaultFilePath = context.getExternalFilesDir(null) + "/" + defaultFileName;
221         }
222
223         // Display the default file path.
224         fileNameEditText.setText(defaultFilePath);
225
226         // Update the status of the save button when the file name changes.
227         fileNameEditText.addTextChangedListener(new TextWatcher() {
228             @Override
229             public void beforeTextChanged(CharSequence s, int start, int count, int after) {
230                 // Do nothing.
231             }
232
233             @Override
234             public void onTextChanged(CharSequence s, int start, int before, int count) {
235                 // Do nothing.
236             }
237
238             @Override
239             public void afterTextChanged(Editable s) {
240                 // // Enable the save button if a file name exists.
241                 saveButton.setEnabled(!fileNameEditText.getText().toString().isEmpty());
242             }
243         });
244
245         // Handle clicks on the browse button.
246         browseButton.setOnClickListener((View view) -> {
247             // Create the file picker intent.
248             Intent browseIntent = new Intent(Intent.ACTION_CREATE_DOCUMENT);
249
250             // Set the intent MIME type to include all files so that everything is visible.
251             browseIntent.setType("*/*");
252
253             // Set the initial file name according to the type.
254             switch (saveType) {
255                 case ARCHIVE:
256                     browseIntent.putExtra(Intent.EXTRA_TITLE, getString(R.string.webpage_mht));
257                     break;
258
259                 case IMAGE:
260                     browseIntent.putExtra(Intent.EXTRA_TITLE, getString(R.string.webpage_png));
261                     break;
262             }
263
264             // Set the initial directory if the minimum API >= 26.
265             if (Build.VERSION.SDK_INT >= 26) {
266                 browseIntent.putExtra(DocumentsContract.EXTRA_INITIAL_URI, Environment.getExternalStorageDirectory());
267             }
268
269             // Request a file that can be opened.
270             browseIntent.addCategory(Intent.CATEGORY_OPENABLE);
271
272             // Start the file picker.  This must be started under `activity` so that the request code is returned correctly.
273             activity.startActivityForResult(browseIntent, MainWebViewActivity.BROWSE_SAVE_WEBPAGE_REQUEST_CODE);
274         });
275
276         // Hide the storage permission text view on API < 23 as permissions on older devices are automatically granted.
277         if (Build.VERSION.SDK_INT < 23) {
278             storagePermissionTextView.setVisibility(View.GONE);
279         }
280
281         // Return the alert dialog.
282         return alertDialog;
283     }
284 }