blob: 94674bad98b863574a3e1674b22a333c018e6e3f (
plain) (
tree)
|
|
package ml.docilealligator.infinityforreddit.asynctasks;
import android.os.Handler;
import androidx.annotation.NonNull;
import java.util.concurrent.Executor;
import ml.docilealligator.infinityforreddit.RedditDataRoomDatabase;
import ml.docilealligator.infinityforreddit.account.Account;
import ml.docilealligator.infinityforreddit.subscribeduser.SubscribedUserData;
public class CheckIsFollowingUser {
public static void checkIsFollowingUser(Executor executor, Handler handler,
RedditDataRoomDatabase redditDataRoomDatabase, String username,
@NonNull String accountName, CheckIsFollowingUserListener checkIsFollowingUserListener) {
executor.execute(() -> {
SubscribedUserData subscribedUserData = redditDataRoomDatabase.subscribedUserDao().getSubscribedUser(username, accountName.equals(Account.ANONYMOUS_ACCOUNT) ? Account.ANONYMOUS_ACCOUNT : accountName);
handler.post(() -> {
if (subscribedUserData != null) {
checkIsFollowingUserListener.isSubscribed();
} else {
checkIsFollowingUserListener.isNotSubscribed();
}
});
});
}
public interface CheckIsFollowingUserListener {
void isSubscribed();
void isNotSubscribed();
}
}
|