]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/java/com/stoutner/privacybrowser/dialogs/AddDomainDialog.java
edffc63fb8b3d069ce2f08818ee1daac19c4af21
[PrivacyBrowserAndroid.git] / app / src / main / java / com / stoutner / privacybrowser / dialogs / AddDomainDialog.java
1 /*
2  * Copyright © 2017-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.net.Uri;
28 import android.os.Bundle;
29 // We have to use `AppCompatDialogFragment` instead of `DialogFragment` or an error is produced on API <= 22.
30 import android.support.annotation.NonNull;
31 import android.support.v7.app.AppCompatDialogFragment;
32 import android.text.Editable;
33 import android.text.TextWatcher;
34 import android.view.KeyEvent;
35 import android.view.View;
36 import android.view.WindowManager;
37 import android.widget.Button;
38 import android.widget.EditText;
39 import android.widget.TextView;
40
41 import com.stoutner.privacybrowser.R;
42 import com.stoutner.privacybrowser.activities.MainWebViewActivity;
43 import com.stoutner.privacybrowser.helpers.DomainsDatabaseHelper;
44
45 public class AddDomainDialog extends AppCompatDialogFragment {
46     // The public interface is used to send information back to the parent activity.
47     public interface AddDomainListener {
48         void onAddDomain(AppCompatDialogFragment dialogFragment);
49     }
50
51     // `addDomainListener` is used in `onAttach()` and `onCreateDialog()`.
52     private AddDomainListener addDomainListener;
53
54
55     public void onAttach(Context context) {
56         // Run the default commands.
57         super.onAttach(context);
58
59         // Get a handle for the listener from the launching context.
60         addDomainListener = (AddDomainListener) context;
61     }
62
63     // `@SuppressLing("InflateParams")` removes the warning about using `null` as the parent view group when inflating the `AlertDialog`.
64     @SuppressLint("InflateParams")
65     @Override
66     @NonNull
67     public Dialog onCreateDialog(Bundle savedInstanceState) {
68         // Use an alert dialog builder to create the alert dialog.
69         AlertDialog.Builder dialogBuilder;
70
71         // Set the style according to the theme.
72         if (MainWebViewActivity.darkTheme) {
73             dialogBuilder = new AlertDialog.Builder(getActivity(), R.style.PrivacyBrowserAlertDialogDark);
74         } else {
75             dialogBuilder = new AlertDialog.Builder(getActivity(), R.style.PrivacyBrowserAlertDialogLight);
76         }
77
78         // Set the title.
79         dialogBuilder.setTitle(R.string.add_domain);
80
81         // Remove the incorrect lint warning below that `getActivity()` might be null.
82         assert getActivity() != null;
83
84         // Set the view.  The parent view is `null` because it will be assigned by the alert dialog.
85         dialogBuilder.setView(getActivity().getLayoutInflater().inflate(R.layout.add_domain_dialog, null));
86
87         // Set a listener for the negative button.
88         dialogBuilder.setNegativeButton(R.string.cancel, (DialogInterface dialog, int which) -> {
89             // Do nothing.  The `AlertDialog` will close automatically.
90         });
91
92         // Set a listener for the positive button.
93         dialogBuilder.setPositiveButton(R.string.add, (DialogInterface dialog, int which) -> {
94             // Return the `DialogFragment` to the parent activity on add.
95             addDomainListener.onAddDomain(AddDomainDialog.this);
96         });
97
98         // Create an alert dialog from the builder.
99         final AlertDialog alertDialog = dialogBuilder.create();
100
101         // Remove the warning below that `getWindow()` might be null.
102         assert alertDialog.getWindow() != null;
103
104         // Disable screenshots if not allowed.
105         if (!MainWebViewActivity.allowScreenshots) {
106             alertDialog.getWindow().addFlags(WindowManager.LayoutParams.FLAG_SECURE);
107         }
108
109         // Show the keyboard when the alert dialog is displayed on the screen.
110         alertDialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
111
112         // The alert dialog must be shown before the contents can be edited.
113         alertDialog.show();
114
115         // Initialize `domainsDatabaseHelper`.  The `0` specifies the database version, but that is ignored and set instead using a constant in `DomainsDatabaseHelper`.
116         final DomainsDatabaseHelper domainsDatabaseHelper = new DomainsDatabaseHelper(getContext(), null, null, 0);
117
118         // Get handles for the views in the alert dialog.
119         final EditText addDomainEditText = alertDialog.findViewById(R.id.domain_name_edittext);
120         final TextView domainNameAlreadyExistsTextView = alertDialog.findViewById(R.id.domain_name_already_exists_textview);
121         final Button addButton = alertDialog.getButton(AlertDialog.BUTTON_POSITIVE);
122
123         //  Update the status of the warning text and the add button.
124         addDomainEditText.addTextChangedListener(new TextWatcher() {
125             @Override
126             public void beforeTextChanged(CharSequence s, int start, int count, int after) {
127                 // Do nothing.
128             }
129
130             @Override
131             public void onTextChanged(CharSequence s, int start, int before, int count) {
132                 // Do nothing.
133             }
134
135             @Override
136             public void afterTextChanged(Editable s) {
137                 if (domainsDatabaseHelper.getCursorForDomainName(addDomainEditText.getText().toString()).getCount() >0) {  // The domain already exists.
138                     // Show the warning text.
139                     domainNameAlreadyExistsTextView.setVisibility(View.VISIBLE);
140
141                     // Disable the add button.
142                     addButton.setEnabled(false);
143                 } else {  // The domain do not yet exist.
144                     // Hide the warning text.
145                     domainNameAlreadyExistsTextView.setVisibility(View.GONE);
146
147                     // Enable the add button.
148                     addButton.setEnabled(true);
149                 }
150             }
151         });
152
153         // Get the current domain from `formattedUrlString`.
154         Uri currentUri = Uri.parse(MainWebViewActivity.formattedUrlString);
155         addDomainEditText.setText(currentUri.getHost());
156
157         // Allow the `enter` key on the keyboard to create the domain from `add_domain_edittext`.
158         addDomainEditText.setOnKeyListener((View view, int keyCode, KeyEvent event) -> {
159             // If the event is a key-down on the `enter` key, select the `PositiveButton` `Add`.
160             if ((keyCode == KeyEvent.KEYCODE_ENTER) && (event.getAction() == KeyEvent.ACTION_DOWN)) {
161                 // Trigger `addDomainListener` and return the `DialogFragment` to the parent activity.
162                 addDomainListener.onAddDomain(AddDomainDialog.this);
163                 // Manually dismiss the `AlertDialog`.
164                 alertDialog.dismiss();
165                 // Consume the event.
166                 return true;
167             } else { // If any other key was pressed, do not consume the event.
168                 return false;
169             }
170         });
171
172         // `onCreateDialog()` requires the return of an `AlertDialog`.
173         return alertDialog;
174     }
175 }