summaryrefslogtreecommitdiff
path: root/org.fox.ttcomics/src/main/java/org/fox/ttcomics2/MainActivity.java
blob: 409e06db2acb97e61cbb9dc997ae743effd7cefd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
package org.fox.ttcomics2;


import android.Manifest;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.app.AlertDialog;
import android.app.ProgressDialog;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.IntentFilter;
import android.content.SharedPreferences;
import android.content.pm.PackageManager;
import android.os.Bundle;
import android.support.v4.app.ActivityCompat;
import android.support.v4.app.FragmentTransaction;
import android.support.v4.content.ContextCompat;
import android.support.v7.app.ActionBar;
import android.support.v7.widget.Toolbar;
import android.util.Log;
import android.view.Menu;
import android.view.MenuItem;

import org.fox.ttcomics2.sync.SyncClient;
import org.fox.ttcomics2.sync.SyncFolderService;

import java.io.File;
import java.util.Arrays;

import it.neokree.materialtabs.MaterialTab;
import it.neokree.materialtabs.MaterialTabHost;
import it.neokree.materialtabs.MaterialTabListener;

public class MainActivity extends CommonActivity implements MaterialTabListener, SharedPreferences.OnSharedPreferenceChangeListener {
	private final String TAG = this.getClass().getSimpleName();
    private final static int TRIAL_DAYS = 7;
	
	private int m_selectedTab;
    private MaterialTabHost tabHost;
	private ProgressDialog m_progressDialog;
	private boolean m_needRestart;

	private BroadcastReceiver m_serviceReceiver = new BroadcastReceiver() {
		@Override
		public void onReceive(Context context, Intent intent) {
			if (SyncFolderService.INTENT_ACTION_FILE_PROCESSED.equals(intent.getAction())) {

				int count = intent.getExtras().getInt("count");
				int index = intent.getExtras().getInt("index");

				m_progressDialog.setCancelable(false);
				m_progressDialog.setTitle("Synchronizing...");
				m_progressDialog.setMessage("File " + index + " of " + count);
				m_progressDialog.show();
			}

			if (SyncFolderService.INTENT_ACTION_SCAN_COMPLETE.equals(intent.getAction())) {
				m_progressDialog.dismiss();
				updateComicsList();
			}

		}
	};

	@SuppressLint("NewApi")
	@Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

		m_prefs.registerOnSharedPreferenceChangeListener(this);

        setContentView(R.layout.activity_main);
		setSupportActionBar((Toolbar) findViewById(R.id.toolbar));
        setTitle(R.string.app_name);

		m_progressDialog = new ProgressDialog(this);

		tabHost = (MaterialTabHost) this.findViewById(R.id.materialTabHost);

    	if (savedInstanceState == null) {
			m_selectedTab = getIntent().getIntExtra("selectedTab", 0);

			//Log.d(TAG, "selTab=" + m_selectedTab);

			ComicListFragment frag = new ComicListFragment();
			frag.setMode(m_selectedTab);

            if (getIntent().getStringExtra("baseDir") != null) {
            	frag.setBaseDirectory(getIntent().getStringExtra("baseDir"));
            } else {
				frag.setBaseDirectory(m_prefs.getString("comics_directory", ""));
			}

			FragmentTransaction ft = getSupportFragmentManager().beginTransaction();
			ft.replace(R.id.comics_list, frag, FRAG_COMICS_LIST);
			ft.commit();
		} else {
        	//m_baseDirectory = savedInstanceState.getString("baseDir");
    	}

		m_selectedTab = -1;

    	tabHost.addTab(tabHost.newTab()
                .setText(getString(R.string.tab_all_comics))
                .setTabListener(this));

        tabHost.addTab(tabHost.newTab()
    			.setText(getString(R.string.tab_unread))
    			.setTabListener(this));

        tabHost.addTab(tabHost.newTab()
                .setText(getString(R.string.tab_unfinished))
                .setTabListener(this));

        tabHost.addTab(tabHost.newTab()
    			.setText(getString(R.string.tab_read))
    			.setTabListener(this));

    	if (savedInstanceState != null) {
    		m_selectedTab = savedInstanceState.getInt("selectedTab");
    	} else {
    		m_selectedTab = getIntent().getIntExtra("selectedTab", 0);
    	}

        if (m_selectedTab != -1)
   		    tabHost.setSelectedNavigationItem(m_selectedTab);

		if (ContextCompat.checkSelfPermission(this, Manifest.permission.READ_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED) {

			ActivityCompat.requestPermissions(this,
					new String[]{Manifest.permission.READ_EXTERNAL_STORAGE},
					REQUEST_PERMISSION_READ_EXTERNAL_STORAGE);

		} else {
			setupDefaultDirectory();
		}
	}

	private void setupDefaultDirectory() {
		if (m_prefs.getString("comics_directory", null) == null) {
			AlertDialog.Builder builder = new AlertDialog.Builder(this);
			builder.setMessage(R.string.dialog_need_prefs_message)
					.setCancelable(false)
					.setPositiveButton(R.string.dialog_need_prefs_preferences, new DialogInterface.OnClickListener() {
						public void onClick(DialogInterface dialog, int id) {
							Intent intent = new Intent(MainActivity.this,
									PreferencesActivity.class);
							startActivityForResult(intent, 0);
						}
					})
					.setNegativeButton(R.string.cancel, new DialogInterface.OnClickListener() {
						public void onClick(DialogInterface dialog, int id) {
							dialog.cancel();
						}
					});
			AlertDialog alert = builder.create();
			alert.show();
		}
	}

	@Override
	public void onRequestPermissionsResult(int requestCode,
										   String permissions[], int[] grantResults) {
		switch (requestCode) {
			case REQUEST_PERMISSION_READ_EXTERNAL_STORAGE: {
				// If request is cancelled, the result arrays are empty.
				if (grantResults.length > 0
						&& grantResults[0] == PackageManager.PERMISSION_GRANTED) {

					// TODO workaround for android 6.0 bug, maybe needs to be removed in the future

					android.os.Process.killProcess(android.os.Process.myPid());

				} else {
					toast("Storage permission denied, the app might not be able to access your comic archives.");
				}

				return;
			}
		}
	}

	@Override
	public void onResume() {
		super.onResume();

		IntentFilter filter = new IntentFilter();
		filter.addAction(SyncFolderService.INTENT_ACTION_FILE_PROCESSED);
		filter.addAction(SyncFolderService.INTENT_ACTION_SCAN_COMPLETE);
		filter.addCategory(Intent.CATEGORY_DEFAULT);

		registerReceiver(m_serviceReceiver, filter);

		//if (m_enableFab != m_prefs.getBoolean("enable_fab", true)) {

		if (m_needRestart) {
			Log.d(TAG, "shared preferences changed, restarting");

			finish();
			startActivity(getIntent());
		}
	}

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        getMenuInflater().inflate(R.menu.activity_main, menu);

		menu.findItem(R.id.menu_sync_directory).setVisible(m_prefs.getBoolean("use_position_sync", false) && m_syncClient.hasOwner());

        return true;
    }

    @Override
	public void onSaveInstanceState(Bundle out) {
		super.onSaveInstanceState(out);

		out.putInt("selectedTab", m_selectedTab);
	}

	public int getMode() {
		return m_selectedTab;
	}

    public boolean onOptionsItemSelected(MenuItem item) {
		switch (item.getItemId()) {
		case R.id.menu_sync_directory:
			if (true) {
				AlertDialog.Builder builder = new AlertDialog.Builder(this);
				builder.setMessage("Get synchronized last read page for listed files?")
						.setCancelable(true)
						.setPositiveButton("Continue", new DialogInterface.OnClickListener() {
							public void onClick(DialogInterface dialog, int id) {
								ComicListFragment frag = (ComicListFragment) getSupportFragmentManager().findFragmentByTag(FRAG_COMICS_LIST);

								if (frag != null && frag.isAdded()) {
									String baseDir = frag.getBaseDirectory();

									updateLastRead(baseDir);
								}

							}
						})
						.setNegativeButton(R.string.cancel, new DialogInterface.OnClickListener() {
							public void onClick(DialogInterface dialog, int id) {
								dialog.cancel();
							}
						});
				AlertDialog alert = builder.create();
				alert.show();

			}
			return true;
		case android.R.id.home:
			onBackPressed();
			return true;
		default:
			Log.d(TAG,
					"onOptionsItemSelected, unhandled id=" + item.getItemId());
			return super.onOptionsItemSelected(item);
		}
	}

	private void updateLastRead(String baseDir) {
		Intent serviceIntent = new Intent(MainActivity.this, SyncFolderService.class);
		serviceIntent.putExtra("baseDir", baseDir);
		startService(serviceIntent);
	}

	@Override
	public void onComicArchiveSelected(String fileName) {
		super.onComicArchiveSelected(fileName);
		
		File file = new File(fileName);
		
		if (file.isDirectory()) {

			Intent intent = new Intent(MainActivity.this,
					MainActivity.class);

			intent.putExtra("selectedTab", m_selectedTab);
			intent.putExtra("baseDir", fileName);

			startActivity(intent);

		} else if (file.canRead()) {
			Intent intent = new Intent(MainActivity.this,
					ViewComicActivity.class);

			intent.putExtra("fileName", fileName);

			startActivityForResult(intent, REQUEST_VIEWCOMIC); 
		} else {
			toast(getString(R.string.error_cant_open_file, fileName));

			ComicListFragment frag = (ComicListFragment) getSupportFragmentManager().findFragmentByTag(FRAG_COMICS_LIST);

			if (frag != null && frag.isAdded()) {
				frag.rescan();
			}
		}
	}

	@Override
	protected void onActivityResult(int requestCode, int resultCode, Intent intent) {
	    if (requestCode == REQUEST_VIEWCOMIC && resultCode == Activity.RESULT_OK) {
			String fileName = intent.getStringExtra("fileName");
	    	Log.d(TAG, "finished viewing comic: " + fileName);
	    	
	    	if (m_prefs.getBoolean("use_position_sync", false) && m_syncClient.hasOwner()) {
	    		toast(R.string.sync_uploading);
	    		m_syncClient.setPosition(sha1(new File(fileName).getName()), m_databaseHelper.getLastPosition(fileName));
	    	}

			updateComicsList();
	    }
	    
	    System.gc();
	    
	    super.onActivityResult(requestCode, resultCode, intent);
	}

    @Override
    public void onTabSelected(MaterialTab tab) {

        tabHost.setSelectedNavigationItem(tab.getPosition());

        FragmentTransaction sft = getSupportFragmentManager().beginTransaction();

        if (m_selectedTab != tab.getPosition() && m_selectedTab != -1) {

			ComicListFragment frag = (ComicListFragment) getSupportFragmentManager().findFragmentByTag(FRAG_COMICS_LIST);

			if (frag != null && frag.isAdded()) {
				frag.setMode(tab.getPosition());
				frag.refresh();
			}
        }

        m_selectedTab = tab.getPosition();

        sft.commit();
    }

    @Override
    public void onTabReselected(MaterialTab materialTab) {

    }

    @Override
    public void onTabUnselected(MaterialTab materialTab) {

    }

	private void updateComicsList() {
		ComicListFragment frag = (ComicListFragment) getSupportFragmentManager().findFragmentByTag(FRAG_COMICS_LIST);

		if (frag != null && frag.isAdded()) {
			frag.refresh();
		}
	}

	public void resetProgress(final String fileName) {

		if (m_prefs.getBoolean("use_position_sync", false) && m_syncClient.hasOwner()) {
			m_databaseHelper.setLastPosition(fileName, 0);
			m_databaseHelper.setLastMaxPosition(fileName, 0);
			updateComicsList();

			if (m_prefs.getBoolean("use_position_sync", false) && m_syncClient.hasOwner()) {
				AlertDialog.Builder builder = new AlertDialog.Builder(this);
				builder.setMessage(R.string.reset_remove_synced_progress)
						.setCancelable(true)
						.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() {
							public void onClick(DialogInterface dialog, int id) {
								m_syncClient.clearData(sha1(new File(fileName).getName()), new SyncClient.DataClearedListener() {
									@Override
									public void onDataCleared(boolean result) {
										updateComicsList();
									}
								});
							}
						})
						.setNegativeButton(android.R.string.cancel, new DialogInterface.OnClickListener() {
							public void onClick(DialogInterface dialog, int id) {
								dialog.cancel();
							}
						});
				AlertDialog alert = builder.create();
				alert.show();
			}

		}

	}

	@Override
	public void onPause() {
		super.onPause();

		unregisterReceiver(m_serviceReceiver);
	}

	@Override
	public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key) {
		String[] filter = new String[] { "enable_fab", "comics_directory", "use_position_sync" };

		m_needRestart = Arrays.asList(filter).indexOf(key) != -1;
	}
}