/* * Copyright 2012 GitHub Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.github.mobile.ui.issue; import static com.github.mobile.RequestCodes.ISSUE_CLOSE; import static com.github.mobile.RequestCodes.ISSUE_REOPEN; import static org.eclipse.egit.github.core.service.IssueService.STATE_CLOSED; import static org.eclipse.egit.github.core.service.IssueService.STATE_OPEN; import android.accounts.Account; import com.github.mobile.R.string; import com.github.mobile.core.issue.IssueStore; import com.github.mobile.ui.ConfirmDialogFragment; import com.github.mobile.ui.DialogFragmentActivity; import com.github.mobile.ui.ProgressDialogTask; import com.google.inject.Inject; import org.eclipse.egit.github.core.IRepositoryIdProvider; import org.eclipse.egit.github.core.Issue; /** * Task to close or reopen an issue */ public class EditStateTask extends ProgressDialogTask<Issue> { @Inject private IssueStore store; private final IRepositoryIdProvider repositoryId; private final int issueNumber; private boolean close; /** * Create task to edit issue state * * @param activity * @param repositoryId * @param issueNumber */ public EditStateTask(final DialogFragmentActivity activity, final IRepositoryIdProvider repositoryId, final int issueNumber) { super(activity); this.repositoryId = repositoryId; this.issueNumber = issueNumber; } /** * Confirm action * * @param close * @return this task */ public EditStateTask confirm(boolean close) { if (close) ConfirmDialogFragment.show((DialogFragmentActivity) getContext(), ISSUE_CLOSE, getString(string.issue_confirm_close_title), getString(string.issue_confirm_close_message)); else ConfirmDialogFragment.show((DialogFragmentActivity) getContext(), ISSUE_REOPEN, getString(string.issue_confirm_reopen_title), getString(string.issue_confirm_reopen_message)); return this; } @Override protected Issue run(Account account) throws Exception { Issue editedIssue = new Issue(); editedIssue.setNumber(issueNumber); if (close) editedIssue.setState(STATE_CLOSED); else editedIssue.setState(STATE_OPEN); return store.editIssue(repositoryId, editedIssue); } /** * Edit state of issue * * @param close * @return this task */ public EditStateTask edit(boolean close) { if (close) showIndeterminate(string.closing_issue); else showIndeterminate(string.reopening_issue); this.close = close; execute(); return this; } }