]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/java/com/stoutner/privacybrowser/dialogs/EditBookmarkDatabaseViewDialog.java
Add setting to disable screenshots. https://redmine.stoutner.com/issues/266
[PrivacyBrowserAndroid.git] / app / src / main / java / com / stoutner / privacybrowser / dialogs / EditBookmarkDatabaseViewDialog.java
1 /*
2  * Copyright © 2016-2018 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.annotation.SuppressLint;
23 import android.app.AlertDialog;
24 import android.app.Dialog;
25 import android.content.Context;
26 import android.content.DialogInterface;
27 import android.database.Cursor;
28 import android.database.MatrixCursor;
29 import android.database.MergeCursor;
30 import android.graphics.Bitmap;
31 import android.graphics.BitmapFactory;
32 import android.os.Bundle;
33 import android.support.annotation.NonNull;
34 // `AppCompatDialogFragment` is required instead of `DialogFragment` or an error is produced on API <=22.
35 import android.support.v4.widget.ResourceCursorAdapter;
36 import android.support.v7.app.AppCompatDialogFragment;
37 import android.text.Editable;
38 import android.text.TextWatcher;
39 import android.view.KeyEvent;
40 import android.view.View;
41 import android.view.WindowManager;
42 import android.widget.AdapterView;
43 import android.widget.Button;
44 import android.widget.EditText;
45 import android.widget.ImageView;
46 import android.widget.RadioButton;
47 import android.widget.RadioGroup;
48 import android.widget.Spinner;
49 import android.widget.TextView;
50
51 import com.stoutner.privacybrowser.R;
52 import com.stoutner.privacybrowser.activities.MainWebViewActivity;
53 import com.stoutner.privacybrowser.helpers.BookmarksDatabaseHelper;
54
55 public class EditBookmarkDatabaseViewDialog extends AppCompatDialogFragment {
56     // Instantiate the constants.
57     public static final int HOME_FOLDER_DATABASE_ID = -1;
58
59     // Instantiate the class variables.
60     private EditBookmarkDatabaseViewListener editBookmarkDatabaseViewListener;
61     private int bookmarkDatabaseId;
62     private String currentBookmarkName;
63     private String currentUrl;
64     private int currentFolderDatabaseId;
65     private String currentDisplayOrder;
66     private RadioButton newIconRadioButton;
67     private EditText nameEditText;
68     private EditText urlEditText;
69     private Spinner folderSpinner;
70     private EditText displayOrderEditText;
71     private Button editButton;
72
73     // The public interface is used to send information back to the parent activity.
74     public interface EditBookmarkDatabaseViewListener {
75         void onSaveBookmark(AppCompatDialogFragment dialogFragment, int selectedBookmarkDatabaseId);
76     }
77
78     @Override
79     public void onAttach(Context context) {
80         // Run the default commands.
81         super.onAttach(context);
82
83         // Get a handle for `EditBookmarkDatabaseViewListener` from `context`.
84         try {
85             editBookmarkDatabaseViewListener = (EditBookmarkDatabaseViewListener) context;
86         } catch(ClassCastException exception) {
87             throw new ClassCastException(context.toString() + " must implement EditBookmarkDatabaseViewListener.");
88         }
89     }
90
91     // Store the database ID in the arguments bundle.
92     public static EditBookmarkDatabaseViewDialog bookmarkDatabaseId(int databaseId) {
93         // Create a bundle.
94         Bundle bundle = new Bundle();
95
96         // Store the bookmark database ID in the bundle.
97         bundle.putInt("Database ID", databaseId);
98
99         // Add the bundle to the dialog.
100         EditBookmarkDatabaseViewDialog editBookmarkDatabaseViewDialog = new EditBookmarkDatabaseViewDialog();
101         editBookmarkDatabaseViewDialog.setArguments(bundle);
102
103         // Return the new dialog.
104         return editBookmarkDatabaseViewDialog;
105     }
106
107     @Override
108     public void onCreate(Bundle savedInstanceState) {
109         // Run the default commands.
110         super.onCreate(savedInstanceState);
111
112         // Remove the incorrect lint warning below that `getInt()` might be null.
113         assert getArguments() != null;
114
115         // Store the bookmark database ID in the class variable.
116         bookmarkDatabaseId = getArguments().getInt("Database ID");
117     }
118
119     // `@SuppressLing("InflateParams")` removes the warning about using `null` as the parent view group when inflating the `AlertDialog`.
120     @SuppressLint("InflateParams")
121     @Override
122     @NonNull
123     public Dialog onCreateDialog(Bundle savedInstanceState) {
124         // Initialize the database helper.  The two `nulls` do not specify the database name or a `CursorFactory`.  The `0` specifies a database version, but that is ignored and set instead using a constant in `BookmarksDatabaseHelper`.
125         BookmarksDatabaseHelper bookmarksDatabaseHelper = new BookmarksDatabaseHelper(getContext(), null, null, 0);
126
127         // Get a cursor with the selected bookmark and move it to the first position.
128         Cursor bookmarkCursor = bookmarksDatabaseHelper.getBookmarkCursor(bookmarkDatabaseId);
129         bookmarkCursor.moveToFirst();
130
131         // Use an alert dialog builder to create the alert dialog.
132         AlertDialog.Builder dialogBuilder;
133
134         // Set the style according to the theme.
135         if (MainWebViewActivity.darkTheme) {
136             dialogBuilder = new AlertDialog.Builder(getActivity(), R.style.PrivacyBrowserAlertDialogDark);
137         } else {
138             dialogBuilder = new AlertDialog.Builder(getActivity(), R.style.PrivacyBrowserAlertDialogLight);
139         }
140
141         // Set the title.
142         dialogBuilder.setTitle(R.string.edit_bookmark);
143
144         // Remove the incorrect lint warning below that `getLayoutInflater()` might be null.
145         assert getActivity() != null;
146
147         // Set the view.  The parent view is `null` because it will be assigned by `AlertDialog`.
148         dialogBuilder.setView(getActivity().getLayoutInflater().inflate(R.layout.edit_bookmark_databaseview_dialog, null));
149
150         // Set the listener for the negative button.
151         dialogBuilder.setNegativeButton(R.string.cancel, (DialogInterface dialog, int which) -> {
152             // Do nothing.  The `AlertDialog` will close automatically.
153         });
154
155         // Set the listener fo the positive button.
156         dialogBuilder.setPositiveButton(R.string.save, (DialogInterface dialog, int which) -> {
157             // Return the `DialogFragment` to the parent activity on save.
158             editBookmarkDatabaseViewListener.onSaveBookmark(EditBookmarkDatabaseViewDialog.this, bookmarkDatabaseId);
159         });
160
161         // Create an alert dialog from the alert dialog builder`.
162         final AlertDialog alertDialog = dialogBuilder.create();
163
164         // Remove the warning below that `getWindow()` might be null.
165         assert alertDialog.getWindow() != null;
166
167         // Disable screenshots if not allowed.
168         if (!MainWebViewActivity.allowScreenshots) {
169             alertDialog.getWindow().addFlags(WindowManager.LayoutParams.FLAG_SECURE);
170         }
171
172         // Set the keyboard to be hidden when the `AlertDialog` is first shown.  If this is not set, the `AlertDialog` will not shrink when the keyboard is displayed.
173         alertDialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN);
174
175         // The alert dialog must be shown before items in the layout can be modified.
176         alertDialog.show();
177
178         // Get handles for the layout items.
179         TextView databaseIdTextView = alertDialog.findViewById(R.id.edit_bookmark_database_id_textview);
180         RadioGroup iconRadioGroup = alertDialog.findViewById(R.id.edit_bookmark_icon_radiogroup);
181         ImageView currentIconImageView = alertDialog.findViewById(R.id.edit_bookmark_current_icon);
182         ImageView newFavoriteIconImageView = alertDialog.findViewById(R.id.edit_bookmark_webpage_favorite_icon);
183         newIconRadioButton = alertDialog.findViewById(R.id.edit_bookmark_webpage_favorite_icon_radiobutton);
184         nameEditText = alertDialog.findViewById(R.id.edit_bookmark_name_edittext);
185         urlEditText = alertDialog.findViewById(R.id.edit_bookmark_url_edittext);
186         folderSpinner = alertDialog.findViewById(R.id.edit_bookmark_folder_spinner);
187         displayOrderEditText = alertDialog.findViewById(R.id.edit_bookmark_display_order_edittext);
188         editButton = alertDialog.getButton(AlertDialog.BUTTON_POSITIVE);
189
190         // Store the current bookmark values.
191         currentBookmarkName = bookmarkCursor.getString(bookmarkCursor.getColumnIndex(BookmarksDatabaseHelper.BOOKMARK_NAME));
192         currentUrl = bookmarkCursor.getString(bookmarkCursor.getColumnIndex(BookmarksDatabaseHelper.BOOKMARK_URL));
193         currentDisplayOrder = bookmarkCursor.getString(bookmarkCursor.getColumnIndex(BookmarksDatabaseHelper.DISPLAY_ORDER));
194
195         // Set the database ID.
196         databaseIdTextView.setText(String.valueOf(bookmarkCursor.getInt(bookmarkCursor.getColumnIndex(BookmarksDatabaseHelper._ID))));
197
198         // Get the current favorite icon byte array from the `Cursor`.
199         byte[] currentIconByteArray = bookmarkCursor.getBlob(bookmarkCursor.getColumnIndex(BookmarksDatabaseHelper.FAVORITE_ICON));
200
201         // Convert the byte array to a `Bitmap` beginning at the first byte and ending at the last.
202         Bitmap currentIconBitmap = BitmapFactory.decodeByteArray(currentIconByteArray, 0, currentIconByteArray.length);
203
204         // Display `currentIconBitmap` in `edit_bookmark_current_icon`.
205         currentIconImageView.setImageBitmap(currentIconBitmap);
206
207         // Get a `Bitmap` of the favorite icon from `MainWebViewActivity` and display it in `edit_bookmark_web_page_favorite_icon`.
208         newFavoriteIconImageView.setImageBitmap(MainWebViewActivity.favoriteIconBitmap);
209
210         // Populate the bookmark name and URL `EditTexts`.
211         nameEditText.setText(currentBookmarkName);
212         urlEditText.setText(currentUrl);
213
214         // Setup a `MatrixCursor` "Home Folder".
215         String[] matrixCursorColumnNames = {BookmarksDatabaseHelper._ID, BookmarksDatabaseHelper.BOOKMARK_NAME};
216         MatrixCursor matrixCursor = new MatrixCursor(matrixCursorColumnNames);
217         matrixCursor.addRow(new Object[]{HOME_FOLDER_DATABASE_ID, getString(R.string.home_folder)});
218
219         // Get a `Cursor` with the list of all the folders.
220         Cursor foldersCursor = bookmarksDatabaseHelper.getAllFoldersCursor();
221
222         // Combine `matrixCursor` and `foldersCursor`.
223         MergeCursor foldersMergeCursor = new MergeCursor(new Cursor[]{matrixCursor, foldersCursor});
224
225         // Remove the incorrect lint warning below that `getContext()` might be null.
226         assert getContext() != null;
227
228         // Create a `ResourceCursorAdapter` for the `Spinner`.  `0` specifies no flags.;
229         ResourceCursorAdapter foldersCursorAdapter = new ResourceCursorAdapter(getContext(), R.layout.edit_bookmark_databaseview_spinner_item, foldersMergeCursor, 0) {
230             @Override
231             public void bindView(View view, Context context, Cursor cursor) {
232                 // Get a handle for the `Spinner` item `TextView`.
233                 TextView spinnerItemTextView = view.findViewById(R.id.spinner_item_textview);
234
235                 // Set the `TextView` to display the folder name.
236                 spinnerItemTextView.setText(cursor.getString(cursor.getColumnIndex(BookmarksDatabaseHelper.BOOKMARK_NAME)));
237             }
238         };
239
240         // Set the `ResourceCursorAdapter` drop drown view resource.
241         foldersCursorAdapter.setDropDownViewResource(R.layout.edit_bookmark_databaseview_spinner_dropdown_item);
242
243         // Set the adapter for the folder `Spinner`.
244         folderSpinner.setAdapter(foldersCursorAdapter);
245
246         // Get the parent folder name.
247         String parentFolder = bookmarkCursor.getString(bookmarkCursor.getColumnIndex(BookmarksDatabaseHelper.PARENT_FOLDER));
248
249         // Select the current folder in the `Spinner` if the bookmark isn't in the "Home Folder".
250         if (!parentFolder.equals("")) {
251             // Get the database ID of the parent folder.
252             int folderDatabaseId = bookmarksDatabaseHelper.getFolderDatabaseId(bookmarkCursor.getString(bookmarkCursor.getColumnIndex(BookmarksDatabaseHelper.PARENT_FOLDER)));
253
254             // Initialize `parentFolderPosition` and the iteration variable.
255             int parentFolderPosition = 0;
256             int i = 0;
257
258             // Find the parent folder position in folders `ResourceCursorAdapter`.
259             do {
260                 if (foldersCursorAdapter.getItemId(i) == folderDatabaseId) {
261                     // Store the current position for the parent folder.
262                     parentFolderPosition = i;
263                 } else {
264                     // Try the next entry.
265                     i++;
266                 }
267                 // Stop when the parent folder position is found or all the items in the `ResourceCursorAdapter` have been checked.
268             } while ((parentFolderPosition == 0) && (i < foldersCursorAdapter.getCount()));
269
270             // Select the parent folder in the `Spinner`.
271             folderSpinner.setSelection(parentFolderPosition);
272         }
273
274         // Store the current folder database ID.
275         currentFolderDatabaseId = (int) folderSpinner.getSelectedItemId();
276
277         // Populate the display order `EditText`.
278         displayOrderEditText.setText(String.valueOf(bookmarkCursor.getInt(bookmarkCursor.getColumnIndex(BookmarksDatabaseHelper.DISPLAY_ORDER))));
279
280         // Initially disable the edit button.
281         editButton.setEnabled(false);
282
283         // Update the edit button if the icon selection changes.
284         iconRadioGroup.setOnCheckedChangeListener((group, checkedId) -> {
285             // Update the edit button.
286             updateEditButton();
287         });
288
289         // Update the edit button if the bookmark name changes.
290         nameEditText.addTextChangedListener(new TextWatcher() {
291             @Override
292             public void beforeTextChanged(CharSequence s, int start, int count, int after) {
293                 // Do nothing.
294             }
295
296             @Override
297             public void onTextChanged(CharSequence s, int start, int before, int count) {
298                 // Do nothing.
299             }
300
301             @Override
302             public void afterTextChanged(Editable s) {
303                 // Update the edit button.
304                 updateEditButton();
305             }
306         });
307
308         // Update the edit button if the URL changes.
309         urlEditText.addTextChangedListener(new TextWatcher() {
310             @Override
311             public void beforeTextChanged(CharSequence s, int start, int count, int after) {
312                 // Do nothing.
313             }
314
315             @Override
316             public void onTextChanged(CharSequence s, int start, int before, int count) {
317                 // Do nothing.
318             }
319
320             @Override
321             public void afterTextChanged(Editable s) {
322                 // Update the edit button.
323                 updateEditButton();
324             }
325         });
326
327         // Update the edit button if the folder changes.
328         folderSpinner.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
329             @Override
330             public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
331                 // Update the edit button.
332                 updateEditButton();
333             }
334
335             @Override
336             public void onNothingSelected(AdapterView<?> parent) {
337
338             }
339         });
340
341         // Update the edit button if the display order changes.
342         displayOrderEditText.addTextChangedListener(new TextWatcher() {
343             @Override
344             public void beforeTextChanged(CharSequence s, int start, int count, int after) {
345                 // Do nothing.
346             }
347
348             @Override
349             public void onTextChanged(CharSequence s, int start, int before, int count) {
350                 // Do nothing.
351             }
352
353             @Override
354             public void afterTextChanged(Editable s) {
355                 // Update the edit button.
356                 updateEditButton();
357             }
358         });
359
360         // Allow the `enter` key on the keyboard to save the bookmark from the bookmark name `EditText`.
361         nameEditText.setOnKeyListener((View v, int keyCode, KeyEvent event) -> {
362             // Save the bookmark if the event is a key-down on the "enter" button.
363             if ((event.getAction() == KeyEvent.ACTION_DOWN) && (keyCode == KeyEvent.KEYCODE_ENTER) && editButton.isEnabled()) {  // The enter key was pressed and the edit button is enabled.
364                 // Trigger the `Listener` and return the `DialogFragment` to the parent activity.
365                 editBookmarkDatabaseViewListener.onSaveBookmark(EditBookmarkDatabaseViewDialog.this, bookmarkDatabaseId);
366
367                 // Manually dismiss `alertDialog`.
368                 alertDialog.dismiss();
369
370                 // Consume the event.
371                 return true;
372             } else {  // If any other key was pressed, or if the edit button is currently disabled, do not consume the event.
373                 return false;
374             }
375         });
376
377         // Allow the "enter" key on the keyboard to save the bookmark from the URL `EditText`.
378         urlEditText.setOnKeyListener((View v, int keyCode, KeyEvent event) -> {
379             // Save the bookmark if the event is a key-down on the "enter" button.
380             if ((event.getAction() == KeyEvent.ACTION_DOWN) && (keyCode == KeyEvent.KEYCODE_ENTER) && editButton.isEnabled()) {  // The enter key was pressed and the edit button is enabled.
381                 // Trigger the `Listener` and return the `DialogFragment` to the parent activity.
382                 editBookmarkDatabaseViewListener.onSaveBookmark(EditBookmarkDatabaseViewDialog.this, bookmarkDatabaseId);
383
384                 // Manually dismiss the `AlertDialog`.
385                 alertDialog.dismiss();
386
387                 // Consume the event.
388                 return true;
389             } else { // If any other key was pressed, or if the edit button is currently disabled, do not consume the event.
390                 return false;
391             }
392         });
393
394         // Allow the "enter" key on the keyboard to save the bookmark from the display order `EditText`.
395         displayOrderEditText.setOnKeyListener((View v, int keyCode, KeyEvent event) -> {
396             // Save the bookmark if the event is a key-down on the "enter" button.
397             if ((event.getAction() == KeyEvent.ACTION_DOWN) && (keyCode == KeyEvent.KEYCODE_ENTER) && editButton.isEnabled()) {  // The enter key was pressed and the edit button is enabled.
398                 // Trigger the `Listener` and return the `DialogFragment` to the parent activity.
399                 editBookmarkDatabaseViewListener.onSaveBookmark(EditBookmarkDatabaseViewDialog.this, bookmarkDatabaseId);
400
401                 // Manually dismiss the `AlertDialog`.
402                 alertDialog.dismiss();
403
404                 // Consume the event.
405                 return true;
406             } else { // If any other key was pressed, or if the edit button is currently disabled, do not consume the event.
407                 return false;
408             }
409         });
410
411         // `onCreateDialog` requires the return of an `AlertDialog`.
412         return alertDialog;
413     }
414
415     private void updateEditButton() {
416         // Get the values from the dialog.
417         String newName = nameEditText.getText().toString();
418         String newUrl = urlEditText.getText().toString();
419         int newFolderDatabaseId = (int) folderSpinner.getSelectedItemId();
420         String newDisplayOrder = displayOrderEditText.getText().toString();
421
422         // Has the favorite icon changed?
423         boolean iconChanged = newIconRadioButton.isChecked();
424
425         // Has the name changed?
426         boolean nameChanged = !newName.equals(currentBookmarkName);
427
428         // Has the URL changed?
429         boolean urlChanged = !newUrl.equals(currentUrl);
430
431         // Has the folder changed?
432         boolean folderChanged = newFolderDatabaseId != currentFolderDatabaseId;
433
434         // Has the display order changed?
435         boolean displayOrderChanged = !newDisplayOrder.equals(currentDisplayOrder);
436
437         // Is the display order empty?
438         boolean displayOrderNotEmpty = !newDisplayOrder.isEmpty();
439
440         // Update the enabled status of the edit button.
441         editButton.setEnabled((iconChanged || nameChanged || urlChanged || folderChanged || displayOrderChanged) && displayOrderNotEmpty);
442     }
443 }