-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
- Loading branch information
1 parent
24204d5
commit 5fc786f
Showing
11 changed files
with
363 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
54 changes: 54 additions & 0 deletions
54
src/main/java/com/owncloud/android/ui/asynctasks/DeleteAllNotificationsTask.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
/* | ||
* Nextcloud Android client application | ||
* | ||
* @author Tobias Kaminsky | ||
* Copyright (C) 2019 Tobias Kaminsky | ||
* Copyright (C) 2019 Nextcloud GmbH | ||
* | ||
* 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 <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package com.owncloud.android.ui.asynctasks; | ||
|
||
import android.os.AsyncTask; | ||
|
||
import com.owncloud.android.lib.common.OwnCloudClient; | ||
import com.owncloud.android.lib.common.operations.RemoteOperationResult; | ||
import com.owncloud.android.lib.resources.notifications.DeleteAllNotificationsRemoteOperation; | ||
import com.owncloud.android.lib.resources.notifications.models.Action; | ||
import com.owncloud.android.ui.activity.NotificationsActivity; | ||
import com.owncloud.android.ui.notifications.NotificationsContract; | ||
|
||
public class DeleteAllNotificationsTask extends AsyncTask<Action, Void, Boolean> { | ||
private OwnCloudClient client; | ||
private NotificationsContract.View notificationsActivity; | ||
|
||
public DeleteAllNotificationsTask(OwnCloudClient client, NotificationsActivity notificationsActivity) { | ||
this.client = client; | ||
this.notificationsActivity = notificationsActivity; | ||
} | ||
|
||
@Override | ||
protected Boolean doInBackground(Action... actions) { | ||
|
||
RemoteOperationResult result = new DeleteAllNotificationsRemoteOperation().execute(client); | ||
|
||
return result.isSuccess(); | ||
} | ||
|
||
@Override | ||
protected void onPostExecute(Boolean success) { | ||
notificationsActivity.onRemovedAllNotifications(success); | ||
} | ||
} |
63 changes: 63 additions & 0 deletions
63
src/main/java/com/owncloud/android/ui/asynctasks/DeleteNotificationTask.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/* | ||
* Nextcloud Android client application | ||
* | ||
* @author Tobias Kaminsky | ||
* Copyright (C) 2019 Tobias Kaminsky | ||
* Copyright (C) 2019 Nextcloud GmbH | ||
* | ||
* 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 <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package com.owncloud.android.ui.asynctasks; | ||
|
||
import android.os.AsyncTask; | ||
|
||
import com.owncloud.android.lib.common.OwnCloudClient; | ||
import com.owncloud.android.lib.common.operations.RemoteOperationResult; | ||
import com.owncloud.android.lib.resources.notifications.DeleteNotificationRemoteOperation; | ||
import com.owncloud.android.lib.resources.notifications.models.Action; | ||
import com.owncloud.android.lib.resources.notifications.models.Notification; | ||
import com.owncloud.android.ui.activity.NotificationsActivity; | ||
import com.owncloud.android.ui.adapter.NotificationListAdapter; | ||
import com.owncloud.android.ui.notifications.NotificationsContract; | ||
|
||
public class DeleteNotificationTask extends AsyncTask<Action, Void, Boolean> { | ||
private Notification notification; | ||
private NotificationListAdapter.NotificationViewHolder holder; | ||
private OwnCloudClient client; | ||
private NotificationsContract.View notificationsActivity; | ||
|
||
public DeleteNotificationTask(OwnCloudClient client, Notification notification, | ||
NotificationListAdapter.NotificationViewHolder holder, | ||
NotificationsActivity notificationsActivity) { | ||
this.client = client; | ||
this.notification = notification; | ||
this.holder = holder; | ||
this.notificationsActivity = notificationsActivity; | ||
} | ||
|
||
@Override | ||
protected Boolean doInBackground(Action... actions) { | ||
|
||
RemoteOperationResult result = new DeleteNotificationRemoteOperation(notification.notificationId) | ||
.execute(client); | ||
|
||
return result.isSuccess(); | ||
} | ||
|
||
@Override | ||
protected void onPostExecute(Boolean success) { | ||
notificationsActivity.onRemovedNotification(success, holder); | ||
} | ||
} |
Oops, something went wrong.