mirror of
https://github.com/nextcloud/talk-android
synced 2025-06-30 17:10:31 +01:00
198 lines
8.0 KiB
Java
198 lines
8.0 KiB
Java
/*
|
|
* Nextcloud Talk application
|
|
*
|
|
* @author Mario Danic
|
|
* Copyright (C) 2017 Mario Danic <mario@lovelyhq.com>
|
|
*
|
|
* 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.
|
|
*
|
|
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
package com.nextcloud.talk.jobs;
|
|
|
|
|
|
import android.support.annotation.NonNull;
|
|
import android.text.TextUtils;
|
|
import android.util.Log;
|
|
|
|
import com.bluelinelabs.logansquare.LoganSquare;
|
|
import com.evernote.android.job.Job;
|
|
import com.nextcloud.talk.api.NcApi;
|
|
import com.nextcloud.talk.api.helpers.api.ApiHelper;
|
|
import com.nextcloud.talk.api.models.json.generic.GenericOverall;
|
|
import com.nextcloud.talk.api.models.json.push.PushConfigurationState;
|
|
import com.nextcloud.talk.application.NextcloudTalkApplication;
|
|
import com.nextcloud.talk.persistence.entities.UserEntity;
|
|
import com.nextcloud.talk.utils.database.user.UserUtils;
|
|
|
|
import java.io.IOException;
|
|
import java.net.CookieManager;
|
|
import java.util.HashMap;
|
|
|
|
import javax.inject.Inject;
|
|
|
|
import autodagger.AutoInjector;
|
|
import io.reactivex.CompletableObserver;
|
|
import io.reactivex.Observer;
|
|
import io.reactivex.disposables.Disposable;
|
|
import okhttp3.JavaNetCookieJar;
|
|
import okhttp3.OkHttpClient;
|
|
import retrofit2.Retrofit;
|
|
|
|
@AutoInjector(NextcloudTalkApplication.class)
|
|
public class AccountRemovalJob extends Job {
|
|
public static final String TAG = "AccountRemovalJob";
|
|
|
|
@Inject
|
|
UserUtils userUtils;
|
|
|
|
@Inject
|
|
Retrofit retrofit;
|
|
|
|
@Inject
|
|
OkHttpClient okHttpClient;
|
|
|
|
NcApi ncApi;
|
|
|
|
@NonNull
|
|
@Override
|
|
protected Result onRunJob(Params params) {
|
|
NextcloudTalkApplication.getSharedApplication().getComponentApplication().inject(this);
|
|
|
|
PushConfigurationState pushConfigurationState;
|
|
for (Object userEntityObject : userUtils.getUsersScheduledForDeletion()) {
|
|
UserEntity userEntity = (UserEntity) userEntityObject;
|
|
try {
|
|
if (!TextUtils.isEmpty(userEntity.getPushConfigurationState())) {
|
|
pushConfigurationState = LoganSquare.parse(userEntity.getPushConfigurationState(),
|
|
PushConfigurationState.class);
|
|
PushConfigurationState finalPushConfigurationState = pushConfigurationState;
|
|
|
|
ncApi = retrofit.newBuilder().client(okHttpClient.newBuilder().cookieJar(new
|
|
JavaNetCookieJar(new CookieManager())).build()).build().create(NcApi.class);
|
|
|
|
ncApi.unregisterDeviceForNotificationsWithNextcloud(ApiHelper.getCredentials(userEntity.getUsername(),
|
|
userEntity.getToken()), ApiHelper.getUrlNextcloudPush(userEntity.getBaseUrl()))
|
|
.subscribe(new Observer<GenericOverall>() {
|
|
@Override
|
|
public void onSubscribe(Disposable d) {
|
|
|
|
}
|
|
|
|
@Override
|
|
public void onNext(GenericOverall genericOverall) {
|
|
if (genericOverall.getOcs().getMeta().getStatusCode() == 200
|
|
|| genericOverall.getOcs().getMeta().getStatusCode() == 202) {
|
|
HashMap<String, String> queryMap = new HashMap<>();
|
|
queryMap.put("deviceIdentifier", finalPushConfigurationState.deviceIdentifier);
|
|
queryMap.put("userPublicKey", finalPushConfigurationState.getUserPublicKey());
|
|
queryMap.put("deviceIdentifierSignature",
|
|
finalPushConfigurationState.getDeviceIdentifierSignature());
|
|
|
|
ncApi.unregisterDeviceForNotificationsWithProxy
|
|
(ApiHelper.getCredentials(userEntity.getUsername(),
|
|
userEntity.getToken()), ApiHelper.getUrlPushProxy(), queryMap)
|
|
.subscribe(new Observer<Void>() {
|
|
@Override
|
|
public void onSubscribe(Disposable d) {
|
|
|
|
}
|
|
|
|
@Override
|
|
public void onNext(Void aVoid) {
|
|
userUtils.deleteUser(userEntity.getUsername(),
|
|
userEntity.getBaseUrl()).subscribe(new CompletableObserver() {
|
|
@Override
|
|
public void onSubscribe(Disposable d) {
|
|
|
|
}
|
|
|
|
@Override
|
|
public void onComplete() {
|
|
|
|
}
|
|
|
|
@Override
|
|
public void onError(Throwable e) {
|
|
|
|
}
|
|
});
|
|
}
|
|
|
|
@Override
|
|
public void onError(Throwable e) {
|
|
|
|
}
|
|
|
|
@Override
|
|
public void onComplete() {
|
|
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void onError(Throwable e) {
|
|
|
|
}
|
|
|
|
@Override
|
|
public void onComplete() {
|
|
|
|
}
|
|
});
|
|
} else {
|
|
userUtils.deleteUser(userEntity.getUsername(),
|
|
userEntity.getBaseUrl()).subscribe(new CompletableObserver() {
|
|
@Override
|
|
public void onSubscribe(Disposable d) {
|
|
|
|
}
|
|
|
|
@Override
|
|
public void onComplete() {
|
|
|
|
}
|
|
|
|
@Override
|
|
public void onError(Throwable e) {
|
|
|
|
}
|
|
});
|
|
}
|
|
} catch (IOException e) {
|
|
Log.d(TAG, "Something went wrong while removing job at parsing PushConfigurationState");
|
|
userUtils.deleteUser(userEntity.getUsername(),
|
|
userEntity.getBaseUrl()).subscribe(new CompletableObserver() {
|
|
@Override
|
|
public void onSubscribe(Disposable d) {
|
|
|
|
}
|
|
|
|
@Override
|
|
public void onComplete() {
|
|
|
|
}
|
|
|
|
@Override
|
|
public void onError(Throwable e) {
|
|
|
|
}
|
|
});
|
|
}
|
|
}
|
|
return Result.SUCCESS;
|
|
}
|
|
}
|