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

185 lines
7.9 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-05-05 16:36:04 +02:00
import android.support.v7.app.AppCompatActivity;
2017-08-17 19:33:23 +02:00
import android.text.SpannableString;
import android.text.Spanned;
import android.text.TextPaint;
import android.text.method.LinkMovementMethod;
import android.text.style.ClickableSpan;
2017-09-02 19:37:18 +02:00
import android.util.Log;
2017-05-05 16:36:04 +02:00
import android.view.MenuItem;
import android.view.View;
import android.widget.Button;
2017-09-02 19:15:29 +02:00
import android.widget.ListView;
2017-05-05 16:36:04 +02:00
import android.widget.TextView;
2017-09-02 19:15:29 +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.asynctasks.RetrieveDeveloperAccountsAsyncTask;
2017-09-02 19:15:29 +02:00
import fr.gouv.etalab.mastodon.asynctasks.RetrieveRemoteAccountsAsyncTask;
2017-06-03 18:18:27 +02:00
import fr.gouv.etalab.mastodon.client.APIResponse;
import fr.gouv.etalab.mastodon.client.Entities.Account;
2017-09-02 19:15:29 +02:00
import fr.gouv.etalab.mastodon.drawers.AccountSearchWebAdapter;
import fr.gouv.etalab.mastodon.helper.Helper;
2017-09-02 19:15:29 +02:00
import fr.gouv.etalab.mastodon.interfaces.OnRetrieveRemoteAccountInterface;
import fr.gouv.etalab.mastodon.interfaces.OnRetrieveSearcAccountshInterface;
2017-05-05 16:36:04 +02:00
import mastodon.etalab.gouv.fr.mastodon.R;
/**
* Created by Thomas on 05/05/2017.
* About activity
*/
2017-09-02 19:15:29 +02:00
public class AboutActivity extends AppCompatActivity implements OnRetrieveRemoteAccountInterface {
2017-09-02 19:15:29 +02:00
private ListView lv_developers;
private ListView lv_contributors;
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-09-02 19:37:18 +02:00
private AccountSearchWebAdapter accountSearchWebAdapterDeveloper;
private AccountSearchWebAdapter accountSearchWebAdapterContributors;
2017-05-05 16:36:04 +02:00
@SuppressWarnings("deprecation")
@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);
2017-06-30 17:09:07 +02:00
if( theme == Helper.THEME_LIGHT){
setTheme(R.style.AppTheme);
}else {
setTheme(R.style.AppThemeDark);
}
2017-05-05 16:36:04 +02:00
if( getSupportActionBar() != null)
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
setContentView(R.layout.activity_about);
TextView about_version = (TextView) findViewById(R.id.about_version);
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-09-02 19:15:29 +02:00
lv_developers = (ListView) findViewById(R.id.lv_developers);
lv_contributors = (ListView) findViewById(R.id.lv_contributors);
Button about_code = (Button) findViewById(R.id.about_code);
Button about_license = (Button) findViewById(R.id.about_license);
Button about_thekinrar = (Button) findViewById(R.id.about_thekinrar);
about_code.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://bitbucket.org/tom79/mastodon_etalab/src"));
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
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-07-17 18:53:12 +02:00
Button about_translation = (Button) findViewById(R.id.about_translation);
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
if( theme == Helper.THEME_LIGHT) {
about_code.setTextColor(ContextCompat.getColor(getApplicationContext(), R.color.white));
about_thekinrar.setTextColor(ContextCompat.getColor(getApplicationContext(), R.color.white));
about_translation.setTextColor(ContextCompat.getColor(getApplicationContext(), R.color.white));
about_license.setTextColor(ContextCompat.getColor(getApplicationContext(), R.color.white));
}
2017-09-02 19:15:29 +02:00
2017-09-02 19:37:18 +02:00
accountSearchWebAdapterContributors = new AccountSearchWebAdapter(AboutActivity.this, contributors);
lv_contributors.setAdapter(accountSearchWebAdapterContributors);
accountSearchWebAdapterDeveloper = new AccountSearchWebAdapter(AboutActivity.this, developers);
lv_developers.setAdapter(accountSearchWebAdapterDeveloper);
Log.v(Helper.TAG,"here");
2017-09-02 19:15:29 +02:00
new RetrieveRemoteAccountsAsyncTask("tschneider", "mastodon.etalab.gouv.fr", AboutActivity.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
new RetrieveRemoteAccountsAsyncTask("PhotonQyv", "mastodon.xyz", AboutActivity.this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
new RetrieveRemoteAccountsAsyncTask("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-09-02 19:15:29 +02:00
public void onRetrieveRemoteAccount(boolean error, String name, String username, String instance_name, boolean locked, String avatar, String bio, int statusCount, int followingCount, int followersCount) {
if( error){
return;
}
2017-09-02 19:15:29 +02:00
Account account = new Account();
account.setInstance(instance_name);
account.setAcct(username + "@" + instance_name);
account.setAvatar(avatar);
account.setDisplay_name(username);
account.setStatuses_count(statusCount);
account.setFollowers_count(followersCount);
account.setFollowing_count(followingCount);
account.setUsername(name);
account.setLocked(locked);
account.setNote(bio);
if( username.equals("tschneider")) {
2017-09-02 19:37:18 +02:00
developers.add(account);
accountSearchWebAdapterDeveloper.notifyDataSetChanged();
2017-09-02 19:15:29 +02:00
}else {
contributors.add(account);
2017-09-02 19:37:18 +02:00
accountSearchWebAdapterContributors.notifyDataSetChanged();
2017-09-02 19:15:29 +02:00
}
}
2017-05-05 16:36:04 +02:00
}