fedilab-Android-App/app/src/main/java/fr/gouv/etalab/mastodon/activities/AboutActivity.java

323 lines
14 KiB
Java
Raw Normal View History

2017-05-05 16:36:04 +02:00
/* Copyright 2017 Thomas Schneider
*
2017-07-10 10:33:24 +02:00
* This file is a part of Mastalab
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.
*
2017-07-10 10:33:24 +02:00
* Mastalab 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.
*
2017-08-04 11:11:27 +02:00
* You should have received a copy of the GNU General Public License along with Mastalab; if not,
2017-05-05 16:36:04 +02:00
* see <http://www.gnu.org/licenses>. */
package fr.gouv.etalab.mastodon.activities;
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;
import android.net.Uri;
import android.os.AsyncTask;
2017-05-05 16:36:04 +02:00
import android.os.Bundle;
import android.support.v4.content.ContextCompat;
2017-12-23 08:13:18 +01:00
import android.text.SpannableString;
import android.text.style.UnderlineSpan;
2017-05-05 16:36:04 +02:00
import android.view.MenuItem;
import android.view.View;
import android.widget.Button;
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
2017-09-02 19:15:29 +02:00
import java.util.ArrayList;
import java.util.List;
import fr.gouv.etalab.mastodon.R;
2017-09-03 10:36:27 +02:00
import fr.gouv.etalab.mastodon.asynctasks.RetrieveRelationshipAsyncTask;
2017-12-20 09:33:32 +01:00
import fr.gouv.etalab.mastodon.asynctasks.RetrieveRemoteDataAsyncTask;
import fr.gouv.etalab.mastodon.client.Entities.Account;
2017-09-03 10:36:27 +02:00
import fr.gouv.etalab.mastodon.client.Entities.Error;
import fr.gouv.etalab.mastodon.client.Entities.Relationship;
2017-10-07 18:18:26 +02:00
import fr.gouv.etalab.mastodon.client.Entities.Results;
2017-09-03 10:36:27 +02:00
import fr.gouv.etalab.mastodon.drawers.AccountSearchDevAdapter;
import fr.gouv.etalab.mastodon.helper.ExpandableHeightListView;
import fr.gouv.etalab.mastodon.helper.Helper;
2017-09-03 10:36:27 +02:00
import fr.gouv.etalab.mastodon.interfaces.OnRetrieveRelationshipInterface;
2017-09-02 19:15:29 +02:00
import fr.gouv.etalab.mastodon.interfaces.OnRetrieveRemoteAccountInterface;
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<>();
2017-10-08 11:54:41 +02:00
private List<Account> designers = new ArrayList<>();
2018-04-19 18:19:54 +02:00
private List<Account> banners = new ArrayList<>();
2017-09-03 10:36:27 +02:00
private AccountSearchDevAdapter accountSearchWebAdapterDeveloper;
2017-10-08 11:54:41 +02:00
private AccountSearchDevAdapter accountSearchWebAdapterDesigner;
2017-09-03 10:36:27 +02:00
private AccountSearchDevAdapter accountSearchWebAdapterContributors;
2018-04-19 18:19:54 +02:00
private AccountSearchDevAdapter accountSearchWebAdapterBanners;
2017-05-05 16:36:04 +02:00
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
2017-06-30 17:09:07 +02:00
SharedPreferences sharedpreferences = getSharedPreferences(Helper.APP_PREFS, android.content.Context.MODE_PRIVATE);
int theme = sharedpreferences.getInt(Helper.SET_THEME, Helper.THEME_DARK);
2018-05-11 11:28:05 +02:00
switch (theme){
case Helper.THEME_LIGHT:
setTheme(R.style.AppTheme);
break;
case Helper.THEME_DARK:
setTheme(R.style.AppThemeDark);
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
2017-05-05 16:36:04 +02:00
if( getSupportActionBar() != null)
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
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));
2017-05-05 19:30:57 +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_designers = findViewById(R.id.lv_designers);
ExpandableHeightListView lv_contributors = findViewById(R.id.lv_contributors);
2018-04-19 18:19:54 +02:00
ExpandableHeightListView lv_banners = findViewById(R.id.lv_banners);
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);
about_code.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
2018-09-19 10:16:44 +02:00
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://gitlab.com/tom79/mastalab"));
startActivity(browserIntent);
}
});
about_thekinrar.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
2017-08-04 14:38:18 +02:00
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://instances.social/"));
startActivity(browserIntent);
}
});
2017-09-02 19:15:29 +02:00
2018-09-12 10:36:19 +02:00
about_trunk.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://communitywiki.org/trunk"));
startActivity(browserIntent);
}
});
about_license.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View 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);
2017-07-17 18:53:12 +02:00
about_translation.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://translate.yandex.com/"));
startActivity(browserIntent);
}
});
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);
about_wiki.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
2018-09-19 10:16:44 +02:00
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://mastalab.app/how-to-in-short-videos/"));
2017-12-23 08:13:18 +01:00
startActivity(browserIntent);
}
});
2018-05-12 11:28:58 +02:00
Button about_support = findViewById(R.id.about_support);
about_support.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
2018-09-25 17:50:58 +02:00
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://liberapay.com/tom79"));
2018-05-12 11:28:58 +02:00
startActivity(browserIntent);
}
});
2018-08-19 14:58:56 +02:00
Button paypal = findViewById(R.id.about_support_paypal);
paypal.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.paypal.me/Mastalab"));
startActivity(browserIntent);
}
});
2018-08-22 19:42:45 +02:00
TextView about_website = findViewById(R.id.about_website);
about_website.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://tom79.bitbucket.io"));
startActivity(browserIntent);
}
});
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);
2017-10-08 11:54:41 +02:00
lv_designers.setExpanded(true);
2018-04-19 18:19:54 +02:00
lv_banners.setExpanded(true);
2017-10-08 11:54:41 +02:00
2017-09-03 10:36:27 +02:00
accountSearchWebAdapterContributors = new AccountSearchDevAdapter(AboutActivity.this, contributors);
2017-09-02 19:37:18 +02:00
lv_contributors.setAdapter(accountSearchWebAdapterContributors);
2017-10-08 11:54:41 +02:00
accountSearchWebAdapterDesigner = new AccountSearchDevAdapter(AboutActivity.this, designers);
lv_designers.setAdapter(accountSearchWebAdapterDesigner);
2017-09-03 10:36:27 +02:00
accountSearchWebAdapterDeveloper = new AccountSearchDevAdapter(AboutActivity.this, developers);
2017-09-02 19:37:18 +02:00
lv_developers.setAdapter(accountSearchWebAdapterDeveloper);
2018-04-19 18:19:54 +02:00
accountSearchWebAdapterBanners = new AccountSearchDevAdapter(AboutActivity.this, banners);
lv_banners.setAdapter(accountSearchWebAdapterBanners);
2017-10-08 11:54:41 +02:00
2017-12-20 09:33:32 +01:00
new RetrieveRemoteDataAsyncTask(getApplicationContext(), "tom79", "mastodon.social", AboutActivity.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
new RetrieveRemoteDataAsyncTask(getApplicationContext(), "NateLikesSheep", "mastodon.art", AboutActivity.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
2017-12-20 09:33:32 +01:00
new RetrieveRemoteDataAsyncTask(getApplicationContext(), "daycode", "mastodon.social", AboutActivity.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
new RetrieveRemoteDataAsyncTask(getApplicationContext(), "PhotonQyv", "mastodon.xyz", AboutActivity.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
new RetrieveRemoteDataAsyncTask(getApplicationContext(), "angrytux", "social.tchncs.de", AboutActivity.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
2017-05-05 16:36:04 +02:00
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case android.R.id.home:
finish();
return true;
default:
return super.onOptionsItemSelected(item);
}
}
2017-09-02 19:15:29 +02:00
@Override
2017-10-07 18:18:26 +02:00
public void onRetrieveRemoteAccount(Results results) {
SharedPreferences sharedpreferences = getSharedPreferences(Helper.APP_PREFS, android.content.Context.MODE_PRIVATE);
if( results == null){
2018-09-09 13:58:29 +02:00
Toast.makeText(getApplicationContext(), 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;
if( accounts != null && accounts.size() > 0){
account = accounts.get(0);
2017-10-08 11:54:41 +02:00
account.setFollowing(true);
switch (account.getUsername()) {
2017-10-17 19:20:56 +02:00
case "tom79":
2017-10-08 11:54:41 +02:00
developers.add(account);
accountSearchWebAdapterDeveloper.notifyDataSetChanged();
break;
case "NateLikesSheep":
2018-04-19 18:19:54 +02:00
banners.add(account);
accountSearchWebAdapterBanners.notifyDataSetChanged();
break;
2017-10-08 11:54:41 +02:00
case "daycode":
designers.add(account);
accountSearchWebAdapterDesigner.notifyDataSetChanged();
break;
default:
contributors.add(account);
accountSearchWebAdapterContributors.notifyDataSetChanged();
break;
2017-10-07 18:18:26 +02:00
}
2017-10-08 11:54:41 +02:00
new RetrieveRelationshipAsyncTask(getApplicationContext(), 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
public void onResume(){
super.onResume();
2017-10-08 11:54:41 +02:00
if( developers != null){
2017-09-03 12:49:10 +02:00
for(Account account: developers){
new RetrieveRelationshipAsyncTask(getApplicationContext(), account.getId(),AboutActivity.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
}
}
2017-10-08 11:54:41 +02:00
if( designers != null){
for(Account account: designers){
new RetrieveRelationshipAsyncTask(getApplicationContext(), account.getId(),AboutActivity.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
}
}
2018-04-19 18:19:54 +02:00
if( banners != null){
for(Account account: banners){
new RetrieveRelationshipAsyncTask(getApplicationContext(), account.getId(),AboutActivity.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
}
}
2017-10-08 11:54:41 +02:00
if( contributors != null){
2017-09-03 12:49:10 +02:00
for(Account account: contributors){
new RetrieveRelationshipAsyncTask(getApplicationContext(), account.getId(),AboutActivity.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
}
}
}
2017-10-08 11:54:41 +02:00
2017-09-03 10:36:27 +02:00
@Override
public void onRetrieveRelationship(Relationship relationship, Error error) {
SharedPreferences sharedpreferences = getSharedPreferences(Helper.APP_PREFS, android.content.Context.MODE_PRIVATE);
String userId = sharedpreferences.getString(Helper.PREF_KEY_ID, "");
if( error != null){
return;
}
for( int i = 0 ; i < developers.size() ; i++){
2017-10-08 11:54:41 +02:00
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
}
}
2017-10-08 11:54:41 +02:00
for( int i = 0 ; i < designers.size() ; i++){
if( designers.get(i).getId() != null && designers.get(i).getId().equals(relationship.getId())){
designers.get(i).setFollowing(relationship.isFollowing() || userId.trim().equals(relationship.getId()));
accountSearchWebAdapterDesigner.notifyDataSetChanged();
break;
}
}
2018-04-19 18:19:54 +02:00
for( int i = 0 ; i < banners.size() ; i++){
if( banners.get(i).getId() != null && banners.get(i).getId().equals(relationship.getId())){
banners.get(i).setFollowing(relationship.isFollowing() || userId.trim().equals(relationship.getId()));
accountSearchWebAdapterBanners.notifyDataSetChanged();
break;
}
}
2017-09-03 10:36:27 +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
}
}
}
2017-05-05 16:36:04 +02:00
}