mirror of https://codeberg.org/tom79/Fedilab
parent
9dc4b46fdb
commit
8bf21db632
@ -0,0 +1,113 @@
|
||||
package app.fedilab.android.client.endpoints;
|
||||
/* Copyright 2022 Thomas Schneider
|
||||
*
|
||||
* This file is a part of Fedilab
|
||||
*
|
||||
* 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.
|
||||
*
|
||||
* Fedilab 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 Fedilab; if not,
|
||||
* see <http://www.gnu.org/licenses>. */
|
||||
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import app.fedilab.android.client.entities.api.Filter;
|
||||
import retrofit2.Call;
|
||||
import retrofit2.http.DELETE;
|
||||
import retrofit2.http.Field;
|
||||
import retrofit2.http.FormUrlEncoded;
|
||||
import retrofit2.http.GET;
|
||||
import retrofit2.http.Header;
|
||||
import retrofit2.http.POST;
|
||||
import retrofit2.http.PUT;
|
||||
import retrofit2.http.Path;
|
||||
|
||||
|
||||
public interface MastodonFiltersService {
|
||||
|
||||
|
||||
//Get filters
|
||||
@GET("filters")
|
||||
Call<List<Filter>> getFilters(
|
||||
@Header("Authorization") String token);
|
||||
|
||||
//Get a filter with its id
|
||||
@GET("filters/{id}")
|
||||
Call<Filter> getFilter(
|
||||
@Header("Authorization") String token,
|
||||
@Path("id") String id);
|
||||
|
||||
//Add a filter
|
||||
@FormUrlEncoded
|
||||
@POST("filters")
|
||||
Call<Filter> addFilter(
|
||||
@Header("Authorization") String token,
|
||||
@Field("title") String title,
|
||||
@Field("expires_in") Integer expires_in,
|
||||
@Field("filter_action") String filter_action,
|
||||
@Field("context[]") List<String> context,
|
||||
@Field("keywords_attributes") List<Filter.KeywordsAttributes> keywordsAttributes
|
||||
);
|
||||
|
||||
//Edit a filter
|
||||
@FormUrlEncoded
|
||||
@PUT("filters/{id}")
|
||||
Call<Filter> editFilter(
|
||||
@Header("Authorization") String token,
|
||||
@Path("id") String id,
|
||||
@Field("title") String title,
|
||||
@Field("expires_in") Integer expires_in,
|
||||
@Field("filter_action") String filter_action,
|
||||
@Field("context[]") List<String> context,
|
||||
@Field("keywords_attributes") List<Filter.KeywordsAttributes> keywordsAttributes
|
||||
);
|
||||
|
||||
//Remove a filter
|
||||
@DELETE("filters/{id}")
|
||||
Call<Void> removeFilter(
|
||||
@Header("Authorization") String token,
|
||||
@Path("id") String id
|
||||
);
|
||||
|
||||
|
||||
//Get a filter with its id
|
||||
@GET("filters/{id}/keywords")
|
||||
Call<List<Filter.KeywordsAttributes>> getKeywordFilter(
|
||||
@Header("Authorization") String token,
|
||||
@Path("id") String id);
|
||||
|
||||
//Add a keyword to a filter
|
||||
@FormUrlEncoded
|
||||
@POST("filters/{filter_id}/keywords/{id}")
|
||||
Call<Filter.KeywordsAttributes> addKeywordFilter(
|
||||
@Header("Authorization") String token,
|
||||
@Path("filter_id") String filter_id,
|
||||
@Path("id") String id,
|
||||
@Field("keyword") Filter.Keyword keyword
|
||||
);
|
||||
|
||||
//Edit a keyword for a filter
|
||||
@FormUrlEncoded
|
||||
@PUT("filters/{filter_id}/keywords/{id}")
|
||||
Call<Filter.KeywordsAttributes> editKeywordFilter(
|
||||
@Header("Authorization") String token,
|
||||
@Path("filter_id") String filter_id,
|
||||
@Path("id") String id,
|
||||
@Field("keyword") Filter.Keyword keyword
|
||||
);
|
||||
|
||||
//Remove a keyword for a filter
|
||||
@DELETE("filters/keywords/{id}")
|
||||
Call<Void> removeKeywordFilter(
|
||||
@Header("Authorization") String token,
|
||||
@Path("id") String id
|
||||
);
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,223 @@
|
||||
package app.fedilab.android.viewmodel.mastodon;
|
||||
/* Copyright 2022 Thomas Schneider
|
||||
*
|
||||
* This file is a part of Fedilab
|
||||
*
|
||||
* 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.
|
||||
*
|
||||
* Fedilab 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 Fedilab; if not,
|
||||
* see <http://www.gnu.org/licenses>. */
|
||||
|
||||
|
||||
import android.app.Application;
|
||||
import android.os.Handler;
|
||||
import android.os.Looper;
|
||||
import android.util.Log;
|
||||
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.lifecycle.AndroidViewModel;
|
||||
import androidx.lifecycle.LiveData;
|
||||
import androidx.lifecycle.MutableLiveData;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
import app.fedilab.android.BaseMainActivity;
|
||||
import app.fedilab.android.client.endpoints.MastodonFiltersService;
|
||||
import app.fedilab.android.client.entities.api.Filter;
|
||||
import app.fedilab.android.helper.Helper;
|
||||
import okhttp3.OkHttpClient;
|
||||
import retrofit2.Call;
|
||||
import retrofit2.Response;
|
||||
import retrofit2.Retrofit;
|
||||
import retrofit2.converter.gson.GsonConverterFactory;
|
||||
|
||||
public class FiltersVM extends AndroidViewModel {
|
||||
|
||||
|
||||
final OkHttpClient okHttpClient = new OkHttpClient.Builder()
|
||||
.readTimeout(60, TimeUnit.SECONDS)
|
||||
.connectTimeout(60, TimeUnit.SECONDS)
|
||||
.callTimeout(60, TimeUnit.SECONDS)
|
||||
.proxy(Helper.getProxy(getApplication().getApplicationContext()))
|
||||
.build();
|
||||
|
||||
|
||||
private MutableLiveData<Filter> filterMutableLiveData;
|
||||
private MutableLiveData<List<Filter>> filterListMutableLiveData;
|
||||
|
||||
public FiltersVM(@NonNull Application application) {
|
||||
super(application);
|
||||
}
|
||||
|
||||
private MastodonFiltersService initV2(String instance) {
|
||||
Retrofit retrofit = new Retrofit.Builder()
|
||||
.baseUrl("https://" + instance + "/api/v2/")
|
||||
.addConverterFactory(GsonConverterFactory.create(Helper.getDateBuilder()))
|
||||
.client(okHttpClient)
|
||||
.build();
|
||||
return retrofit.create(MastodonFiltersService.class);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* View all filters created by the user
|
||||
*
|
||||
* @return {@link LiveData} containing a {@link List} of {@link Filter}s
|
||||
*/
|
||||
public LiveData<List<Filter>> getFilters(@NonNull String instance, String token) {
|
||||
filterListMutableLiveData = new MutableLiveData<>();
|
||||
MastodonFiltersService mastodonFiltersService = initV2(instance);
|
||||
new Thread(() -> {
|
||||
List<Filter> filterList = null;
|
||||
Call<List<Filter>> getFiltersCall = mastodonFiltersService.getFilters(token);
|
||||
if (getFiltersCall != null) {
|
||||
try {
|
||||
Response<List<Filter>> getFiltersResponse = getFiltersCall.execute();
|
||||
if (getFiltersResponse.isSuccessful()) {
|
||||
BaseMainActivity.filterFetched = true;
|
||||
filterList = getFiltersResponse.body();
|
||||
}
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
Handler mainHandler = new Handler(Looper.getMainLooper());
|
||||
List<Filter> finalFilterList = filterList;
|
||||
Runnable myRunnable = () -> filterListMutableLiveData.setValue(finalFilterList);
|
||||
mainHandler.post(myRunnable);
|
||||
}).start();
|
||||
return filterListMutableLiveData;
|
||||
}
|
||||
|
||||
/**
|
||||
* View a single filter
|
||||
*
|
||||
* @param id the id of the filter
|
||||
* @return {@link LiveData} containing a {@link Filter}
|
||||
*/
|
||||
public LiveData<Filter> getFilter(@NonNull String instance, String token, @NonNull String id) {
|
||||
filterMutableLiveData = new MutableLiveData<>();
|
||||
MastodonFiltersService mastodonFiltersService = initV2(instance);
|
||||
new Thread(() -> {
|
||||
Filter filter = null;
|
||||
Call<Filter> getFilterCall = mastodonFiltersService.getFilter(token, id);
|
||||
if (getFilterCall != null) {
|
||||
try {
|
||||
Response<Filter> getFiltersResponse = getFilterCall.execute();
|
||||
if (getFiltersResponse.isSuccessful()) {
|
||||
filter = getFiltersResponse.body();
|
||||
}
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
Handler mainHandler = new Handler(Looper.getMainLooper());
|
||||
Filter finalFilter = filter;
|
||||
Runnable myRunnable = () -> filterMutableLiveData.setValue(finalFilter);
|
||||
mainHandler.post(myRunnable);
|
||||
}).start();
|
||||
return filterMutableLiveData;
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a filter
|
||||
*
|
||||
* @param phrase Text to be filtered
|
||||
* @param filterContext Array of enumerable strings "home", "notifications", "public", "thread". At least one context must be specified.
|
||||
* @param irreversible Should the server irreversibly drop matching entities from home and notifications?
|
||||
* @param wholeWord Consider word boundaries?
|
||||
* @param expiresIn Number of seconds from now the filter should expire. Otherwise, null for a filter that doesn't expire.
|
||||
* @return {@link LiveData} containing a {@link Filter}
|
||||
*/
|
||||
public LiveData<Filter> addFilter(@NonNull String instance, String token,
|
||||
@NonNull String phrase,
|
||||
@NonNull List<String> filterContext,
|
||||
boolean irreversible,
|
||||
boolean wholeWord,
|
||||
int expiresIn) {
|
||||
filterMutableLiveData = new MutableLiveData<>();
|
||||
MastodonFiltersService mastodonFiltersService = initV2(instance);
|
||||
new Thread(() -> {
|
||||
Filter filter = null;
|
||||
Call<Filter> addFilterCall = mastodonFiltersService.addFilter(token, phrase, filterContext, irreversible, wholeWord, expiresIn == -1 ? null : expiresIn);
|
||||
if (addFilterCall != null) {
|
||||
try {
|
||||
Response<Filter> addFiltersResponse = addFilterCall.execute();
|
||||
if (addFiltersResponse.isSuccessful()) {
|
||||
filter = addFiltersResponse.body();
|
||||
}
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
Handler mainHandler = new Handler(Looper.getMainLooper());
|
||||
Filter finalFilter = filter;
|
||||
Runnable myRunnable = () -> filterMutableLiveData.setValue(finalFilter);
|
||||
mainHandler.post(myRunnable);
|
||||
}).start();
|
||||
return filterMutableLiveData;
|
||||
}
|
||||
|
||||
/**
|
||||
* Update a filter
|
||||
*
|
||||
* @param id ID of the filter
|
||||
* @param phrase Text to be filtered
|
||||
* @param filterContext Array of enumerable strings "home", "notifications", "public", "thread". At least one context must be specified.
|
||||
* @param irreversible Should the server irreversibly drop matching entities from home and notifications?
|
||||
* @param wholeWord Consider word boundaries?
|
||||
* @param expiresIn Number of seconds from now the filter should expire. Otherwise, null for a filter that doesn't expire.
|
||||
* @return {@link LiveData} containing a {@link Filter}
|
||||
*/
|
||||
public LiveData<Filter> editFilter(@NonNull String instance, String token, @NonNull String id, @NonNull String phrase, @NonNull List<String> filterContext, boolean irreversible, boolean wholeWord, int expiresIn) {
|
||||
filterMutableLiveData = new MutableLiveData<>();
|
||||
MastodonFiltersService mastodonFiltersService = initV2(instance);
|
||||
new Thread(() -> {
|
||||
Filter filter = null;
|
||||
Call<Filter> editFilterCall = mastodonFiltersService.editFilter(token, id, phrase, filterContext, irreversible, wholeWord, expiresIn == -1 ? null : expiresIn);
|
||||
if (editFilterCall != null) {
|
||||
Log.v(Helper.TAG, "request: " + editFilterCall.request());
|
||||
try {
|
||||
Response<Filter> editFiltersResponse = editFilterCall.execute();
|
||||
if (editFiltersResponse.isSuccessful()) {
|
||||
filter = editFiltersResponse.body();
|
||||
}
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
Handler mainHandler = new Handler(Looper.getMainLooper());
|
||||
Filter finalFilter = filter;
|
||||
Runnable myRunnable = () -> filterMutableLiveData.setValue(finalFilter);
|
||||
mainHandler.post(myRunnable);
|
||||
}).start();
|
||||
return filterMutableLiveData;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove a filter
|
||||
*
|
||||
* @param id ID of the filter
|
||||
*/
|
||||
public void removeFilter(@NonNull String instance, String token, @NonNull String id) {
|
||||
MastodonFiltersService mastodonAccountsService = initV2(instance);
|
||||
new Thread(() -> {
|
||||
Call<Void> removeFilterCall = mastodonAccountsService.removeFilter(token, id);
|
||||
if (removeFilterCall != null) {
|
||||
try {
|
||||
removeFilterCall.execute();
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
}).start();
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in new issue