]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/free/java/com/stoutner/privacybrowser/dialogs/AdConsentDialog.java
94f8a91e60019bf40c10be40bb7eef602a8d9d93
[PrivacyBrowserAndroid.git] / app / src / free / java / com / stoutner / privacybrowser / dialogs / AdConsentDialog.java
1 /*
2  * Copyright © 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.app.AlertDialog;
23 import android.app.Dialog;
24 import android.app.DialogFragment;
25 import android.content.DialogInterface;
26 import android.os.Build;
27 import android.os.Bundle;
28
29 import com.stoutner.privacybrowser.R;
30 import com.stoutner.privacybrowser.activities.MainWebViewActivity;
31 import com.stoutner.privacybrowser.helpers.AdConsentDatabaseHelper;
32 import com.stoutner.privacybrowser.helpers.AdHelper;
33
34 public class AdConsentDialog extends DialogFragment {
35     @Override
36     public Dialog onCreateDialog(Bundle savedInstanceState) {
37         // Use a builder to create the alert dialog.
38         AlertDialog.Builder dialogBuilder;
39
40         // Set the style and the icon according to the theme.
41         if (MainWebViewActivity.darkTheme) {
42             dialogBuilder = new AlertDialog.Builder(getActivity(), R.style.PrivacyBrowserAlertDialogDark);
43             dialogBuilder.setIcon(R.drawable.block_ads_enabled_dark);
44         } else {
45             dialogBuilder = new AlertDialog.Builder(getActivity(), R.style.PrivacyBrowserAlertDialogLight);
46             dialogBuilder.setIcon(R.drawable.block_ads_enabled_light);
47         }
48
49         // Initialize the bookmarks database helper.  The `0` specifies a database version, but that is ignored and set instead using a constant in `AdConsentDatabaseHelper`.
50         // `getContext()` can be used instead of `getActivity.getApplicationContext()` on the minimum API >= 23.
51         AdConsentDatabaseHelper adConsentDatabaseHelper = new AdConsentDatabaseHelper(getActivity().getApplicationContext(), null, null, 0);
52
53         // Set the title.
54         dialogBuilder.setTitle(R.string.ad_consent);
55
56         // Set the text.
57         dialogBuilder.setMessage(R.string.ad_consent_text);
58
59         // Configure the close button.
60         dialogBuilder.setNegativeButton(R.string.close_browser, (DialogInterface dialog, int which) -> {
61             // Update the ad consent database.
62             adConsentDatabaseHelper.updateAdConsent(false);
63
64             // Close the browser.  `finishAndRemoveTask` also removes Privacy Browser from the recent app list.
65             if (Build.VERSION.SDK_INT >= 21) {
66                 getActivity().finishAndRemoveTask();
67             } else {
68                 getActivity().finish();
69             }
70
71             // Remove the terminated program from RAM.  The status code is `0`.
72             System.exit(0);
73         });
74
75         // Configure the accept button.
76         dialogBuilder.setPositiveButton(R.string.accept_ads, (DialogInterface dialog, int which) -> {
77             // Update the ad consent database.
78             adConsentDatabaseHelper.updateAdConsent(true);
79
80             // Load an ad.  `getContext()` can be used instead of `getActivity.getApplicationContext()` on the minimum API >= 23.
81             AdHelper.loadAd(getActivity().findViewById(R.id.adview), getActivity().getApplicationContext(), getString(R.string.ad_unit_id));
82         });
83
84         // Return the alert dialog.
85         return dialogBuilder.create();
86     }
87
88     // Close Privacy Browser Free if the dialog is cancelled without selecting a button (by tapping on the background).
89     @Override
90     public void onCancel(DialogInterface dialogInterface) {
91         // Initialize the bookmarks database helper.  The `0` specifies a database version, but that is ignored and set instead using a constant in `AdConsentDatabaseHelper`.
92         // `getContext()` can be used instead of `getActivity.getApplicationContext()` on the minimum API >= 23.
93         AdConsentDatabaseHelper adConsentDatabaseHelper = new AdConsentDatabaseHelper(getActivity().getApplicationContext(), null, null, 0);
94
95         // Update the ad consent database.
96         adConsentDatabaseHelper.updateAdConsent(false);
97
98         // Close the browser.  `finishAndRemoveTask` also removes Privacy Browser from the recent app list.
99         if (Build.VERSION.SDK_INT >= 21) {
100             getActivity().finishAndRemoveTask();
101         } else {
102             getActivity().finish();
103         }
104
105         // Remove the terminated program from RAM.  The status code is `0`.
106         System.exit(0);
107     }
108 }