208 lines
7.7 KiB
Java
208 lines
7.7 KiB
Java
package org.joinmastodon.android;
|
|
|
|
import android.Manifest;
|
|
import android.app.Application;
|
|
import android.app.Fragment;
|
|
import android.content.Intent;
|
|
import android.content.pm.PackageManager;
|
|
import android.net.Uri;
|
|
import android.os.Build;
|
|
import android.os.Bundle;
|
|
import android.util.Log;
|
|
import android.widget.Toast;
|
|
|
|
import org.joinmastodon.android.api.ObjectValidationException;
|
|
import org.joinmastodon.android.api.requests.search.GetSearchResults;
|
|
import org.joinmastodon.android.api.session.AccountSession;
|
|
import org.joinmastodon.android.api.session.AccountSessionManager;
|
|
import org.joinmastodon.android.fragments.ComposeFragment;
|
|
import org.joinmastodon.android.fragments.HomeFragment;
|
|
import org.joinmastodon.android.fragments.ProfileFragment;
|
|
import org.joinmastodon.android.fragments.SplashFragment;
|
|
import org.joinmastodon.android.fragments.ThreadFragment;
|
|
import org.joinmastodon.android.fragments.onboarding.AccountActivationFragment;
|
|
import org.joinmastodon.android.model.Notification;
|
|
import org.joinmastodon.android.model.SearchResults;
|
|
import org.joinmastodon.android.ui.utils.UiUtils;
|
|
import org.joinmastodon.android.updater.GithubSelfUpdater;
|
|
import org.parceler.Parcels;
|
|
|
|
import java.lang.reflect.InvocationTargetException;
|
|
|
|
import androidx.annotation.Nullable;
|
|
import me.grishka.appkit.FragmentStackActivity;
|
|
import me.grishka.appkit.Nav;
|
|
import me.grishka.appkit.api.Callback;
|
|
import me.grishka.appkit.api.ErrorResponse;
|
|
|
|
public class MainActivity extends FragmentStackActivity{
|
|
@Override
|
|
protected void onCreate(@Nullable Bundle savedInstanceState){
|
|
UiUtils.setUserPreferredTheme(this);
|
|
super.onCreate(savedInstanceState);
|
|
|
|
if(savedInstanceState==null){
|
|
restartHomeFragment();
|
|
}
|
|
|
|
if(BuildConfig.BUILD_TYPE.startsWith("appcenter")){
|
|
// Call the appcenter SDK wrapper through reflection because it is only present in beta builds
|
|
try{
|
|
Class.forName("org.joinmastodon.android.AppCenterWrapper").getMethod("init", Application.class).invoke(null, getApplication());
|
|
}catch(ClassNotFoundException|NoSuchMethodException|IllegalAccessException|InvocationTargetException ignore){}
|
|
}else if(GithubSelfUpdater.needSelfUpdating()){
|
|
GithubSelfUpdater.getInstance().maybeCheckForUpdates();
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected void onNewIntent(Intent intent){
|
|
super.onNewIntent(intent);
|
|
if(intent.getBooleanExtra("fromNotification", false)){
|
|
String accountID=intent.getStringExtra("accountID");
|
|
AccountSession accountSession;
|
|
try{
|
|
accountSession=AccountSessionManager.getInstance().getAccount(accountID);
|
|
}catch(IllegalStateException x){
|
|
return;
|
|
}
|
|
if(intent.hasExtra("notification")){
|
|
Notification notification=Parcels.unwrap(intent.getParcelableExtra("notification"));
|
|
showFragmentForNotification(notification, accountID);
|
|
}else{
|
|
AccountSessionManager.getInstance().setLastActiveAccountID(accountID);
|
|
Bundle args=new Bundle();
|
|
args.putString("account", accountID);
|
|
args.putString("tab", "notifications");
|
|
Fragment fragment=new HomeFragment();
|
|
fragment.setArguments(args);
|
|
showFragmentClearingBackStack(fragment);
|
|
}
|
|
}else if(intent.getBooleanExtra("compose", false)){
|
|
showCompose();
|
|
}else if(Intent.ACTION_VIEW.equals(intent.getAction())){
|
|
handleURL(intent.getData(), null);
|
|
}/*else if(intent.hasExtra(PackageInstaller.EXTRA_STATUS) && GithubSelfUpdater.needSelfUpdating()){
|
|
GithubSelfUpdater.getInstance().handleIntentFromInstaller(intent, this);
|
|
}*/
|
|
}
|
|
|
|
public void handleURL(Uri uri, String accountID){
|
|
if(uri==null)
|
|
return;
|
|
if(!"https".equals(uri.getScheme()) && !"http".equals(uri.getScheme()))
|
|
return;
|
|
AccountSession session;
|
|
if(accountID==null)
|
|
session=AccountSessionManager.getInstance().getLastActiveAccount();
|
|
else
|
|
session=AccountSessionManager.get(accountID);
|
|
if(session==null || !session.activated)
|
|
return;
|
|
openSearchQuery(uri.toString(), session.getID(), R.string.opening_link, false);
|
|
}
|
|
|
|
public void openSearchQuery(String q, String accountID, int progressText, boolean fromSearch){
|
|
new GetSearchResults(q, null, true, null, 0, 0)
|
|
.setCallback(new Callback<>(){
|
|
@Override
|
|
public void onSuccess(SearchResults result){
|
|
Bundle args=new Bundle();
|
|
args.putString("account", accountID);
|
|
if(result.statuses!=null && !result.statuses.isEmpty()){
|
|
args.putParcelable("status", Parcels.wrap(result.statuses.get(0)));
|
|
Nav.go(MainActivity.this, ThreadFragment.class, args);
|
|
}else if(result.accounts!=null && !result.accounts.isEmpty()){
|
|
args.putParcelable("profileAccount", Parcels.wrap(result.accounts.get(0)));
|
|
Nav.go(MainActivity.this, ProfileFragment.class, args);
|
|
}else{
|
|
Toast.makeText(MainActivity.this, fromSearch ? R.string.no_search_results : R.string.link_not_supported, Toast.LENGTH_SHORT).show();
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void onError(ErrorResponse error){
|
|
error.showToast(MainActivity.this);
|
|
}
|
|
})
|
|
.wrapProgress(this, progressText, true)
|
|
.exec(accountID);
|
|
}
|
|
|
|
private void showFragmentForNotification(Notification notification, String accountID){
|
|
Fragment fragment;
|
|
Bundle args=new Bundle();
|
|
args.putString("account", accountID);
|
|
args.putBoolean("_can_go_back", true);
|
|
try{
|
|
notification.postprocess();
|
|
}catch(ObjectValidationException x){
|
|
Log.w("MainActivity", x);
|
|
return;
|
|
}
|
|
if(notification.status!=null){
|
|
fragment=new ThreadFragment();
|
|
args.putParcelable("status", Parcels.wrap(notification.status));
|
|
}else{
|
|
fragment=new ProfileFragment();
|
|
args.putParcelable("profileAccount", Parcels.wrap(notification.account));
|
|
}
|
|
fragment.setArguments(args);
|
|
showFragment(fragment);
|
|
}
|
|
|
|
private void showCompose(){
|
|
AccountSession session=AccountSessionManager.getInstance().getLastActiveAccount();
|
|
if(session==null || !session.activated)
|
|
return;
|
|
ComposeFragment compose=new ComposeFragment();
|
|
Bundle composeArgs=new Bundle();
|
|
composeArgs.putString("account", session.getID());
|
|
compose.setArguments(composeArgs);
|
|
showFragment(compose);
|
|
}
|
|
|
|
private void maybeRequestNotificationsPermission(){
|
|
if(Build.VERSION.SDK_INT>=Build.VERSION_CODES.TIRAMISU && checkSelfPermission(Manifest.permission.POST_NOTIFICATIONS)!=PackageManager.PERMISSION_GRANTED){
|
|
requestPermissions(new String[]{Manifest.permission.POST_NOTIFICATIONS}, 100);
|
|
}
|
|
}
|
|
|
|
public void restartHomeFragment(){
|
|
if(AccountSessionManager.getInstance().getLoggedInAccounts().isEmpty()){
|
|
showFragmentClearingBackStack(new SplashFragment());
|
|
}else{
|
|
AccountSessionManager.getInstance().maybeUpdateLocalInfo();
|
|
AccountSession session;
|
|
Bundle args=new Bundle();
|
|
Intent intent=getIntent();
|
|
if(intent.getBooleanExtra("fromNotification", false)){
|
|
String accountID=intent.getStringExtra("accountID");
|
|
try{
|
|
session=AccountSessionManager.getInstance().getAccount(accountID);
|
|
if(!intent.hasExtra("notification"))
|
|
args.putString("tab", "notifications");
|
|
}catch(IllegalStateException x){
|
|
session=AccountSessionManager.getInstance().getLastActiveAccount();
|
|
}
|
|
}else{
|
|
session=AccountSessionManager.getInstance().getLastActiveAccount();
|
|
}
|
|
args.putString("account", session.getID());
|
|
Fragment fragment=session.activated ? new HomeFragment() : new AccountActivationFragment();
|
|
fragment.setArguments(args);
|
|
showFragmentClearingBackStack(fragment);
|
|
if(intent.getBooleanExtra("fromNotification", false) && intent.hasExtra("notification")){
|
|
Notification notification=Parcels.unwrap(intent.getParcelableExtra("notification"));
|
|
showFragmentForNotification(notification, session.getID());
|
|
}else if(intent.getBooleanExtra("compose", false)){
|
|
showCompose();
|
|
}else if(Intent.ACTION_VIEW.equals(intent.getAction())){
|
|
handleURL(intent.getData(), null);
|
|
}else{
|
|
maybeRequestNotificationsPermission();
|
|
}
|
|
}
|
|
}
|
|
}
|