2 * Copyright © 2019 Soren Stoutner <soren@stoutner.com>.
4 * This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
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.
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.
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/>.
20 package com.stoutner.privacybrowser.asynctasks;
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;
30 import androidx.appcompat.widget.Toolbar;
31 import androidx.drawerlayout.widget.DrawerLayout;
33 import com.stoutner.privacybrowser.R;
34 import com.stoutner.privacybrowser.helpers.BlocklistHelper;
36 import java.lang.ref.WeakReference;
37 import java.util.ArrayList;
38 import java.util.List;
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);
46 // Define a populate blocklists listener.
47 private PopulateBlocklistsListener populateBlocklistsListener;
49 // Define weak references for the activity and context.
50 private WeakReference<Context> contextWeakReference;
51 private WeakReference<Activity> activityWeakReference;
53 // The public constructor.
54 public PopulateBlocklists(Context context, Activity activity) {
55 // Populate the weak reference to the context.
56 contextWeakReference = new WeakReference<>(context);
58 // Populate the weak reference to the activity.
59 activityWeakReference = new WeakReference<>(activity);
61 // Get a handle for the populate blocklists listener from the launching activity.
62 populateBlocklistsListener = (PopulateBlocklistsListener) context;
65 // `onPreExecute()` operates on the UI thread.
67 protected void onPreExecute() {
68 // Get a handle for the activity.
69 Activity activity = activityWeakReference.get();
71 // Abort if the activity is gone.
72 if ((activity == null) || activity.isFinishing()) {
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);
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);
85 // Show the loading blocklists screen.
86 loadingBlocklistsRelativeLayout.setVisibility(View.VISIBLE);
90 protected ArrayList<ArrayList<List<String[]>>> doInBackground(Void... none) {
91 // Get a handle for the context.
92 Context context = contextWeakReference.get();
94 // Instantiate the blocklist helper.
95 BlocklistHelper blocklistHelper = new BlocklistHelper();
97 // Create a combined array list.
98 ArrayList<ArrayList<List<String[]>>> combinedBlocklists = new ArrayList<>();
100 // Load the blocklists if the context still exists.
101 if (context != null) {
102 // Update the progress.
103 publishProgress(context.getString(R.string.loading_easylist));
105 // Populate EasyList.
106 ArrayList<List<String[]>> easyList = blocklistHelper.parseBlocklist(context.getAssets(), "blocklists/easylist.txt");
109 // Update the progress.
110 publishProgress(context.getString(R.string.loading_easyprivacy));
112 // Populate EasyPrivacy.
113 ArrayList<List<String[]>> easyPrivacy = blocklistHelper.parseBlocklist(context.getAssets(), "blocklists/easyprivacy.txt");
116 // Update the progress.
117 publishProgress(context.getString(R.string.loading_fanboys_annoyance_list));
119 // Populate Fanboy's Annoyance List.
120 ArrayList<List<String[]>> fanboysAnnoyanceList = blocklistHelper.parseBlocklist(context.getAssets(), "blocklists/fanboy-annoyance.txt");
123 // Update the progress.
124 publishProgress(context.getString(R.string.loading_fanboys_social_blocking_list));
126 // Populate Fanboy's Social Blocking List.
127 ArrayList<List<String[]>> fanboysSocialList = blocklistHelper.parseBlocklist(context.getAssets(), "blocklists/fanboy-social.txt");
130 // Update the progress.
131 publishProgress(context.getString(R.string.loading_ultralist));
133 // Populate UltraList.
134 ArrayList<List<String[]>> ultraList = blocklistHelper.parseBlocklist(context.getAssets(), "blocklists/ultralist.txt");
136 // Update the progress.
137 publishProgress(context.getString(R.string.loading_ultraprivacy));
139 // Populate UltraPrivacy.
140 ArrayList<List<String[]>> ultraPrivacy = blocklistHelper.parseBlocklist(context.getAssets(), "blocklists/ultraprivacy.txt");
143 // Populate the combined array list.
144 combinedBlocklists.add(easyList);
145 combinedBlocklists.add(easyPrivacy);
146 combinedBlocklists.add(fanboysAnnoyanceList);
147 combinedBlocklists.add(fanboysSocialList);
148 combinedBlocklists.add(ultraList);
149 combinedBlocklists.add(ultraPrivacy);
152 // Return the combined array list.
153 return combinedBlocklists;
157 protected void onProgressUpdate(String... loadingBlocklist) {
158 // Get a handle for the activity.
159 Activity activity = activityWeakReference.get();
161 // Abort if the activity is gone.
162 if ((activity == null) || activity.isFinishing()) {
166 // Get a handle for the loading blocklist text view.
167 TextView loadingBlocklistTextView = activity.findViewById(R.id.loading_blocklist_textview);
169 // Update the status.
170 loadingBlocklistTextView.setText(loadingBlocklist[0]);
174 protected void onPostExecute(ArrayList<ArrayList<List<String[]>>> combinedBlocklists) {
175 // Get a handle for the activity.
176 Activity activity = activityWeakReference.get();
178 // Abort if the activity is gone.
179 if ((activity == null) || activity.isFinishing()) {
183 // Get handles for the views.
184 Toolbar toolbar = activity.findViewById(R.id.toolbar);
185 DrawerLayout drawerLayout = activity.findViewById(R.id.drawerlayout);
186 LinearLayout tabsLinearLayout = activity.findViewById(R.id.tabs_linearlayout);
187 RelativeLayout loadingBlocklistsRelativeLayout = activity.findViewById(R.id.loading_blocklists_relativelayout);
189 // Show the toolbar and tabs linear layout.
190 toolbar.setVisibility(View.VISIBLE);
191 tabsLinearLayout.setVisibility(View.VISIBLE);
193 // Hide the loading blocklists screen.
194 loadingBlocklistsRelativeLayout.setVisibility(View.GONE);
196 // Enable the sliding drawers.
197 drawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_UNLOCKED);
199 // Add the first tab.
200 populateBlocklistsListener.finishedPopulatingBlocklists(combinedBlocklists);