]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/java/com/stoutner/privacybrowser/asynctasks/PopulateBlocklists.java
4474285f934d00d423471d5c85e86750b0b18ea1
[PrivacyBrowserAndroid.git] / app / src / main / java / com / stoutner / privacybrowser / asynctasks / PopulateBlocklists.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.asynctasks;
21
22 import android.app.Activity;
23 import android.content.Context;
24 import android.os.AsyncTask;
25 import android.view.View;
26 import android.widget.LinearLayout;
27 import android.widget.RelativeLayout;
28 import android.widget.TextView;
29
30 import androidx.appcompat.widget.Toolbar;
31 import androidx.drawerlayout.widget.DrawerLayout;
32
33 import com.stoutner.privacybrowser.R;
34 import com.stoutner.privacybrowser.helpers.BlocklistHelper;
35
36 import java.lang.ref.WeakReference;
37 import java.util.ArrayList;
38 import java.util.List;
39
40 public class PopulateBlocklists extends AsyncTask<Void, String, ArrayList<ArrayList<List<String[]>>>> {
41     // The public interface is used to send information back to the parent activity.
42     public interface PopulateBlocklistsListener {
43         void finishedPopulatingBlocklists(ArrayList<ArrayList<List<String[]>>> combinedBlocklists);
44     }
45
46     // Define a populate blocklists listener.
47     private PopulateBlocklistsListener populateBlocklistsListener;
48
49     // Define weak references for the activity and context.
50     private WeakReference<Context> contextWeakReference;
51     private WeakReference<Activity> activityWeakReference;
52
53     // The public constructor.
54     public PopulateBlocklists(Context context, Activity activity) {
55         // Populate the weak reference to the context.
56         contextWeakReference = new WeakReference<>(context);
57
58         // Populate the weak reference to the activity.
59         activityWeakReference = new WeakReference<>(activity);
60
61         // Get a handle for the populate blocklists listener from the launching activity.
62         populateBlocklistsListener = (PopulateBlocklistsListener) context;
63     }
64
65     // `onPreExecute()` operates on the UI thread.
66     @Override
67     protected void onPreExecute() {
68         // Get a handle for the activity.
69         Activity activity = activityWeakReference.get();
70
71         // Abort if the activity is gone.
72         if ((activity == null) || activity.isFinishing()) {
73             return;
74         }
75
76         // Get handles for the views.
77         Toolbar toolbar = activity.findViewById(R.id.toolbar);
78         LinearLayout tabsLinearLayout = activity.findViewById(R.id.tabs_linearlayout);
79         RelativeLayout loadingBlocklistsRelativeLayout = activity.findViewById(R.id.loading_blocklists_relativelayout);
80
81         // Hide the toolbar and tabs linear layout, which will be visible if this is being run after the app process has been killed in the background.
82         toolbar.setVisibility(View.GONE);
83         tabsLinearLayout.setVisibility(View.GONE);
84
85         // Show the loading blocklists screen.
86         loadingBlocklistsRelativeLayout.setVisibility(View.VISIBLE);
87     }
88
89     @Override
90     protected ArrayList<ArrayList<List<String[]>>> doInBackground(Void... none) {
91         // Exit the AsyncTask if the app has been restarted.
92         if (isCancelled()) {
93             return null;
94         }
95
96         // Get a handle for the context.
97         Context context = contextWeakReference.get();
98
99         // Instantiate the blocklist helper.
100         BlocklistHelper blocklistHelper = new BlocklistHelper();
101
102         // Create a combined array list.
103         ArrayList<ArrayList<List<String[]>>> combinedBlocklists = new ArrayList<>();
104
105         // Load the blocklists if the context still exists.
106         if (context != null) {
107             // Update the progress.
108             publishProgress(context.getString(R.string.loading_easylist));
109
110             // Populate EasyList.
111             ArrayList<List<String[]>> easyList = blocklistHelper.parseBlocklist(context.getAssets(), "blocklists/easylist.txt");
112
113             // Exit the AsyncTask if the app has been restarted.
114             if (isCancelled()) {
115                 return null;
116             }
117
118
119             // Update the progress.
120             publishProgress(context.getString(R.string.loading_easyprivacy));
121
122             // Populate EasyPrivacy.
123             ArrayList<List<String[]>> easyPrivacy = blocklistHelper.parseBlocklist(context.getAssets(), "blocklists/easyprivacy.txt");
124
125             // Exit the AsyncTask if the app has been restarted.
126             if (isCancelled()) {
127                 return null;
128             }
129
130
131
132             // Update the progress.
133             publishProgress(context.getString(R.string.loading_fanboys_annoyance_list));
134
135             // Populate Fanboy's Annoyance List.
136             ArrayList<List<String[]>> fanboysAnnoyanceList = blocklistHelper.parseBlocklist(context.getAssets(), "blocklists/fanboy-annoyance.txt");
137
138             // Exit the AsyncTask if the app has been restarted.
139             if (isCancelled()) {
140                 return null;
141             }
142
143
144
145             // Update the progress.
146             publishProgress(context.getString(R.string.loading_fanboys_social_blocking_list));
147
148             // Populate Fanboy's Social Blocking List.
149             ArrayList<List<String[]>> fanboysSocialList = blocklistHelper.parseBlocklist(context.getAssets(), "blocklists/fanboy-social.txt");
150
151             // Exit the AsyncTask if the app has been restarted.
152             if (isCancelled()) {
153                 return null;
154             }
155
156
157
158             // Update the progress.
159             publishProgress(context.getString(R.string.loading_ultralist));
160
161             // Populate UltraList.
162             ArrayList<List<String[]>> ultraList = blocklistHelper.parseBlocklist(context.getAssets(), "blocklists/ultralist.txt");
163
164             // Exit the AsyncTask if the app has been restarted.
165             if (isCancelled()) {
166                 return null;
167             }
168
169
170
171             // Update the progress.
172             publishProgress(context.getString(R.string.loading_ultraprivacy));
173
174             // Populate UltraPrivacy.
175             ArrayList<List<String[]>> ultraPrivacy = blocklistHelper.parseBlocklist(context.getAssets(), "blocklists/ultraprivacy.txt");
176
177             // Exit the AsyncTask if the app has been restarted.
178             if (isCancelled()) {
179                 return null;
180             }
181
182
183
184             // Populate the combined array list.
185             combinedBlocklists.add(easyList);
186             combinedBlocklists.add(easyPrivacy);
187             combinedBlocklists.add(fanboysAnnoyanceList);
188             combinedBlocklists.add(fanboysSocialList);
189             combinedBlocklists.add(ultraList);
190             combinedBlocklists.add(ultraPrivacy);
191         }
192
193         // Return the combined array list.
194         return combinedBlocklists;
195     }
196
197     @Override
198     protected void onProgressUpdate(String... loadingBlocklist) {
199         // Get a handle for the activity.
200         Activity activity = activityWeakReference.get();
201
202         // Abort if the activity is gone.
203         if ((activity == null) || activity.isFinishing()) {
204             return;
205         }
206
207         // Get a handle for the loading blocklist text view.
208         TextView loadingBlocklistTextView = activity.findViewById(R.id.loading_blocklist_textview);
209
210         // Update the status.
211         loadingBlocklistTextView.setText(loadingBlocklist[0]);
212     }
213
214     @Override
215     protected void onPostExecute(ArrayList<ArrayList<List<String[]>>> combinedBlocklists) {
216         // Get a handle for the activity.
217         Activity activity = activityWeakReference.get();
218
219         // Abort if the activity is gone.
220         if ((activity == null) || activity.isFinishing()) {
221             return;
222         }
223
224         // Get handles for the views.
225         Toolbar toolbar = activity.findViewById(R.id.toolbar);
226         DrawerLayout drawerLayout = activity.findViewById(R.id.drawerlayout);
227         LinearLayout tabsLinearLayout = activity.findViewById(R.id.tabs_linearlayout);
228         RelativeLayout loadingBlocklistsRelativeLayout = activity.findViewById(R.id.loading_blocklists_relativelayout);
229
230         // Show the toolbar and tabs linear layout.
231         toolbar.setVisibility(View.VISIBLE);
232         tabsLinearLayout.setVisibility(View.VISIBLE);
233
234         // Hide the loading blocklists screen.
235         loadingBlocklistsRelativeLayout.setVisibility(View.GONE);
236
237         // Enable the sliding drawers.
238         drawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_UNLOCKED);
239
240         // Add the first tab.
241         populateBlocklistsListener.finishedPopulatingBlocklists(combinedBlocklists);
242     }
243 }