2017-05-04 04:29:33 +10:00
|
|
|
/* Copyright 2017 Andrew Dawson
|
|
|
|
*
|
|
|
|
* This file is a part of Tusky.
|
|
|
|
*
|
|
|
|
* This program 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>. */
|
|
|
|
|
|
|
|
package com.keylesspalace.tusky;
|
|
|
|
|
2017-05-06 02:19:11 +10:00
|
|
|
import android.content.DialogInterface;
|
2017-05-04 04:29:33 +10:00
|
|
|
import android.content.Intent;
|
|
|
|
import android.content.SharedPreferences;
|
|
|
|
import android.content.res.Configuration;
|
|
|
|
import android.graphics.drawable.Drawable;
|
|
|
|
import android.net.Uri;
|
|
|
|
import android.os.Bundle;
|
|
|
|
import android.os.PersistableBundle;
|
|
|
|
import android.support.design.widget.FloatingActionButton;
|
|
|
|
import android.support.design.widget.TabLayout;
|
2017-05-04 08:33:15 +10:00
|
|
|
import android.support.graphics.drawable.VectorDrawableCompat;
|
2017-05-06 01:21:20 +10:00
|
|
|
import android.support.v4.content.ContextCompat;
|
2017-06-07 08:20:55 +10:00
|
|
|
import android.support.v4.content.LocalBroadcastManager;
|
2017-05-04 04:29:33 +10:00
|
|
|
import android.support.v4.view.ViewPager;
|
2017-05-06 02:19:11 +10:00
|
|
|
import android.support.v7.app.AlertDialog;
|
2017-05-24 05:34:31 +10:00
|
|
|
import android.util.Log;
|
2017-05-04 04:29:33 +10:00
|
|
|
import android.view.View;
|
2017-06-20 10:50:40 +10:00
|
|
|
import android.widget.ImageButton;
|
2017-05-04 04:29:33 +10:00
|
|
|
import android.widget.ImageView;
|
|
|
|
|
|
|
|
import com.keylesspalace.tusky.entity.Account;
|
2017-05-05 08:55:34 +10:00
|
|
|
import com.keylesspalace.tusky.pager.TimelinePagerAdapter;
|
2017-06-07 08:20:55 +10:00
|
|
|
import com.keylesspalace.tusky.receiver.TimelineReceiver;
|
2017-05-05 08:55:34 +10:00
|
|
|
import com.keylesspalace.tusky.util.ThemeUtils;
|
2017-05-04 04:29:33 +10:00
|
|
|
import com.mikepenz.google_material_typeface_library.GoogleMaterial;
|
|
|
|
import com.mikepenz.materialdrawer.AccountHeader;
|
|
|
|
import com.mikepenz.materialdrawer.AccountHeaderBuilder;
|
|
|
|
import com.mikepenz.materialdrawer.Drawer;
|
|
|
|
import com.mikepenz.materialdrawer.DrawerBuilder;
|
|
|
|
import com.mikepenz.materialdrawer.model.DividerDrawerItem;
|
|
|
|
import com.mikepenz.materialdrawer.model.PrimaryDrawerItem;
|
|
|
|
import com.mikepenz.materialdrawer.model.ProfileDrawerItem;
|
|
|
|
import com.mikepenz.materialdrawer.model.SecondaryDrawerItem;
|
|
|
|
import com.mikepenz.materialdrawer.model.interfaces.IDrawerItem;
|
|
|
|
import com.mikepenz.materialdrawer.model.interfaces.IProfile;
|
|
|
|
import com.mikepenz.materialdrawer.util.AbstractDrawerImageLoader;
|
|
|
|
import com.mikepenz.materialdrawer.util.DrawerImageLoader;
|
|
|
|
import com.squareup.picasso.Picasso;
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.Stack;
|
|
|
|
|
|
|
|
import retrofit2.Call;
|
|
|
|
import retrofit2.Callback;
|
|
|
|
import retrofit2.Response;
|
|
|
|
|
2017-06-07 07:15:29 +10:00
|
|
|
public class MainActivity extends BaseActivity {
|
2017-05-04 04:29:33 +10:00
|
|
|
private static final String TAG = "MainActivity"; // logging tag
|
|
|
|
protected static int COMPOSE_RESULT = 1;
|
2017-06-20 05:47:53 +10:00
|
|
|
private static final long DRAWER_ITEM_EDIT_PROFILE = 0;
|
|
|
|
private static final long DRAWER_ITEM_FAVOURITES = 1;
|
|
|
|
private static final long DRAWER_ITEM_MUTED_USERS = 2;
|
|
|
|
private static final long DRAWER_ITEM_BLOCKED_USERS = 3;
|
|
|
|
private static final long DRAWER_ITEM_SEARCH = 4;
|
|
|
|
private static final long DRAWER_ITEM_PREFERENCES = 5;
|
|
|
|
private static final long DRAWER_ITEM_ABOUT = 6;
|
|
|
|
private static final long DRAWER_ITEM_LOG_OUT = 7;
|
|
|
|
private static final long DRAWER_ITEM_FOLLOW_REQUESTS = 8;
|
2017-05-04 04:29:33 +10:00
|
|
|
|
|
|
|
private String loggedInAccountId;
|
|
|
|
private String loggedInAccountUsername;
|
|
|
|
private Stack<Integer> pageHistory;
|
|
|
|
private AccountHeader headerResult;
|
|
|
|
private Drawer drawer;
|
2017-06-23 04:59:12 +10:00
|
|
|
private ViewPager viewPager;
|
2017-05-04 04:29:33 +10:00
|
|
|
|
2017-05-05 08:55:34 +10:00
|
|
|
public FloatingActionButton composeButton;
|
2017-05-04 04:29:33 +10:00
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
setContentView(R.layout.activity_main);
|
|
|
|
|
|
|
|
pageHistory = new Stack<>();
|
|
|
|
if (savedInstanceState != null) {
|
|
|
|
List<Integer> restoredHistory = savedInstanceState.getIntegerArrayList("pageHistory");
|
|
|
|
if (restoredHistory != null) {
|
|
|
|
pageHistory.addAll(restoredHistory);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-23 04:59:12 +10:00
|
|
|
FloatingActionButton floatingBtn = (FloatingActionButton) findViewById(R.id.floating_btn);
|
|
|
|
ImageButton drawerToggle = (ImageButton) findViewById(R.id.drawer_toggle);
|
|
|
|
TabLayout tabLayout = (TabLayout) findViewById(R.id.tab_layout);
|
|
|
|
viewPager = (ViewPager) findViewById(R.id.pager);
|
2017-05-04 04:29:33 +10:00
|
|
|
|
|
|
|
floatingBtn.setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
Intent intent = new Intent(getApplicationContext(), ComposeActivity.class);
|
|
|
|
startActivityForResult(intent, COMPOSE_RESULT);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
setupDrawer();
|
2017-06-20 10:50:40 +10:00
|
|
|
|
|
|
|
// Setup the navigation drawer toggle button.
|
|
|
|
ThemeUtils.setDrawableTint(this, drawerToggle.getDrawable(), R.attr.toolbar_icon_tint);
|
|
|
|
drawerToggle.setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
drawer.openDrawer();
|
|
|
|
}
|
|
|
|
});
|
2017-05-04 04:29:33 +10:00
|
|
|
|
|
|
|
/* Fetch user info while we're doing other things. This has to be after setting up the
|
|
|
|
* drawer, though, because its callback touches the header in the drawer. */
|
|
|
|
fetchUserInfo();
|
|
|
|
|
|
|
|
// Setup the tabs and timeline pager.
|
|
|
|
TimelinePagerAdapter adapter = new TimelinePagerAdapter(getSupportFragmentManager());
|
|
|
|
|
|
|
|
int pageMargin = getResources().getDimensionPixelSize(R.dimen.tab_page_margin);
|
|
|
|
viewPager.setPageMargin(pageMargin);
|
|
|
|
Drawable pageMarginDrawable = ThemeUtils.getDrawable(this, R.attr.tab_page_margin_drawable,
|
|
|
|
R.drawable.tab_page_margin_dark);
|
|
|
|
viewPager.setPageMarginDrawable(pageMarginDrawable);
|
|
|
|
viewPager.setAdapter(adapter);
|
|
|
|
|
|
|
|
tabLayout.setupWithViewPager(viewPager);
|
|
|
|
|
|
|
|
int[] tabIcons = {
|
|
|
|
R.drawable.ic_home_24dp,
|
|
|
|
R.drawable.ic_notifications_24dp,
|
|
|
|
R.drawable.ic_local_24dp,
|
|
|
|
R.drawable.ic_public_24dp,
|
|
|
|
};
|
|
|
|
String[] pageTitles = {
|
|
|
|
getString(R.string.title_home),
|
|
|
|
getString(R.string.title_notifications),
|
|
|
|
getString(R.string.title_public_local),
|
|
|
|
getString(R.string.title_public_federated),
|
|
|
|
};
|
|
|
|
for (int i = 0; i < 4; i++) {
|
|
|
|
TabLayout.Tab tab = tabLayout.getTabAt(i);
|
|
|
|
tab.setIcon(tabIcons[i]);
|
|
|
|
tab.setContentDescription(pageTitles[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
tabLayout.addOnTabSelectedListener(new TabLayout.OnTabSelectedListener() {
|
|
|
|
@Override
|
|
|
|
public void onTabSelected(TabLayout.Tab tab) {
|
|
|
|
viewPager.setCurrentItem(tab.getPosition());
|
|
|
|
|
|
|
|
if (pageHistory.isEmpty()) {
|
|
|
|
pageHistory.push(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pageHistory.contains(tab.getPosition())) {
|
|
|
|
pageHistory.remove(pageHistory.indexOf(tab.getPosition()));
|
|
|
|
}
|
|
|
|
|
|
|
|
pageHistory.push(tab.getPosition());
|
|
|
|
tintTab(tab, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onTabUnselected(TabLayout.Tab tab) {
|
|
|
|
tintTab(tab, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onTabReselected(TabLayout.Tab tab) {}
|
|
|
|
});
|
|
|
|
|
|
|
|
Intent intent = getIntent();
|
|
|
|
|
|
|
|
int tabSelected = 0;
|
|
|
|
if (intent != null) {
|
|
|
|
int tabPosition = intent.getIntExtra("tab_position", 0);
|
|
|
|
if (tabPosition != 0) {
|
|
|
|
TabLayout.Tab tab = tabLayout.getTabAt(tabPosition);
|
|
|
|
if (tab != null) {
|
|
|
|
tab.select();
|
|
|
|
tabSelected = tabPosition;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (int i = 0; i < 4; i++) {
|
|
|
|
tintTab(tabLayout.getTabAt(i), i == tabSelected);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Setup push notifications
|
|
|
|
if (arePushNotificationsEnabled()) {
|
|
|
|
enablePushNotifications();
|
|
|
|
} else {
|
|
|
|
disablePushNotifications();
|
|
|
|
}
|
|
|
|
|
|
|
|
composeButton = floatingBtn;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onResume() {
|
|
|
|
super.onResume();
|
|
|
|
|
|
|
|
SharedPreferences notificationPreferences = getApplicationContext()
|
|
|
|
.getSharedPreferences("Notifications", MODE_PRIVATE);
|
|
|
|
notificationPreferences.edit()
|
|
|
|
.putString("current", "[]")
|
|
|
|
.apply();
|
|
|
|
|
2017-05-20 10:00:57 +10:00
|
|
|
pushNotificationClient.clearNotifications(this);
|
2017-05-04 04:29:33 +10:00
|
|
|
|
|
|
|
/* After editing a profile, the profile header in the navigation drawer needs to be
|
|
|
|
* refreshed */
|
|
|
|
SharedPreferences preferences = getPrivatePreferences();
|
|
|
|
if (preferences.getBoolean("refreshProfileHeader", false)) {
|
|
|
|
fetchUserInfo();
|
|
|
|
preferences.edit()
|
|
|
|
.putBoolean("refreshProfileHeader", false)
|
|
|
|
.apply();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onSaveInstanceState(Bundle outState, PersistableBundle outPersistentState) {
|
|
|
|
ArrayList<Integer> pageHistoryList = new ArrayList<>();
|
|
|
|
pageHistoryList.addAll(pageHistory);
|
|
|
|
outState.putIntegerArrayList("pageHistory", pageHistoryList);
|
|
|
|
super.onSaveInstanceState(outState, outPersistentState);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void tintTab(TabLayout.Tab tab, boolean tinted) {
|
|
|
|
int color = (tinted) ? R.attr.tab_icon_selected_tint : R.attr.toolbar_icon_tint;
|
|
|
|
ThemeUtils.setDrawableTint(this, tab.getIcon(), color);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void setupDrawer() {
|
|
|
|
headerResult = new AccountHeaderBuilder()
|
|
|
|
.withActivity(this)
|
|
|
|
.withSelectionListEnabledForSingleProfile(false)
|
|
|
|
.withDividerBelowHeader(false)
|
|
|
|
.withOnAccountHeaderProfileImageListener(new AccountHeader.OnAccountHeaderProfileImageListener() {
|
|
|
|
@Override
|
|
|
|
public boolean onProfileImageClick(View view, IProfile profile, boolean current) {
|
|
|
|
if (current && loggedInAccountId != null) {
|
|
|
|
Intent intent = new Intent(MainActivity.this, AccountActivity.class);
|
|
|
|
intent.putExtra("id", loggedInAccountId);
|
|
|
|
startActivity(intent);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onProfileImageLongClick(View view, IProfile profile, boolean current) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.withCompactStyle(true)
|
|
|
|
.build();
|
|
|
|
headerResult.getView()
|
|
|
|
.findViewById(R.id.material_drawer_account_header_current)
|
|
|
|
.setContentDescription(getString(R.string.action_view_profile));
|
|
|
|
|
|
|
|
DrawerImageLoader.init(new AbstractDrawerImageLoader() {
|
|
|
|
@Override
|
|
|
|
public void set(ImageView imageView, Uri uri, Drawable placeholder) {
|
|
|
|
Picasso.with(imageView.getContext()).load(uri).placeholder(placeholder).into(imageView);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void cancel(ImageView imageView) {
|
|
|
|
Picasso.with(imageView.getContext()).cancelRequest(imageView);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-05-04 08:33:15 +10:00
|
|
|
VectorDrawableCompat muteDrawable = VectorDrawableCompat.create(getResources(),
|
|
|
|
R.drawable.ic_mute_24dp, getTheme());
|
2017-05-04 04:29:33 +10:00
|
|
|
ThemeUtils.setDrawableTint(this, muteDrawable, R.attr.toolbar_icon_tint);
|
|
|
|
|
|
|
|
drawer = new DrawerBuilder()
|
|
|
|
.withActivity(this)
|
|
|
|
//.withToolbar(toolbar)
|
|
|
|
.withAccountHeader(headerResult)
|
|
|
|
.withHasStableIds(true)
|
|
|
|
.withSelectedItem(-1)
|
|
|
|
.addDrawerItems(
|
2017-06-20 05:47:53 +10:00
|
|
|
new PrimaryDrawerItem().withIdentifier(DRAWER_ITEM_EDIT_PROFILE).withName(getString(R.string.action_edit_profile)).withSelectable(false).withIcon(GoogleMaterial.Icon.gmd_person),
|
|
|
|
new PrimaryDrawerItem().withIdentifier(DRAWER_ITEM_FAVOURITES).withName(getString(R.string.action_view_favourites)).withSelectable(false).withIcon(GoogleMaterial.Icon.gmd_star),
|
|
|
|
new PrimaryDrawerItem().withIdentifier(DRAWER_ITEM_MUTED_USERS).withName(getString(R.string.action_view_mutes)).withSelectable(false).withIcon(muteDrawable),
|
|
|
|
new PrimaryDrawerItem().withIdentifier(DRAWER_ITEM_BLOCKED_USERS).withName(getString(R.string.action_view_blocks)).withSelectable(false).withIcon(GoogleMaterial.Icon.gmd_block),
|
|
|
|
new PrimaryDrawerItem().withIdentifier(DRAWER_ITEM_SEARCH).withName(getString(R.string.action_search)).withSelectable(false).withIcon(GoogleMaterial.Icon.gmd_search),
|
2017-05-04 04:29:33 +10:00
|
|
|
new DividerDrawerItem(),
|
2017-06-20 05:47:53 +10:00
|
|
|
new SecondaryDrawerItem().withIdentifier(DRAWER_ITEM_PREFERENCES).withName(getString(R.string.action_view_preferences)).withSelectable(false).withIcon(GoogleMaterial.Icon.gmd_settings),
|
|
|
|
new SecondaryDrawerItem().withIdentifier(DRAWER_ITEM_ABOUT).withName(getString(R.string.about_title_activity)).withSelectable(false).withIcon(GoogleMaterial.Icon.gmd_info),
|
|
|
|
new SecondaryDrawerItem().withIdentifier(DRAWER_ITEM_LOG_OUT).withName(getString(R.string.action_logout)).withSelectable(false).withIcon(GoogleMaterial.Icon.gmd_exit_to_app)
|
2017-05-04 04:29:33 +10:00
|
|
|
)
|
|
|
|
.withOnDrawerItemClickListener(new Drawer.OnDrawerItemClickListener() {
|
|
|
|
@Override
|
|
|
|
public boolean onItemClick(View view, int position, IDrawerItem drawerItem) {
|
|
|
|
if (drawerItem != null) {
|
|
|
|
long drawerItemIdentifier = drawerItem.getIdentifier();
|
|
|
|
|
2017-06-20 05:47:53 +10:00
|
|
|
if (drawerItemIdentifier == DRAWER_ITEM_EDIT_PROFILE) {
|
2017-05-04 04:29:33 +10:00
|
|
|
Intent intent = new Intent(MainActivity.this, EditProfileActivity.class);
|
|
|
|
startActivity(intent);
|
2017-06-20 05:47:53 +10:00
|
|
|
} else if (drawerItemIdentifier == DRAWER_ITEM_FAVOURITES) {
|
2017-05-04 04:29:33 +10:00
|
|
|
Intent intent = new Intent(MainActivity.this, FavouritesActivity.class);
|
|
|
|
startActivity(intent);
|
2017-06-20 05:47:53 +10:00
|
|
|
} else if (drawerItemIdentifier == DRAWER_ITEM_MUTED_USERS) {
|
2017-05-04 04:29:33 +10:00
|
|
|
Intent intent = new Intent(MainActivity.this, AccountListActivity.class);
|
|
|
|
intent.putExtra("type", AccountListActivity.Type.MUTES);
|
|
|
|
startActivity(intent);
|
2017-06-20 05:47:53 +10:00
|
|
|
} else if (drawerItemIdentifier == DRAWER_ITEM_BLOCKED_USERS) {
|
2017-05-04 04:29:33 +10:00
|
|
|
Intent intent = new Intent(MainActivity.this, AccountListActivity.class);
|
|
|
|
intent.putExtra("type", AccountListActivity.Type.BLOCKS);
|
|
|
|
startActivity(intent);
|
2017-06-20 05:47:53 +10:00
|
|
|
} else if (drawerItemIdentifier == DRAWER_ITEM_SEARCH) {
|
2017-06-19 18:18:39 +10:00
|
|
|
Intent intent = new Intent(MainActivity.this, SearchActivity.class);
|
2017-05-04 04:29:33 +10:00
|
|
|
startActivity(intent);
|
2017-06-20 05:47:53 +10:00
|
|
|
} else if (drawerItemIdentifier == DRAWER_ITEM_PREFERENCES) {
|
2017-06-19 18:18:39 +10:00
|
|
|
Intent intent = new Intent(MainActivity.this, PreferencesActivity.class);
|
2017-05-01 06:09:09 +10:00
|
|
|
startActivity(intent);
|
2017-06-20 05:47:53 +10:00
|
|
|
} else if (drawerItemIdentifier == DRAWER_ITEM_ABOUT) {
|
2017-06-19 18:18:39 +10:00
|
|
|
Intent intent = new Intent(MainActivity.this, AboutActivity.class);
|
|
|
|
startActivity(intent);
|
2017-06-20 05:47:53 +10:00
|
|
|
} else if (drawerItemIdentifier == DRAWER_ITEM_LOG_OUT) {
|
2017-06-19 18:18:39 +10:00
|
|
|
logout();
|
2017-06-20 05:47:53 +10:00
|
|
|
} else if (drawerItemIdentifier == DRAWER_ITEM_FOLLOW_REQUESTS) {
|
2017-05-04 04:29:33 +10:00
|
|
|
Intent intent = new Intent(MainActivity.this, AccountListActivity.class);
|
|
|
|
intent.putExtra("type", AccountListActivity.Type.FOLLOW_REQUESTS);
|
|
|
|
startActivity(intent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.build();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void logout() {
|
2017-05-06 02:19:11 +10:00
|
|
|
new AlertDialog.Builder(this)
|
|
|
|
.setTitle(R.string.action_logout)
|
|
|
|
.setMessage(R.string.action_logout_confirm)
|
|
|
|
.setPositiveButton(android.R.string.yes, new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
if (arePushNotificationsEnabled()) disablePushNotifications();
|
2017-05-04 04:29:33 +10:00
|
|
|
|
2017-05-06 02:19:11 +10:00
|
|
|
getPrivatePreferences().edit()
|
|
|
|
.remove("domain")
|
|
|
|
.remove("accessToken")
|
2017-05-09 05:00:33 +10:00
|
|
|
.remove("appAccountId")
|
2017-05-06 02:19:11 +10:00
|
|
|
.apply();
|
2017-05-04 04:29:33 +10:00
|
|
|
|
2017-05-06 02:19:11 +10:00
|
|
|
Intent intent = new Intent(MainActivity.this, LoginActivity.class);
|
|
|
|
startActivity(intent);
|
|
|
|
finish();
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.setNegativeButton(android.R.string.no, null)
|
|
|
|
.show();
|
2017-05-04 04:29:33 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
private void fetchUserInfo() {
|
|
|
|
SharedPreferences preferences = getPrivatePreferences();
|
|
|
|
final String domain = preferences.getString("domain", null);
|
|
|
|
String id = preferences.getString("loggedInAccountId", null);
|
|
|
|
String username = preferences.getString("loggedInAccountUsername", null);
|
|
|
|
|
|
|
|
if (id != null && username != null) {
|
|
|
|
loggedInAccountId = id;
|
|
|
|
loggedInAccountUsername = username;
|
|
|
|
}
|
|
|
|
|
2017-06-23 04:01:25 +10:00
|
|
|
mastodonApi.accountVerifyCredentials().enqueue(new Callback<Account>() {
|
2017-05-04 04:29:33 +10:00
|
|
|
@Override
|
|
|
|
public void onResponse(Call<Account> call, Response<Account> response) {
|
|
|
|
if (!response.isSuccessful()) {
|
|
|
|
onFetchUserInfoFailure(new Exception(response.message()));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
onFetchUserInfoSuccess(response.body(), domain);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onFailure(Call<Account> call, Throwable t) {
|
|
|
|
onFetchUserInfoFailure((Exception) t);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onFetchUserInfoSuccess(Account me, String domain) {
|
|
|
|
// Add the header image and avatar from the account, into the navigation drawer header.
|
|
|
|
headerResult.clear();
|
|
|
|
|
|
|
|
ImageView background = headerResult.getHeaderBackgroundView();
|
|
|
|
int backgroundWidth = background.getWidth();
|
|
|
|
int backgroundHeight = background.getHeight();
|
|
|
|
if (backgroundWidth == 0 || backgroundHeight == 0) {
|
|
|
|
/* The header ImageView may not be layed out when the verify credentials call returns so
|
|
|
|
* measure the dimensions and use those. */
|
|
|
|
background.measure(View.MeasureSpec.EXACTLY, View.MeasureSpec.EXACTLY);
|
|
|
|
backgroundWidth = background.getMeasuredWidth();
|
|
|
|
backgroundHeight = background.getMeasuredHeight();
|
|
|
|
}
|
|
|
|
|
2017-05-06 01:21:20 +10:00
|
|
|
background.setBackgroundColor(ContextCompat.getColor(this, R.color.window_background_dark));
|
|
|
|
|
2017-05-04 04:29:33 +10:00
|
|
|
Picasso.with(MainActivity.this)
|
|
|
|
.load(me.header)
|
2017-05-05 02:07:59 +10:00
|
|
|
.placeholder(R.drawable.account_header_default)
|
2017-05-04 04:29:33 +10:00
|
|
|
.resize(backgroundWidth, backgroundHeight)
|
|
|
|
.centerCrop()
|
|
|
|
.into(background);
|
|
|
|
|
|
|
|
headerResult.addProfiles(
|
|
|
|
new ProfileDrawerItem()
|
|
|
|
.withName(me.getDisplayName())
|
|
|
|
.withEmail(String.format("%s@%s", me.username, domain))
|
|
|
|
.withIcon(me.avatar)
|
|
|
|
);
|
|
|
|
|
|
|
|
// Show follow requests in the menu, if this is a locked account.
|
|
|
|
if (me.locked) {
|
|
|
|
PrimaryDrawerItem followRequestsItem = new PrimaryDrawerItem()
|
2017-06-20 05:47:53 +10:00
|
|
|
.withIdentifier(DRAWER_ITEM_FOLLOW_REQUESTS)
|
2017-05-04 04:29:33 +10:00
|
|
|
.withName(R.string.action_view_follow_requests)
|
|
|
|
.withSelectable(false)
|
|
|
|
.withIcon(GoogleMaterial.Icon.gmd_person_add);
|
|
|
|
drawer.addItemAtPosition(followRequestsItem, 3);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update the current login information.
|
|
|
|
loggedInAccountId = me.id;
|
|
|
|
loggedInAccountUsername = me.username;
|
|
|
|
getPrivatePreferences().edit()
|
|
|
|
.putString("loggedInAccountId", loggedInAccountId)
|
|
|
|
.putString("loggedInAccountUsername", loggedInAccountUsername)
|
|
|
|
.putBoolean("loggedInAccountLocked", me.locked)
|
|
|
|
.apply();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onFetchUserInfoFailure(Exception exception) {
|
|
|
|
Log.e(TAG, "Failed to fetch user info. " + exception.getMessage());
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
|
|
|
|
if (requestCode == COMPOSE_RESULT && resultCode == ComposeActivity.RESULT_OK) {
|
2017-06-07 08:20:55 +10:00
|
|
|
Intent intent = new Intent(TimelineReceiver.Types.STATUS_COMPOSED);
|
|
|
|
LocalBroadcastManager.getInstance(getApplicationContext())
|
|
|
|
.sendBroadcast(intent);
|
2017-05-04 04:29:33 +10:00
|
|
|
}
|
|
|
|
super.onActivityResult(requestCode, resultCode, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onBackPressed() {
|
|
|
|
if(drawer != null && drawer.isDrawerOpen()) {
|
|
|
|
drawer.closeDrawer();
|
|
|
|
} else if(pageHistory.size() < 2) {
|
|
|
|
super.onBackPressed();
|
|
|
|
} else {
|
|
|
|
pageHistory.pop();
|
|
|
|
viewPager.setCurrentItem(pageHistory.peek());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fix for GitHub issues #190, #259 (MainActivity won't restart on screen rotation.)
|
|
|
|
@Override
|
|
|
|
public void onConfigurationChanged(Configuration newConfig) {
|
|
|
|
super.onConfigurationChanged(newConfig);
|
|
|
|
}
|
2017-03-11 12:50:49 +11:00
|
|
|
}
|