12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- /*
- * Nextcloud Android client application
- *
- * @author Tobias Kaminsky
- * Copyright (C) 2018 Tobias Kaminsky
- * Copyright (C) 2018 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.operations;
- import com.owncloud.android.lib.common.OwnCloudClient;
- import com.owncloud.android.lib.common.operations.RemoteOperation;
- import com.owncloud.android.lib.common.operations.RemoteOperationResult;
- import com.owncloud.android.lib.resources.shares.GetRemoteShareOperation;
- import com.owncloud.android.lib.resources.shares.OCShare;
- import com.owncloud.android.lib.resources.shares.UpdateRemoteShareOperation;
- import com.owncloud.android.operations.common.SyncOperation;
- /**
- * Updates a note of a private share.
- */
- public class UpdateNoteForShareOperation extends SyncOperation {
- private long shareId;
- private String note;
- public UpdateNoteForShareOperation(long shareId, String note) {
- this.shareId = shareId;
- this.note = note;
- }
- @Override
- protected RemoteOperationResult run(OwnCloudClient client) {
- OCShare share = getStorageManager().getShareById(shareId);
- if (share == null) {
- return new RemoteOperationResult(RemoteOperationResult.ResultCode.SHARE_NOT_FOUND);
- }
- UpdateRemoteShareOperation updateOperation = new UpdateRemoteShareOperation(share.getRemoteId());
- updateOperation.setNote(note);
- RemoteOperationResult result = updateOperation.execute(client);
- if (result.isSuccess()) {
- RemoteOperation getShareOp = new GetRemoteShareOperation(share.getRemoteId());
- result = getShareOp.execute(client);
- if (result.isSuccess()) {
- getStorageManager().saveShare((OCShare) result.getData().get(0));
- }
- }
- return result;
- }
- }
|