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 // Declare a populate blocklists listener.
47 private PopulateBlocklistsListener populateBlocklistsListener;
49 // Declare weak references for the activity and context.
50 private WeakReference<Context> contextWeakReference;
51 private WeakReference<Activity> activityWeakReference;
53 public PopulateBlocklists(Context context, Activity activity) {
54 // Populate the weak reference to the context.
55 contextWeakReference = new WeakReference<>(context);
57 // Populate the weak reference to the activity.
58 activityWeakReference = new WeakReference<>(activity);
60 // Get a handle for the populate blocklists listener from the launching activity.
61 populateBlocklistsListener = (PopulateBlocklistsListener) context;
65 protected ArrayList<ArrayList<List<String[]>>> doInBackground(Void... none) {
66 // Get a handle for the context.
67 Context context = contextWeakReference.get();
69 // Instantiate the blocklist helper.
70 BlocklistHelper blocklistHelper = new BlocklistHelper();
72 // Create a combined array list.
73 ArrayList<ArrayList<List<String[]>>> combinedBlocklists = new ArrayList<>();
75 // Load the blocklists if the context still exists.
76 if (context != null) {
77 // Update the progress.
78 publishProgress(context.getString(R.string.loading_easylist));
81 ArrayList<List<String[]>> easyList = blocklistHelper.parseBlocklist(context.getAssets(), "blocklists/easylist.txt");
84 // Update the progress.
85 publishProgress(context.getString(R.string.loading_easyprivacy));
87 // Populate EasyPrivacy.
88 ArrayList<List<String[]>> easyPrivacy = blocklistHelper.parseBlocklist(context.getAssets(), "blocklists/easyprivacy.txt");
91 // Update the progress.
92 publishProgress(context.getString(R.string.loading_fanboys_annoyance_list));
94 // Populate Fanboy's Annoyance List.
95 ArrayList<List<String[]>> fanboysAnnoyanceList = blocklistHelper.parseBlocklist(context.getAssets(), "blocklists/fanboy-annoyance.txt");
98 // Update the progress.
99 publishProgress(context.getString(R.string.loading_fanboys_social_blocking_list));
101 // Populate Fanboy's Social Blocking List.
102 ArrayList<List<String[]>> fanboysSocialList = blocklistHelper.parseBlocklist(context.getAssets(), "blocklists/fanboy-social.txt");
105 // Update the progress.
106 publishProgress(context.getString(R.string.loading_ultraprivacy));
108 // Populate UltraPrivacy.
109 ArrayList<List<String[]>> ultraPrivacy = blocklistHelper.parseBlocklist(context.getAssets(), "blocklists/ultraprivacy.txt");
112 // Populate the combined array list.
113 combinedBlocklists.add(easyList);
114 combinedBlocklists.add(easyPrivacy);
115 combinedBlocklists.add(fanboysAnnoyanceList);
116 combinedBlocklists.add(fanboysSocialList);
117 combinedBlocklists.add(ultraPrivacy);
120 // Return the combined array list.
121 return combinedBlocklists;
125 protected void onProgressUpdate(String... loadingBlocklist) {
126 // Get a handle for the activity.
127 Activity activity = activityWeakReference.get();
129 // Abort if the activity is gone.
130 if ((activity == null) || activity.isFinishing()) {
134 // Get a handle for the loading blocklist text view.
135 TextView loadingBlocklistTextView = activity.findViewById(R.id.loading_blocklist_textview);
137 // Update the status.
138 loadingBlocklistTextView.setText(loadingBlocklist[0]);
142 protected void onPostExecute(ArrayList<ArrayList<List<String[]>>> combinedBlocklists) {
143 // Get a handle for the activity.
144 Activity activity = activityWeakReference.get();
146 // Abort if the activity is gone.
147 if ((activity == null) || activity.isFinishing()) {
151 // Get handles for the views.
152 Toolbar toolbar = activity.findViewById(R.id.toolbar);
153 DrawerLayout drawerLayout = activity.findViewById(R.id.drawerlayout);
154 LinearLayout tabsLinearLayout = activity.findViewById(R.id.tabs_linearlayout);
155 RelativeLayout loadingBlocklistsRelativeLayout = activity.findViewById(R.id.loading_blocklists_relativelayout);
157 // Show the toolbar and tabs linear layout.
158 toolbar.setVisibility(View.VISIBLE);
159 tabsLinearLayout.setVisibility(View.VISIBLE);
161 // Hide the loading blocklists screen.
162 loadingBlocklistsRelativeLayout.setVisibility(View.GONE);
164 // Enable the sliding drawers.
165 drawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_UNLOCKED);
167 // Add the first tab.
168 populateBlocklistsListener.finishedPopulatingBlocklists(combinedBlocklists);