fedilab-Android-App/app/src/main/java/fr/gouv/etalab/mastodon/asynctasks/RetrieveAccountsAsyncTask.java

135 lines
4.7 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.asynctasks;
import android.content.Context;
import android.os.AsyncTask;
2017-10-27 15:09:26 +02:00
import java.lang.ref.WeakReference;
2019-02-03 16:06:06 +01:00
import fr.gouv.etalab.mastodon.activities.MainActivity;
2017-05-05 16:36:04 +02:00
import fr.gouv.etalab.mastodon.client.API;
2017-06-03 18:18:27 +02:00
import fr.gouv.etalab.mastodon.client.APIResponse;
2019-02-03 16:06:06 +01:00
import fr.gouv.etalab.mastodon.client.GNUAPI;
2017-05-05 16:36:04 +02:00
import fr.gouv.etalab.mastodon.interfaces.OnRetrieveAccountsInterface;
/**
* Created by Thomas on 27/04/2017.
* Retrieves accounts on the instance
*/
public class RetrieveAccountsAsyncTask extends AsyncTask<Void, Void, Void> {
private Type action;
2017-06-03 18:18:27 +02:00
private APIResponse apiResponse;
2017-05-05 16:36:04 +02:00
private String max_id;
private OnRetrieveAccountsInterface listener;
private String targetedId;
2017-10-27 15:09:26 +02:00
private WeakReference<Context> contextReference;
2018-10-22 17:09:25 +02:00
private String instance, name;
2017-05-05 16:36:04 +02:00
public enum Type{
BLOCKED,
MUTED,
FOLLOWING,
2018-10-22 17:09:25 +02:00
FOLLOWERS,
CHANNELS,
REBLOGGED,
FAVOURITED
2018-10-22 17:09:25 +02:00
}
public RetrieveAccountsAsyncTask(Context context, String instance, String name, OnRetrieveAccountsInterface onRetrieveAccountsInterface){
this.contextReference = new WeakReference<>(context);
this.instance = instance;
this.name = name;
this.listener = onRetrieveAccountsInterface;
this.action = Type.CHANNELS;
2017-05-05 16:36:04 +02:00
}
public RetrieveAccountsAsyncTask(Context context, Type action, String targetedId, String max_id, OnRetrieveAccountsInterface onRetrieveAccountsInterface){
2017-10-27 15:09:26 +02:00
this.contextReference = new WeakReference<>(context);
2017-05-05 16:36:04 +02:00
this.action = action;
this.max_id = max_id;
this.listener = onRetrieveAccountsInterface;
this.targetedId = targetedId;
}
public RetrieveAccountsAsyncTask(Context context, Type action, String max_id, OnRetrieveAccountsInterface onRetrieveAccountsInterface){
2017-10-27 15:09:26 +02:00
this.contextReference = new WeakReference<>(context);
2017-05-05 16:36:04 +02:00
this.action = action;
this.max_id = max_id;
this.listener = onRetrieveAccountsInterface;
}
@Override
protected Void doInBackground(Void... params) {
2019-02-03 16:06:06 +01:00
API api = null;
GNUAPI gnuapi = null;
if( MainActivity.social != UpdateAccountInfoAsyncTask.SOCIAL.GNU)
api = new API(this.contextReference.get());
else
gnuapi = new GNUAPI(this.contextReference.get());
2017-05-05 16:36:04 +02:00
switch (action){
case REBLOGGED:
2019-02-03 16:06:06 +01:00
assert api != null;
apiResponse = api.getRebloggedBy(targetedId, max_id);
break;
case FAVOURITED:
2019-02-03 16:06:06 +01:00
assert api != null;
apiResponse = api.getFavouritedBy(targetedId, max_id);
break;
2017-05-05 16:36:04 +02:00
case BLOCKED:
2019-02-03 16:06:06 +01:00
assert api != null;
2017-06-03 18:18:27 +02:00
apiResponse = api.getBlocks(max_id);
2017-05-05 16:36:04 +02:00
break;
case MUTED:
2019-02-03 16:06:06 +01:00
assert api != null;
2017-06-03 18:18:27 +02:00
apiResponse = api.getMuted(max_id);
2017-05-05 16:36:04 +02:00
break;
case FOLLOWING:
2019-02-03 16:06:06 +01:00
if(MainActivity.social != UpdateAccountInfoAsyncTask.SOCIAL.GNU) {
assert api != null;
apiResponse = api.getFollowing(targetedId, max_id);
}
else {
assert gnuapi != null;
apiResponse = gnuapi.getFollowing(targetedId, max_id);
}
2017-05-05 16:36:04 +02:00
break;
case FOLLOWERS:
2019-02-03 16:06:06 +01:00
if(MainActivity.social != UpdateAccountInfoAsyncTask.SOCIAL.GNU) {
assert api != null;
apiResponse = api.getFollowers(targetedId, max_id);
}else {
assert gnuapi != null;
apiResponse = gnuapi.getFollowers(targetedId, max_id);
}
2017-05-05 16:36:04 +02:00
break;
2018-10-22 17:09:25 +02:00
case CHANNELS:
2019-02-03 16:06:06 +01:00
assert api != null;
2018-10-22 17:09:25 +02:00
apiResponse = api.getPeertubeChannel(instance, name);
break;
2017-05-05 16:36:04 +02:00
}
return null;
}
@Override
protected void onPostExecute(Void result) {
2017-06-03 18:18:27 +02:00
listener.onRetrieveAccounts(apiResponse);
2017-05-05 16:36:04 +02:00
}
}