mirror of
https://framagit.org/tom79/fedilab-tube
synced 2025-04-13 01:52:01 +02:00
329 lines
14 KiB
Java
329 lines
14 KiB
Java
package app.fedilab.fedilabtube;
|
|
/* Copyright 2020 Thomas Schneider
|
|
*
|
|
* This file is a part of TubeLab
|
|
*
|
|
* 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.
|
|
*
|
|
* TubeLab 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 TubeLab; if not,
|
|
* see <http://www.gnu.org/licenses>. */
|
|
|
|
import android.annotation.SuppressLint;
|
|
import android.app.Activity;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.content.SharedPreferences;
|
|
import android.database.sqlite.SQLiteDatabase;
|
|
import android.os.Build;
|
|
import android.os.Bundle;
|
|
import android.view.Menu;
|
|
import android.view.MenuItem;
|
|
import android.widget.EditText;
|
|
import android.widget.LinearLayout;
|
|
import android.widget.Toast;
|
|
|
|
import androidx.appcompat.app.AlertDialog;
|
|
import androidx.appcompat.app.AppCompatActivity;
|
|
import androidx.appcompat.widget.SearchView;
|
|
import androidx.navigation.NavController;
|
|
import androidx.navigation.NavGraph;
|
|
import androidx.navigation.NavInflater;
|
|
import androidx.navigation.Navigation;
|
|
import androidx.navigation.fragment.NavHostFragment;
|
|
import androidx.navigation.ui.AppBarConfiguration;
|
|
import androidx.navigation.ui.NavigationUI;
|
|
|
|
import com.google.android.material.bottomnavigation.BottomNavigationView;
|
|
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
import app.fedilab.fedilabtube.client.RetrofitPeertubeAPI;
|
|
import app.fedilab.fedilabtube.client.data.AccountData.Account;
|
|
import app.fedilab.fedilabtube.client.entities.PeertubeInformation;
|
|
import app.fedilab.fedilabtube.helper.Helper;
|
|
import app.fedilab.fedilabtube.services.RetrieveInfoService;
|
|
import app.fedilab.fedilabtube.sqlite.AccountDAO;
|
|
import app.fedilab.fedilabtube.sqlite.Sqlite;
|
|
import app.fedilab.fedilabtube.viewmodel.TimelineVM;
|
|
import es.dmoral.toasty.Toasty;
|
|
|
|
import static app.fedilab.fedilabtube.helper.Helper.academies;
|
|
|
|
public class MainActivity extends AppCompatActivity {
|
|
|
|
public static PeertubeInformation peertubeInformation;
|
|
|
|
public static int PICK_INSTANCE = 5641;
|
|
|
|
@Override
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
super.onCreate(savedInstanceState);
|
|
setContentView(R.layout.activity_main);
|
|
|
|
|
|
BottomNavigationView navView = findViewById(R.id.nav_view);
|
|
|
|
if (Helper.isLoggedIn(MainActivity.this)) {
|
|
navView.inflateMenu(R.menu.bottom_nav_menu_connected);
|
|
} else {
|
|
navView.inflateMenu(R.menu.bottom_nav_menu);
|
|
}
|
|
|
|
// Passing each menu ID as a set of Ids because each
|
|
// menu should be considered as top level destinations.
|
|
AppBarConfiguration appBarConfiguration;
|
|
//Bottom menu won't be the same if the user is authenticated
|
|
//When the user is authenticated, the subscription entry will be added and the local one removed.
|
|
if (Helper.isLoggedIn(MainActivity.this)) {
|
|
appBarConfiguration = new AppBarConfiguration.Builder(
|
|
R.id.navigation_discover, R.id.navigation_subscription, R.id.navigation_trending, R.id.navigation_most_liked, R.id.navigation_recently_added)
|
|
.build();
|
|
} else {
|
|
appBarConfiguration = new AppBarConfiguration.Builder(
|
|
R.id.navigation_discover, R.id.navigation_trending, R.id.navigation_most_liked, R.id.navigation_recently_added, R.id.navigation_home)
|
|
.build();
|
|
}
|
|
|
|
startInForeground();
|
|
NavHostFragment navHostFragment = (NavHostFragment) getSupportFragmentManager().findFragmentById(R.id.nav_host_fragment);
|
|
if (navHostFragment != null) {
|
|
NavInflater inflater = navHostFragment.getNavController().getNavInflater();
|
|
NavGraph graph;
|
|
//the menu is inflated for authenticated or not authenticated account
|
|
if (Helper.isLoggedIn(MainActivity.this)) {
|
|
graph = inflater.inflate(R.navigation.mobile_navigation_connected);
|
|
} else {
|
|
graph = inflater.inflate(R.navigation.mobile_navigation);
|
|
}
|
|
navHostFragment.getNavController().setGraph(graph);
|
|
NavController navController = Navigation.findNavController(this, R.id.nav_host_fragment);
|
|
NavigationUI.setupActionBarWithNavController(this, navController, appBarConfiguration);
|
|
NavigationUI.setupWithNavController(navView, navController);
|
|
}
|
|
}
|
|
|
|
|
|
private void startInForeground() {
|
|
Intent notificationIntent = new Intent(this, RetrieveInfoService.class);
|
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
|
startForegroundService(notificationIntent);
|
|
} else {
|
|
startService(notificationIntent);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public boolean onCreateOptionsMenu(@NotNull Menu menu) {
|
|
getMenuInflater().inflate(R.menu.main_menu, menu);
|
|
|
|
MenuItem myActionMenuItem = menu.findItem(R.id.action_search);
|
|
SearchView searchView = (SearchView) myActionMenuItem.getActionView();
|
|
searchView.setOnQueryTextListener(new SearchView.OnQueryTextListener() {
|
|
@Override
|
|
public boolean onQueryTextSubmit(String query) {
|
|
Intent intent = new Intent(MainActivity.this, SearchActivity.class);
|
|
Bundle b = new Bundle();
|
|
String search = query.trim();
|
|
b.putString("search", search);
|
|
intent.putExtras(b);
|
|
startActivity(intent);
|
|
if (!searchView.isIconified()) {
|
|
searchView.setIconified(true);
|
|
}
|
|
myActionMenuItem.collapseActionView();
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public boolean onQueryTextChange(String s) {
|
|
return false;
|
|
}
|
|
});
|
|
MenuItem instanceItem = menu.findItem(R.id.action_change_instance);
|
|
MenuItem uploadItem = menu.findItem(R.id.action_upload);
|
|
MenuItem myVideosItem = menu.findItem(R.id.action_myvideos);
|
|
MenuItem playslistItem = menu.findItem(R.id.action_playlist);
|
|
MenuItem historyItem = menu.findItem(R.id.action_history);
|
|
MenuItem settingsItem = menu.findItem(R.id.action_settings);
|
|
if (Helper.isLoggedIn(MainActivity.this)) {
|
|
instanceItem.setVisible(false);
|
|
uploadItem.setVisible(true);
|
|
myVideosItem.setVisible(true);
|
|
playslistItem.setVisible(true);
|
|
historyItem.setVisible(true);
|
|
settingsItem.setVisible(false);
|
|
final SharedPreferences sharedpreferences = getSharedPreferences(Helper.APP_PREFS, Context.MODE_PRIVATE);
|
|
String userId = sharedpreferences.getString(Helper.PREF_KEY_ID, null);
|
|
String instance = Helper.getLiveInstance(MainActivity.this);
|
|
SQLiteDatabase db = Sqlite.getInstance(getApplicationContext(), Sqlite.DB_NAME, null, Sqlite.DB_VERSION).open();
|
|
Account account = new AccountDAO(MainActivity.this, db).getUniqAccount(userId, instance);
|
|
if (account != null) {
|
|
new Thread(() -> new RetrofitPeertubeAPI(MainActivity.this).refreshToken(account.getToken(), account.getHost())).start();
|
|
}
|
|
} else {
|
|
instanceItem.setVisible(true);
|
|
uploadItem.setVisible(false);
|
|
myVideosItem.setVisible(false);
|
|
playslistItem.setVisible(false);
|
|
historyItem.setVisible(false);
|
|
settingsItem.setVisible(true);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public boolean onOptionsItemSelected(MenuItem item) {
|
|
if (item.getItemId() == R.id.action_change_instance) {
|
|
if (BuildConfig.full_instances) {
|
|
showRadioButtonDialogFullInstances();
|
|
} else {
|
|
showRadioButtonDialog();
|
|
}
|
|
return true;
|
|
} else if (item.getItemId() == R.id.action_settings) {
|
|
Intent intent = new Intent(MainActivity.this, SettingsActivity.class);
|
|
startActivity(intent);
|
|
} else if (item.getItemId() == R.id.action_account) {
|
|
Intent intent;
|
|
if (Helper.isLoggedIn(MainActivity.this)) {
|
|
intent = new Intent(MainActivity.this, AccountActivity.class);
|
|
} else {
|
|
intent = new Intent(MainActivity.this, LoginActivity.class);
|
|
}
|
|
startActivity(intent);
|
|
return true;
|
|
} else if (item.getItemId() == R.id.action_upload) {
|
|
Intent intent = new Intent(MainActivity.this, PeertubeUploadActivity.class);
|
|
startActivity(intent);
|
|
return true;
|
|
} else if (item.getItemId() == R.id.action_myvideos) {
|
|
Intent intent = new Intent(MainActivity.this, MyVideosActivity.class);
|
|
Bundle bundle = new Bundle();
|
|
bundle.putSerializable("type", TimelineVM.Type.MYVIDEOS);
|
|
intent.putExtras(bundle);
|
|
startActivity(intent);
|
|
return true;
|
|
} else if (item.getItemId() == R.id.action_history) {
|
|
Intent intent = new Intent(MainActivity.this, MyVideosActivity.class);
|
|
Bundle bundle = new Bundle();
|
|
bundle.putSerializable("type", TimelineVM.Type.PEERTUBE_HISTORY);
|
|
intent.putExtras(bundle);
|
|
startActivity(intent);
|
|
return true;
|
|
} else if (item.getItemId() == R.id.action_playlist) {
|
|
Intent intent = new Intent(MainActivity.this, AllPlaylistsActivity.class);
|
|
startActivity(intent);
|
|
return true;
|
|
} else if (item.getItemId() == R.id.action_about) {
|
|
Intent intent = new Intent(MainActivity.this, AboutActivity.class);
|
|
startActivity(intent);
|
|
return true;
|
|
}
|
|
return super.onOptionsItemSelected(item);
|
|
}
|
|
|
|
@Override
|
|
protected void onNewIntent(Intent intent) {
|
|
super.onNewIntent(intent);
|
|
if (intent == null)
|
|
return;
|
|
Bundle extras = intent.getExtras();
|
|
if (extras != null && extras.containsKey(Helper.INTENT_ACTION)) {
|
|
if (extras.getInt(Helper.INTENT_ACTION) == Helper.ADD_USER_INTENT) {
|
|
recreate();
|
|
}
|
|
}
|
|
}
|
|
|
|
@SuppressLint("ApplySharedPref")
|
|
private void showRadioButtonDialog() {
|
|
|
|
AlertDialog.Builder alt_bld = new AlertDialog.Builder(this);
|
|
alt_bld.setTitle(R.string.instance_choice);
|
|
final SharedPreferences sharedpreferences = getSharedPreferences(Helper.APP_PREFS, Context.MODE_PRIVATE);
|
|
String acad = Helper.getLiveInstance(MainActivity.this);
|
|
int i = 0;
|
|
for (String item : academies) {
|
|
if (Helper.getPeertubeUrl(item).compareTo(acad) == 0) {
|
|
break;
|
|
}
|
|
i++;
|
|
}
|
|
alt_bld.setSingleChoiceItems(academies, i, (dialog, item) -> {
|
|
String newInstance = academies[item];
|
|
SharedPreferences.Editor editor = sharedpreferences.edit();
|
|
editor.putString(Helper.PREF_INSTANCE, newInstance);
|
|
editor.commit();
|
|
dialog.dismiss();
|
|
recreate();
|
|
});
|
|
alt_bld.setPositiveButton(R.string.close, (dialog, id) -> dialog.dismiss());
|
|
AlertDialog alert = alt_bld.create();
|
|
alert.show();
|
|
}
|
|
|
|
@SuppressLint("ApplySharedPref")
|
|
private void showRadioButtonDialogFullInstances() {
|
|
final SharedPreferences sharedpreferences = getSharedPreferences(Helper.APP_PREFS, Context.MODE_PRIVATE);
|
|
AlertDialog.Builder alt_bld = new AlertDialog.Builder(this);
|
|
alt_bld.setTitle(R.string.instance_choice);
|
|
String instance = Helper.getLiveInstance(MainActivity.this);
|
|
final EditText input = new EditText(MainActivity.this);
|
|
LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(
|
|
LinearLayout.LayoutParams.MATCH_PARENT,
|
|
LinearLayout.LayoutParams.MATCH_PARENT);
|
|
input.setLayoutParams(lp);
|
|
alt_bld.setView(input);
|
|
input.setText(instance);
|
|
alt_bld.setPositiveButton(R.string.validate,
|
|
(dialog, which) -> new Thread(() -> {
|
|
try {
|
|
String newInstance = input.getText().toString().trim();
|
|
InstanceNodeInfo instanceNodeInfo = new RetrofitPeertubeAPI(MainActivity.this).displayNodeInfo(newInstance);
|
|
if (instanceNodeInfo.getName() != null && instanceNodeInfo.getName().trim().toLowerCase().compareTo("peertube") == 0) {
|
|
SharedPreferences.Editor editor = sharedpreferences.edit();
|
|
editor.putString(Helper.PREF_INSTANCE, newInstance);
|
|
editor.commit();
|
|
runOnUiThread(() -> {
|
|
dialog.dismiss();
|
|
recreate();
|
|
});
|
|
} else {
|
|
runOnUiThread(() -> Toasty.error(MainActivity.this, getString(R.string.not_valide_instance), Toast.LENGTH_LONG).show());
|
|
}
|
|
} catch (Exception e) {
|
|
e.printStackTrace();
|
|
}
|
|
|
|
}).start());
|
|
alt_bld.setNegativeButton(R.string.cancel, (dialog, which) -> dialog.dismiss());
|
|
alt_bld.setNeutralButton(R.string.help, (dialog, which) -> {
|
|
Intent intent = new Intent(MainActivity.this, InstancePickerActivity.class);
|
|
startActivityForResult(intent, PICK_INSTANCE);
|
|
});
|
|
AlertDialog alert = alt_bld.create();
|
|
alert.show();
|
|
}
|
|
|
|
|
|
@SuppressLint("ApplySharedPref")
|
|
@Override
|
|
public void onActivityResult(int requestCode, int resultCode, Intent data) {
|
|
super.onActivityResult(requestCode, resultCode, data);
|
|
if (requestCode == PICK_INSTANCE && resultCode == Activity.RESULT_OK) {
|
|
if (data != null && data.getData() != null) {
|
|
final SharedPreferences sharedpreferences = getSharedPreferences(Helper.APP_PREFS, Context.MODE_PRIVATE);
|
|
SharedPreferences.Editor editor = sharedpreferences.edit();
|
|
editor.putString(Helper.PREF_INSTANCE, String.valueOf(data.getData()));
|
|
editor.commit();
|
|
recreate();
|
|
}
|
|
}
|
|
}
|
|
} |