fedilab-Android-App/app/src/main/java/app/fedilab/android/activities/AboutActivity.java

331 lines
15 KiB
Java
Raw Normal View History

2017-05-05 16:36:04 +02:00
/* Copyright 2017 Thomas Schneider
*
2019-05-18 11:10:30 +02:00
* This file is a part of Fedilab
2017-05-05 16:36:04 +02:00
*
* 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.
*
2019-05-18 11:10:30 +02:00
* Fedilab is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
2017-05-05 16:36:04 +02:00
* the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
2019-05-18 11:10:30 +02:00
* You should have received a copy of the GNU General Public License along with Fedilab; if not,
2017-05-05 16:36:04 +02:00
* see <http://www.gnu.org/licenses>. */
2019-05-18 11:10:30 +02:00
package app.fedilab.android.activities;
2017-05-05 16:36:04 +02:00
import android.content.Intent;
2017-06-30 17:09:07 +02:00
import android.content.SharedPreferences;
2017-05-05 16:36:04 +02:00
import android.content.pm.PackageInfo;
import android.content.pm.PackageManager;
2019-11-13 12:54:01 +01:00
import android.graphics.drawable.ColorDrawable;
import android.net.Uri;
import android.os.AsyncTask;
2017-05-05 16:36:04 +02:00
import android.os.Bundle;
2017-12-23 08:13:18 +01:00
import android.text.SpannableString;
import android.text.style.UnderlineSpan;
2018-11-03 12:06:44 +01:00
import android.view.LayoutInflater;
2017-05-05 16:36:04 +02:00
import android.view.MenuItem;
import android.view.View;
2018-11-03 12:06:44 +01:00
import android.view.ViewGroup;
import android.widget.Button;
2018-11-03 12:06:44 +01:00
import android.widget.ImageView;
2019-08-18 17:41:10 +02:00
import android.widget.LinearLayout;
2017-05-05 16:36:04 +02:00
import android.widget.TextView;
2017-10-07 18:18:26 +02:00
import android.widget.Toast;
2017-05-05 16:36:04 +02:00
2019-11-15 16:32:25 +01:00
import androidx.appcompat.app.ActionBar;
import androidx.core.content.ContextCompat;
2017-09-02 19:15:29 +02:00
import java.util.ArrayList;
import java.util.List;
import app.fedilab.android.BuildConfig;
2019-11-15 16:32:25 +01:00
import app.fedilab.android.R;
import app.fedilab.android.asynctasks.RetrieveRelationshipAsyncTask;
import app.fedilab.android.asynctasks.RetrieveRemoteDataAsyncTask;
import app.fedilab.android.asynctasks.UpdateAccountInfoAsyncTask;
2019-05-18 11:10:30 +02:00
import app.fedilab.android.client.Entities.Account;
import app.fedilab.android.client.Entities.Error;
import app.fedilab.android.client.Entities.Relationship;
import app.fedilab.android.client.Entities.Results;
import app.fedilab.android.drawers.AccountSearchDevAdapter;
import app.fedilab.android.helper.ExpandableHeightListView;
import app.fedilab.android.helper.Helper;
import app.fedilab.android.interfaces.OnRetrieveRelationshipInterface;
import app.fedilab.android.interfaces.OnRetrieveRemoteAccountInterface;
2019-11-15 16:32:25 +01:00
import es.dmoral.toasty.Toasty;
2018-11-03 12:06:44 +01:00
2017-05-05 16:36:04 +02:00
/**
* Created by Thomas on 05/05/2017.
* About activity
*/
2017-12-12 18:17:01 +01:00
public class AboutActivity extends BaseActivity implements OnRetrieveRemoteAccountInterface, OnRetrieveRelationshipInterface {
2017-09-02 19:37:18 +02:00
private List<Account> developers = new ArrayList<>();
2017-09-02 19:15:29 +02:00
private List<Account> contributors = new ArrayList<>();
2018-11-09 07:02:55 +01:00
private List<Account> uxuidesigners = new ArrayList<>();
2018-04-19 18:19:54 +02:00
2017-09-03 10:36:27 +02:00
private AccountSearchDevAdapter accountSearchWebAdapterDeveloper;
private AccountSearchDevAdapter accountSearchWebAdapterContributors;
2018-11-09 07:02:55 +01:00
private AccountSearchDevAdapter accountSearchWebAdapterUxUiDesigners;
2017-05-05 16:36:04 +02:00
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
2019-05-18 11:10:30 +02:00
SharedPreferences sharedpreferences = getSharedPreferences(Helper.APP_PREFS, MODE_PRIVATE);
int theme = sharedpreferences.getInt(Helper.SET_THEME, Helper.THEME_DARK);
2019-09-06 17:55:14 +02:00
switch (theme) {
2018-05-11 11:28:05 +02:00
case Helper.THEME_LIGHT:
2019-11-09 15:47:38 +01:00
setTheme(R.style.AppTheme_Fedilab);
2018-05-11 11:28:05 +02:00
break;
case Helper.THEME_BLACK:
setTheme(R.style.AppThemeBlack);
break;
default:
setTheme(R.style.AppThemeDark);
2017-06-30 17:09:07 +02:00
}
2018-05-11 11:28:05 +02:00
2019-09-06 17:55:14 +02:00
if (getSupportActionBar() != null)
2017-05-05 16:36:04 +02:00
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
2018-11-03 12:06:44 +01:00
ActionBar actionBar = getSupportActionBar();
2019-09-06 17:55:14 +02:00
if (actionBar != null) {
2019-05-18 11:10:30 +02:00
LayoutInflater inflater = (LayoutInflater) this.getSystemService(LAYOUT_INFLATER_SERVICE);
2018-11-03 12:06:44 +01:00
assert inflater != null;
2020-04-08 12:42:15 +02:00
View view = inflater.inflate(R.layout.simple_bar, new LinearLayout(AboutActivity.this), false);
2019-11-15 19:36:39 +01:00
view.setBackground(new ColorDrawable(ContextCompat.getColor(AboutActivity.this, R.color.cyanea_primary)));
2018-11-03 12:06:44 +01:00
actionBar.setCustomView(view, new ActionBar.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT));
actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
ImageView toolbar_close = actionBar.getCustomView().findViewById(R.id.toolbar_close);
TextView toolbar_title = actionBar.getCustomView().findViewById(R.id.toolbar_title);
2020-03-07 14:53:54 +01:00
toolbar_close.setOnClickListener(v -> finish());
2018-11-03 12:06:44 +01:00
toolbar_title.setText(R.string.action_about);
}
2017-05-05 16:36:04 +02:00
setContentView(R.layout.activity_about);
2017-10-27 15:34:53 +02:00
TextView about_version = findViewById(R.id.about_version);
2017-05-05 16:36:04 +02:00
try {
PackageInfo pInfo = getPackageManager().getPackageInfo(getPackageName(), 0);
String version = pInfo.versionName;
about_version.setText(getResources().getString(R.string.about_vesrion, version));
2019-09-06 17:55:14 +02:00
} catch (PackageManager.NameNotFoundException ignored) {
}
2017-05-05 16:36:04 +02:00
2017-10-27 15:34:53 +02:00
ExpandableHeightListView lv_developers = findViewById(R.id.lv_developers);
ExpandableHeightListView lv_contributors = findViewById(R.id.lv_contributors);
2018-11-09 07:02:55 +01:00
ExpandableHeightListView lv_ux = findViewById(R.id.lv_ux);
2017-10-27 15:34:53 +02:00
Button about_code = findViewById(R.id.about_code);
Button about_license = findViewById(R.id.about_license);
Button about_thekinrar = findViewById(R.id.about_thekinrar);
2018-09-12 10:36:19 +02:00
Button about_trunk = findViewById(R.id.about_trunk);
2019-02-08 19:11:54 +01:00
2020-03-07 14:53:54 +01:00
TextView txt_developers, txt_ux, txt_thankyou1, txt_thankyou2;
2019-02-08 19:11:54 +01:00
txt_developers = findViewById(R.id.txt_developers);
txt_ux = findViewById(R.id.txt_ux);
txt_thankyou1 = findViewById(R.id.txt_thankyou1);
txt_thankyou2 = findViewById(R.id.txt_thankyou2);
2020-03-07 14:53:54 +01:00
about_code.setOnClickListener(v -> {
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://framagit.org/tom79/fedilab"));
startActivity(browserIntent);
});
2020-03-07 14:53:54 +01:00
about_thekinrar.setOnClickListener(v -> {
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://instances.social/"));
startActivity(browserIntent);
});
2017-09-02 19:15:29 +02:00
2020-03-07 14:53:54 +01:00
about_trunk.setOnClickListener(v -> {
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://communitywiki.org/trunk"));
startActivity(browserIntent);
2018-09-12 10:36:19 +02:00
});
2020-03-07 14:53:54 +01:00
about_license.setOnClickListener(v -> {
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.gnu.org/licenses/quick-guide-gplv3.fr.html"));
startActivity(browserIntent);
});
2017-10-27 15:34:53 +02:00
Button about_translation = findViewById(R.id.about_translation);
2020-03-07 14:53:54 +01:00
about_translation.setOnClickListener(v -> {
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://translate.yandex.com/"));
startActivity(browserIntent);
2017-07-17 18:53:12 +02:00
});
2017-08-17 19:33:23 +02:00
2017-12-23 08:13:18 +01:00
TextView about_wiki = findViewById(R.id.about_wiki);
SpannableString content = new SpannableString(about_wiki.getText().toString());
content.setSpan(new UnderlineSpan(), 0, content.length(), 0);
about_wiki.setText(content);
2020-03-07 14:53:54 +01:00
about_wiki.setOnClickListener(v -> {
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://fedilab.app/page/howto/"));
startActivity(browserIntent);
2017-12-23 08:13:18 +01:00
});
2018-05-12 11:28:58 +02:00
Button about_support = findViewById(R.id.about_support);
2020-03-07 14:53:54 +01:00
about_support.setOnClickListener(v -> {
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://liberapay.com/tom79"));
startActivity(browserIntent);
2018-05-12 11:28:58 +02:00
});
2019-09-06 17:55:14 +02:00
if (BuildConfig.DONATIONS) {
about_support.setVisibility(View.VISIBLE);
2019-09-06 17:55:14 +02:00
} else {
about_support.setVisibility(View.GONE);
}
2018-05-12 11:28:58 +02:00
2018-08-19 14:58:56 +02:00
Button paypal = findViewById(R.id.about_support_paypal);
2020-03-07 14:53:54 +01:00
paypal.setOnClickListener(v -> {
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.paypal.me/Mastalab"));
startActivity(browserIntent);
2018-08-19 14:58:56 +02:00
});
2019-09-06 17:55:14 +02:00
if (BuildConfig.DONATIONS) {
paypal.setVisibility(View.VISIBLE);
2019-09-06 17:55:14 +02:00
} else {
paypal.setVisibility(View.GONE);
}
2018-08-22 19:42:45 +02:00
TextView about_website = findViewById(R.id.about_website);
2020-03-07 14:53:54 +01:00
about_website.setOnClickListener(v -> {
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://fedilab.app"));
startActivity(browserIntent);
2018-08-22 19:42:45 +02:00
});
2017-10-08 11:54:41 +02:00
setTitle(R.string.action_about);
2017-09-03 10:36:27 +02:00
lv_contributors.setExpanded(true);
lv_developers.setExpanded(true);
2018-11-09 07:02:55 +01:00
lv_ux.setExpanded(true);
2017-10-08 11:54:41 +02:00
2019-08-19 09:11:23 +02:00
accountSearchWebAdapterContributors = new AccountSearchDevAdapter(contributors);
2017-09-02 19:37:18 +02:00
lv_contributors.setAdapter(accountSearchWebAdapterContributors);
2019-08-19 09:11:23 +02:00
accountSearchWebAdapterDeveloper = new AccountSearchDevAdapter(developers);
2017-09-02 19:37:18 +02:00
lv_developers.setAdapter(accountSearchWebAdapterDeveloper);
2019-08-19 09:11:23 +02:00
accountSearchWebAdapterUxUiDesigners = new AccountSearchDevAdapter(uxuidesigners);
2018-11-09 07:02:55 +01:00
lv_ux.setAdapter(accountSearchWebAdapterUxUiDesigners);
2017-10-08 11:54:41 +02:00
2019-09-06 17:55:14 +02:00
if (MainActivity.social == UpdateAccountInfoAsyncTask.SOCIAL.MASTODON || MainActivity.social == UpdateAccountInfoAsyncTask.SOCIAL.PLEROMA) {
2020-04-08 12:42:15 +02:00
new RetrieveRemoteDataAsyncTask(AboutActivity.this, "fedilab", "toot.fedilab.app", AboutActivity.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
new RetrieveRemoteDataAsyncTask(AboutActivity.this, "mmarif", "mastodon.social", AboutActivity.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
new RetrieveRemoteDataAsyncTask(AboutActivity.this, "PhotonQyv", "mastodon.xyz", AboutActivity.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
new RetrieveRemoteDataAsyncTask(AboutActivity.this, "angrytux", "social.tchncs.de", AboutActivity.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
new RetrieveRemoteDataAsyncTask(AboutActivity.this, "guzzisti", "mastodon.social", AboutActivity.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
2019-09-06 17:55:14 +02:00
} else {
2019-11-22 19:10:20 +01:00
SpannableString name = new SpannableString("@fedilab@toot.fedilab.app");
2019-02-08 19:11:54 +01:00
name.setSpan(new UnderlineSpan(), 0, name.length(), 0);
txt_developers.setText(name);
txt_developers.setVisibility(View.VISIBLE);
2020-03-07 14:53:54 +01:00
txt_developers.setOnClickListener(v -> Helper.openBrowser(AboutActivity.this, "https://toot.fedilab.app/@fedilab"));
2019-02-08 19:11:54 +01:00
name = new SpannableString("@mmarif@mastodon.social");
name.setSpan(new UnderlineSpan(), 0, name.length(), 0);
txt_ux.setText(name);
txt_ux.setVisibility(View.VISIBLE);
2020-03-07 14:53:54 +01:00
txt_ux.setOnClickListener(v -> Helper.openBrowser(AboutActivity.this, "https://mastodon.social/@mmarif"));
2019-02-08 19:11:54 +01:00
name = new SpannableString("@PhotonQyv@mastodon.xyz");
name.setSpan(new UnderlineSpan(), 0, name.length(), 0);
txt_thankyou1.setText(name);
txt_thankyou1.setVisibility(View.VISIBLE);
2020-03-07 14:53:54 +01:00
txt_thankyou1.setOnClickListener(v -> Helper.openBrowser(AboutActivity.this, "https://mastodon.xyz/@PhotonQyv"));
2019-02-08 19:11:54 +01:00
name = new SpannableString("@angrytux@social.tchncs.de");
name.setSpan(new UnderlineSpan(), 0, name.length(), 0);
txt_thankyou2.setText(name);
txt_thankyou2.setVisibility(View.VISIBLE);
2020-03-07 14:53:54 +01:00
txt_thankyou2.setOnClickListener(v -> Helper.openBrowser(AboutActivity.this, "https://social.tchncs.de/@angrytux"));
2019-02-08 19:11:54 +01:00
}
2017-05-05 16:36:04 +02:00
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
2019-11-16 18:36:08 +01:00
if (item.getItemId() == android.R.id.home) {
finish();
return true;
2017-05-05 16:36:04 +02:00
}
2019-11-16 18:36:08 +01:00
return super.onOptionsItemSelected(item);
2017-05-05 16:36:04 +02:00
}
2017-09-02 19:15:29 +02:00
@Override
2019-11-22 19:10:20 +01:00
public void onRetrieveRemoteAccount(Results results, boolean developerAccount) {
2019-09-06 17:55:14 +02:00
if (results == null) {
2020-04-08 12:42:15 +02:00
Toasty.error(AboutActivity.this, getString(R.string.toast_error), Toast.LENGTH_LONG).show();
2017-09-02 19:15:29 +02:00
return;
}
2017-10-07 18:18:26 +02:00
List<Account> accounts = results.getAccounts();
Account account;
2019-09-06 17:55:14 +02:00
if (accounts != null && accounts.size() > 0) {
2017-10-07 18:18:26 +02:00
account = accounts.get(0);
2017-10-08 11:54:41 +02:00
account.setFollowing(true);
switch (account.getUsername()) {
2019-06-02 11:20:03 +02:00
case "fedilab":
2017-10-08 11:54:41 +02:00
developers.add(account);
accountSearchWebAdapterDeveloper.notifyDataSetChanged();
break;
2018-11-09 07:02:55 +01:00
case "mmarif":
uxuidesigners.add(account);
accountSearchWebAdapterUxUiDesigners.notifyDataSetChanged();
break;
2017-10-08 11:54:41 +02:00
default:
contributors.add(account);
accountSearchWebAdapterContributors.notifyDataSetChanged();
break;
2017-10-07 18:18:26 +02:00
}
2020-04-08 12:42:15 +02:00
new RetrieveRelationshipAsyncTask(AboutActivity.this, account.getId(), AboutActivity.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
2017-09-02 19:15:29 +02:00
}
}
2017-09-03 10:36:27 +02:00
2017-09-03 12:49:10 +02:00
@Override
2019-09-06 17:55:14 +02:00
public void onResume() {
2017-09-03 12:49:10 +02:00
super.onResume();
2019-09-06 17:55:14 +02:00
if (developers != null) {
for (Account account : developers) {
2020-04-08 12:42:15 +02:00
new RetrieveRelationshipAsyncTask(AboutActivity.this, account.getId(), AboutActivity.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
2017-09-03 12:49:10 +02:00
}
}
2019-09-06 17:55:14 +02:00
if (contributors != null) {
for (Account account : contributors) {
2020-04-08 12:42:15 +02:00
new RetrieveRelationshipAsyncTask(AboutActivity.this, account.getId(), AboutActivity.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
2017-09-03 12:49:10 +02:00
}
}
2019-09-06 17:55:14 +02:00
if (uxuidesigners != null) {
for (Account account : uxuidesigners) {
2020-04-08 12:42:15 +02:00
new RetrieveRelationshipAsyncTask(AboutActivity.this, account.getId(), AboutActivity.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
2018-11-09 07:02:55 +01:00
}
}
2017-09-03 12:49:10 +02:00
}
2017-10-08 11:54:41 +02:00
2017-09-03 10:36:27 +02:00
@Override
public void onRetrieveRelationship(Relationship relationship, Error error) {
2019-05-18 11:10:30 +02:00
SharedPreferences sharedpreferences = getSharedPreferences(Helper.APP_PREFS, MODE_PRIVATE);
2017-09-03 10:36:27 +02:00
String userId = sharedpreferences.getString(Helper.PREF_KEY_ID, "");
2019-09-06 17:55:14 +02:00
if (error != null) {
2017-09-03 10:36:27 +02:00
return;
}
2019-09-06 17:55:14 +02:00
for (int i = 0; i < developers.size(); i++) {
if (developers.get(i).getId() != null && developers.get(i).getId().equals(relationship.getId())) {
2017-09-03 12:49:10 +02:00
developers.get(i).setFollowing(relationship.isFollowing() || userId.trim().equals(relationship.getId()));
2017-09-03 10:36:27 +02:00
accountSearchWebAdapterDeveloper.notifyDataSetChanged();
2017-09-03 12:49:10 +02:00
break;
2017-09-03 10:36:27 +02:00
}
}
2019-09-06 17:55:14 +02:00
for (int i = 0; i < contributors.size(); i++) {
if (contributors.get(i).getId() != null && contributors.get(i).getId().equals(relationship.getId())) {
2017-09-03 12:49:10 +02:00
contributors.get(i).setFollowing(relationship.isFollowing() || userId.trim().equals(relationship.getId()));
2017-09-03 10:36:27 +02:00
accountSearchWebAdapterContributors.notifyDataSetChanged();
2017-09-03 12:49:10 +02:00
break;
2017-09-03 10:36:27 +02:00
}
}
2019-09-06 17:55:14 +02:00
for (int i = 0; i < uxuidesigners.size(); i++) {
if (uxuidesigners.get(i).getId() != null && uxuidesigners.get(i).getId().equals(relationship.getId())) {
2018-11-09 07:02:55 +01:00
uxuidesigners.get(i).setFollowing(relationship.isFollowing() || userId.trim().equals(relationship.getId()));
accountSearchWebAdapterUxUiDesigners.notifyDataSetChanged();
break;
}
}
2017-09-03 10:36:27 +02:00
}
2017-05-05 16:36:04 +02:00
}