2017-01-20 19:09:10 +11:00
|
|
|
/* Copyright 2017 Andrew Dawson
|
|
|
|
*
|
|
|
|
* This file is part of Tusky.
|
|
|
|
*
|
|
|
|
* Tusky is free software: you can redistribute it and/or modify it under the terms of the GNU
|
|
|
|
* General Public License as published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
|
|
|
|
* the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
|
|
|
* Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with Tusky. If not, see
|
|
|
|
* <http://www.gnu.org/licenses/>. */
|
|
|
|
|
2017-01-03 10:30:27 +11:00
|
|
|
package com.keylesspalace.tusky;
|
|
|
|
|
2017-01-25 15:35:54 +11:00
|
|
|
import android.app.AlarmManager;
|
|
|
|
import android.app.PendingIntent;
|
2017-01-03 10:30:27 +11:00
|
|
|
import android.content.Context;
|
|
|
|
import android.content.Intent;
|
|
|
|
import android.content.SharedPreferences;
|
2017-01-25 15:35:54 +11:00
|
|
|
import android.os.SystemClock;
|
2017-01-08 09:24:02 +11:00
|
|
|
import android.support.design.widget.TabLayout;
|
|
|
|
import android.support.v4.view.ViewPager;
|
2017-01-03 10:30:27 +11:00
|
|
|
import android.support.v7.app.AppCompatActivity;
|
|
|
|
import android.os.Bundle;
|
|
|
|
import android.support.v7.widget.Toolbar;
|
2017-01-31 15:51:02 +11:00
|
|
|
import android.util.Log;
|
2017-01-03 10:30:27 +11:00
|
|
|
import android.view.Menu;
|
|
|
|
import android.view.MenuItem;
|
|
|
|
|
2017-01-28 14:33:43 +11:00
|
|
|
import com.android.volley.AuthFailureError;
|
|
|
|
import com.android.volley.Request;
|
|
|
|
import com.android.volley.Response;
|
|
|
|
import com.android.volley.VolleyError;
|
|
|
|
import com.android.volley.toolbox.JsonObjectRequest;
|
|
|
|
|
|
|
|
import org.json.JSONException;
|
|
|
|
import org.json.JSONObject;
|
|
|
|
|
|
|
|
import java.util.HashMap;
|
|
|
|
import java.util.Map;
|
|
|
|
|
2017-01-08 09:24:02 +11:00
|
|
|
public class MainActivity extends AppCompatActivity {
|
2017-01-31 15:51:02 +11:00
|
|
|
private static final String TAG = "MainActivity"; // logging tag
|
|
|
|
|
2017-01-25 15:35:54 +11:00
|
|
|
private AlarmManager alarmManager;
|
|
|
|
private PendingIntent serviceAlarmIntent;
|
|
|
|
private boolean notificationServiceEnabled;
|
2017-01-28 14:33:43 +11:00
|
|
|
private String loggedInAccountId;
|
|
|
|
private String loggedInAccountUsername;
|
2017-01-25 15:35:54 +11:00
|
|
|
|
2017-01-03 10:30:27 +11:00
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
setContentView(R.layout.activity_main);
|
2017-01-08 09:24:02 +11:00
|
|
|
|
2017-01-28 14:33:43 +11:00
|
|
|
// Fetch user info while we're doing other things.
|
|
|
|
fetchUserInfo();
|
|
|
|
|
2017-01-03 10:30:27 +11:00
|
|
|
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
|
|
|
|
setSupportActionBar(toolbar);
|
|
|
|
|
2017-01-25 15:35:54 +11:00
|
|
|
// Setup the tabs and timeline pager.
|
2017-01-08 09:24:02 +11:00
|
|
|
TimelinePagerAdapter adapter = new TimelinePagerAdapter(getSupportFragmentManager());
|
|
|
|
String[] pageTitles = {
|
|
|
|
getString(R.string.title_home),
|
|
|
|
getString(R.string.title_notifications),
|
|
|
|
getString(R.string.title_public)
|
2017-01-04 11:23:57 +11:00
|
|
|
};
|
2017-01-08 09:24:02 +11:00
|
|
|
adapter.setPageTitles(pageTitles);
|
|
|
|
ViewPager viewPager = (ViewPager) findViewById(R.id.pager);
|
|
|
|
viewPager.setAdapter(adapter);
|
|
|
|
TabLayout tabLayout = (TabLayout) findViewById(R.id.tab_layout);
|
|
|
|
tabLayout.setupWithViewPager(viewPager);
|
2017-01-25 15:35:54 +11:00
|
|
|
|
|
|
|
// Retrieve notification update preference.
|
|
|
|
SharedPreferences preferences = getSharedPreferences(
|
|
|
|
getString(R.string.preferences_file_key), Context.MODE_PRIVATE);
|
2017-01-31 15:51:02 +11:00
|
|
|
notificationServiceEnabled = preferences.getBoolean("notificationService", false);
|
2017-01-25 15:35:54 +11:00
|
|
|
long notificationCheckInterval =
|
|
|
|
preferences.getLong("notificationCheckInterval", 5 * 60 * 1000);
|
2017-01-31 15:51:02 +11:00
|
|
|
// Start up the PullNotificationsService.
|
2017-01-25 15:35:54 +11:00
|
|
|
alarmManager = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
|
2017-01-31 15:51:02 +11:00
|
|
|
Intent intent = new Intent(this, PullNotificationService.class);
|
2017-01-25 15:35:54 +11:00
|
|
|
final int SERVICE_REQUEST_CODE = 8574603; // This number is arbitrary.
|
|
|
|
serviceAlarmIntent = PendingIntent.getService(this, SERVICE_REQUEST_CODE, intent,
|
|
|
|
PendingIntent.FLAG_UPDATE_CURRENT);
|
|
|
|
if (notificationServiceEnabled) {
|
|
|
|
alarmManager.setRepeating(AlarmManager.ELAPSED_REALTIME_WAKEUP,
|
|
|
|
SystemClock.elapsedRealtime(), notificationCheckInterval, serviceAlarmIntent);
|
|
|
|
} else {
|
|
|
|
alarmManager.cancel(serviceAlarmIntent);
|
|
|
|
}
|
2017-01-31 15:51:02 +11:00
|
|
|
|
|
|
|
/* @Unused: for Firebase Push Notifications
|
|
|
|
Log.d(TAG, "token " + FirebaseInstanceId.getInstance().getToken());
|
|
|
|
|
|
|
|
// Check if it's necessary to register for push notifications for this instance.
|
|
|
|
boolean registered = preferences.getBoolean("firebaseRegistered", false);
|
|
|
|
if (!registered) {
|
|
|
|
String registrationId = preferences.getString("firebaseRegistrationId", null);
|
|
|
|
if (registrationId == null) {
|
|
|
|
registrationId = FirebaseInstanceId.getInstance().getToken();
|
|
|
|
}
|
|
|
|
sendRegistrationToServer(registrationId, true);
|
|
|
|
}
|
|
|
|
*/
|
2017-01-03 10:30:27 +11:00
|
|
|
}
|
|
|
|
|
2017-01-28 14:33:43 +11:00
|
|
|
private void fetchUserInfo() {
|
|
|
|
SharedPreferences preferences = getSharedPreferences(
|
|
|
|
getString(R.string.preferences_file_key), Context.MODE_PRIVATE);
|
|
|
|
String domain = preferences.getString("domain", null);
|
|
|
|
final String accessToken = preferences.getString("accessToken", null);
|
|
|
|
String id = preferences.getString("loggedInAccountId", null);
|
|
|
|
String username = preferences.getString("loggedInAccountUsername", null);
|
|
|
|
if (id != null && username != null) {
|
|
|
|
loggedInAccountId = id;
|
|
|
|
loggedInAccountUsername = username;
|
|
|
|
} else {
|
|
|
|
String endpoint = getString(R.string.endpoint_verify_credentials);
|
|
|
|
String url = "https://" + domain + endpoint;
|
|
|
|
JsonObjectRequest request = new JsonObjectRequest(Request.Method.GET, url, null,
|
|
|
|
new Response.Listener<JSONObject>() {
|
|
|
|
@Override
|
|
|
|
public void onResponse(JSONObject response) {
|
2017-01-31 15:51:02 +11:00
|
|
|
String username;
|
|
|
|
String id;
|
2017-01-28 14:33:43 +11:00
|
|
|
try {
|
2017-01-31 15:51:02 +11:00
|
|
|
id = response.getString("id");
|
|
|
|
username = response.getString("acct");
|
2017-01-28 14:33:43 +11:00
|
|
|
} catch (JSONException e) {
|
2017-01-31 15:51:02 +11:00
|
|
|
onFetchUserInfoFailure();
|
|
|
|
return;
|
2017-01-28 14:33:43 +11:00
|
|
|
}
|
2017-01-31 15:51:02 +11:00
|
|
|
onFetchUserInfoSuccess(id, username);
|
2017-01-28 14:33:43 +11:00
|
|
|
}
|
|
|
|
},
|
|
|
|
new Response.ErrorListener() {
|
|
|
|
@Override
|
|
|
|
public void onErrorResponse(VolleyError error) {
|
|
|
|
onFetchUserInfoFailure();
|
|
|
|
}
|
|
|
|
}) {
|
|
|
|
@Override
|
|
|
|
public Map<String, String> getHeaders() throws AuthFailureError {
|
|
|
|
Map<String, String> headers = new HashMap<>();
|
|
|
|
headers.put("Authorization", "Bearer " + accessToken);
|
|
|
|
return headers;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
VolleySingleton.getInstance(this).addToRequestQueue(request);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onFetchUserInfoSuccess(String id, String username) {
|
|
|
|
loggedInAccountId = id;
|
|
|
|
loggedInAccountUsername = username;
|
|
|
|
SharedPreferences preferences = getSharedPreferences(
|
|
|
|
getString(R.string.preferences_file_key), Context.MODE_PRIVATE);
|
|
|
|
SharedPreferences.Editor editor = preferences.edit();
|
|
|
|
editor.putString("loggedInAccountId", loggedInAccountId);
|
|
|
|
editor.putString("loggedInAccountUsername", loggedInAccountUsername);
|
|
|
|
editor.apply();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onFetchUserInfoFailure() {
|
|
|
|
//TODO: help
|
2017-01-31 15:51:02 +11:00
|
|
|
Log.e(TAG, "Failed to fetch the logged-in user's info.");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* @Unused: For Firebase push notifications, useless for now.
|
|
|
|
private void sendRegistrationToServer(String token, final boolean register) {
|
|
|
|
SharedPreferences preferences = getSharedPreferences(
|
|
|
|
getString(R.string.preferences_file_key), Context.MODE_PRIVATE);
|
|
|
|
String domain = preferences.getString("domain", null);
|
|
|
|
final String accessToken = preferences.getString("accessToken", null);
|
|
|
|
|
|
|
|
String endpoint;
|
|
|
|
if (register) {
|
|
|
|
endpoint = getString(R.string.endpoint_devices_register);
|
|
|
|
} else {
|
|
|
|
endpoint = getString(R.string.endpoint_devices_unregister);
|
|
|
|
}
|
|
|
|
String url = "https://" + domain + endpoint;
|
|
|
|
JSONObject formData = new JSONObject();
|
|
|
|
try {
|
|
|
|
formData.put("registration_id", token);
|
|
|
|
} catch (JSONException e) {
|
|
|
|
onSendRegistrationToServerFailure();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
JsonObjectRequest request = new JsonObjectRequest(Request.Method.POST, url, formData,
|
|
|
|
new Response.Listener<JSONObject>() {
|
|
|
|
@Override
|
|
|
|
public void onResponse(JSONObject response) {
|
|
|
|
onSendRegistrationToServerSuccess(response, register);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
new Response.ErrorListener() {
|
|
|
|
@Override
|
|
|
|
public void onErrorResponse(VolleyError error) {
|
|
|
|
onSendRegistrationToServerFailure();
|
|
|
|
}
|
|
|
|
}) {
|
|
|
|
@Override
|
|
|
|
public Map<String, String> getHeaders() throws AuthFailureError {
|
|
|
|
Map<String, String> headers = new HashMap<>();
|
|
|
|
headers.put("Authorization", "Bearer " + accessToken);
|
|
|
|
return headers;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
VolleySingleton.getInstance(this).addToRequestQueue(request);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onSendRegistrationToServerSuccess(JSONObject response, boolean register) {
|
|
|
|
String registeredWord;
|
|
|
|
if (register) {
|
|
|
|
registeredWord = "registration";
|
|
|
|
} else {
|
|
|
|
registeredWord = "unregistration";
|
|
|
|
}
|
|
|
|
Log.d(TAG, String.format("Firebase %s is confirmed with the Mastodon instance. %s",
|
|
|
|
registeredWord, response.toString()));
|
|
|
|
SharedPreferences preferences = getSharedPreferences(
|
|
|
|
getString(R.string.preferences_file_key), Context.MODE_PRIVATE);
|
|
|
|
SharedPreferences.Editor editor = preferences.edit();
|
|
|
|
editor.putBoolean("firebaseRegistered", register);
|
|
|
|
editor.apply();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onSendRegistrationToServerFailure() {
|
|
|
|
Log.d(TAG, "Firebase registration with the Mastodon instance failed");
|
2017-01-28 14:33:43 +11:00
|
|
|
}
|
2017-01-31 15:51:02 +11:00
|
|
|
*/
|
2017-01-28 14:33:43 +11:00
|
|
|
|
2017-01-08 09:24:02 +11:00
|
|
|
private void compose() {
|
|
|
|
Intent intent = new Intent(this, ComposeActivity.class);
|
|
|
|
startActivity(intent);
|
2017-01-03 10:30:27 +11:00
|
|
|
}
|
|
|
|
|
2017-01-28 14:33:43 +11:00
|
|
|
private void viewProfile() {
|
|
|
|
Intent intent = new Intent(this, AccountActivity.class);
|
|
|
|
intent.putExtra("id", loggedInAccountId);
|
|
|
|
startActivity(intent);
|
|
|
|
}
|
|
|
|
|
2017-01-03 10:30:27 +11:00
|
|
|
private void logOut() {
|
2017-01-25 15:35:54 +11:00
|
|
|
if (notificationServiceEnabled) {
|
|
|
|
alarmManager.cancel(serviceAlarmIntent);
|
|
|
|
}
|
2017-01-03 10:30:27 +11:00
|
|
|
SharedPreferences preferences = getSharedPreferences(
|
|
|
|
getString(R.string.preferences_file_key), Context.MODE_PRIVATE);
|
|
|
|
SharedPreferences.Editor editor = preferences.edit();
|
|
|
|
editor.remove("domain");
|
|
|
|
editor.remove("accessToken");
|
|
|
|
editor.apply();
|
|
|
|
Intent intent = new Intent(this, SplashActivity.class);
|
|
|
|
startActivity(intent);
|
|
|
|
finish();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onCreateOptionsMenu(Menu menu) {
|
|
|
|
getMenuInflater().inflate(R.menu.main_toolbar, menu);
|
|
|
|
return super.onCreateOptionsMenu(menu);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onOptionsItemSelected(MenuItem item) {
|
|
|
|
switch (item.getItemId()) {
|
2017-01-08 09:24:02 +11:00
|
|
|
case R.id.action_compose: {
|
|
|
|
compose();
|
|
|
|
return true;
|
|
|
|
}
|
2017-01-28 14:33:43 +11:00
|
|
|
case R.id.action_profile: {
|
|
|
|
viewProfile();
|
|
|
|
return true;
|
|
|
|
}
|
2017-01-03 10:30:27 +11:00
|
|
|
case R.id.action_logout: {
|
|
|
|
logOut();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2017-01-08 09:24:02 +11:00
|
|
|
return super.onOptionsItemSelected(item);
|
2017-01-03 10:30:27 +11:00
|
|
|
}
|
|
|
|
}
|