package org.mian.gitnex.activities; import android.annotation.SuppressLint; import android.content.Context; import android.os.Bundle; import android.util.Log; import android.view.View; import android.view.inputmethod.InputMethodManager; import android.widget.ArrayAdapter; import androidx.annotation.NonNull; import com.google.gson.JsonElement; import org.gitnex.tea4j.models.MergePullRequest; import org.gitnex.tea4j.models.MergePullRequestSpinner; import org.mian.gitnex.R; import org.mian.gitnex.clients.RetrofitClient; import org.mian.gitnex.databinding.ActivityMergePullRequestBinding; import org.mian.gitnex.helpers.AlertDialogs; import org.mian.gitnex.helpers.AppUtil; import org.mian.gitnex.helpers.Authorization; import org.mian.gitnex.helpers.Toasty; import org.mian.gitnex.helpers.Version; import java.util.ArrayList; import java.util.Objects; import okhttp3.ResponseBody; import retrofit2.Call; import retrofit2.Callback; /** * Author M M Arif */ public class MergePullRequestActivity extends BaseActivity { private View.OnClickListener onClickListener; private String repoOwner; private String repoName; private int prIndex; private ActivityMergePullRequestBinding viewBinding; private String Do; @SuppressLint("SetTextI18n") @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); viewBinding = ActivityMergePullRequestBinding.inflate(getLayoutInflater()); setContentView(viewBinding.getRoot()); String repoFullName = tinyDB.getString("repoFullName"); String[] parts = repoFullName.split("/"); repoOwner = parts[0]; repoName = parts[1]; prIndex = Integer.parseInt(tinyDB.getString("issueNumber")); boolean connToInternet = AppUtil.hasNetworkConnection(appCtx); InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); viewBinding.mergeTitle.requestFocus(); assert imm != null; imm.showSoftInput(viewBinding.mergeTitle, InputMethodManager.SHOW_IMPLICIT); setMergeAdapter(); if(!tinyDB.getString("issueTitle").isEmpty()) { viewBinding.toolbarTitle.setText(tinyDB.getString("issueTitle")); viewBinding.mergeTitle.setText(tinyDB.getString("issueTitle") + " (#" + tinyDB.getString("issueNumber") + ")"); } initCloseListener(); viewBinding.close.setOnClickListener(onClickListener); // if gitea version is greater/equal(1.12.0) than user installed version (installed.higherOrEqual(compareVer)) if(new Version(tinyDB.getString("giteaVersion")).higherOrEqual("1.12.0")) { viewBinding.deleteBranch.setVisibility(View.VISIBLE); } if(tinyDB.getString("prMergeable").equals("false")) { disableProcessButton(); viewBinding.mergeInfoDisabledMessage.setVisibility(View.VISIBLE); } else { viewBinding.mergeInfoDisabledMessage.setVisibility(View.GONE); } if(tinyDB.getString("prIsFork").equals("true")) { viewBinding.deleteBranchForkInfo.setVisibility(View.VISIBLE); } else { viewBinding.deleteBranchForkInfo.setVisibility(View.GONE); } if(!connToInternet) { disableProcessButton(); } else { viewBinding.mergeButton.setOnClickListener(mergePullRequest); } } private void setMergeAdapter() { ArrayList mergeList = new ArrayList<>(); mergeList.add(new MergePullRequestSpinner("merge", getResources().getString(R.string.mergeOptionMerge))); mergeList.add(new MergePullRequestSpinner("rebase", getResources().getString(R.string.mergeOptionRebase))); mergeList.add(new MergePullRequestSpinner("rebase-merge", getResources().getString(R.string.mergeOptionRebaseCommit))); // squash merge works only on gitea > v1.11.4 due to a bug if(new Version(tinyDB.getString("giteaVersion")).higher("1.11.4")) { mergeList.add(new MergePullRequestSpinner("squash", getResources().getString(R.string.mergeOptionSquash))); } ArrayAdapter adapter = new ArrayAdapter<>(MergePullRequestActivity.this, R.layout.list_spinner_items, mergeList); viewBinding.mergeSpinner.setAdapter(adapter); viewBinding.mergeSpinner.setOnItemClickListener ((parent, view, position, id) -> { Do = mergeList.get(position).getId(); }); } private void initCloseListener() { onClickListener = view -> finish(); } private final View.OnClickListener mergePullRequest = v -> processMergePullRequest(); private void processMergePullRequest() { String mergePRDesc = Objects.requireNonNull(viewBinding.mergeDescription.getText()).toString(); String mergePRTitle = Objects.requireNonNull(viewBinding.mergeTitle.getText()).toString(); boolean deleteBranch = viewBinding.deleteBranch.isChecked(); boolean connToInternet = AppUtil.hasNetworkConnection(appCtx); if(!connToInternet) { Toasty.error(ctx, getResources().getString(R.string.checkNetConnection)); return; } if(Do == null) { Toasty.error(ctx, getResources().getString(R.string.selectMergeStrategy)); } else { disableProcessButton(); mergeFunction(Do, mergePRDesc, mergePRTitle, deleteBranch); } } private void mergeFunction(String Do, String mergePRDT, String mergeTitle, boolean deleteBranch) { MergePullRequest mergePR = new MergePullRequest(Do, mergePRDT, mergeTitle); Call call = RetrofitClient.getApiInterface(ctx).mergePullRequest(Authorization.get(ctx), repoOwner, repoName, prIndex, mergePR); call.enqueue(new Callback() { @Override public void onResponse(@NonNull Call call, @NonNull retrofit2.Response response) { if(response.code() == 200) { if(deleteBranch) { if(tinyDB.getString("prIsFork").equals("true")) { String repoFullName = tinyDB.getString("prForkFullName"); String[] parts = repoFullName.split("/"); final String repoOwner = parts[0]; final String repoName = parts[1]; deleteBranchFunction(repoOwner, repoName); Toasty.success(ctx, getString(R.string.mergePRSuccessMsg)); tinyDB.putBoolean("prMerged", true); tinyDB.putBoolean("resumePullRequests", true); finish(); } else { String repoFullName = tinyDB.getString("repoFullName"); String[] parts = repoFullName.split("/"); final String repoOwner = parts[0]; final String repoName = parts[1]; deleteBranchFunction(repoOwner, repoName); Toasty.success(ctx, getString(R.string.mergePRSuccessMsg)); tinyDB.putBoolean("prMerged", true); tinyDB.putBoolean("resumePullRequests", true); finish(); } } else { Toasty.success(ctx, getString(R.string.mergePRSuccessMsg)); tinyDB.putBoolean("prMerged", true); tinyDB.putBoolean("resumePullRequests", true); finish(); } } else if(response.code() == 401) { enableProcessButton(); AlertDialogs.authorizationTokenRevokedDialog(ctx, getResources().getString(R.string.alertDialogTokenRevokedTitle), getResources().getString(R.string.alertDialogTokenRevokedMessage), getResources().getString(R.string.alertDialogTokenRevokedCopyNegativeButton), getResources().getString(R.string.alertDialogTokenRevokedCopyPositiveButton)); } else if(response.code() == 404) { enableProcessButton(); Toasty.warning(ctx, getString(R.string.mergePR404ErrorMsg)); } else if(response.code() == 405) { enableProcessButton(); Toasty.warning(ctx, getString(R.string.mergeNotAllowed));; } else { enableProcessButton(); Toasty.error(ctx, getString(R.string.genericError)); } } @Override public void onFailure(@NonNull Call call, @NonNull Throwable t) { Log.e("onFailure", t.toString()); enableProcessButton(); } }); } private void deleteBranchFunction(String repoOwner, String repoName) { String branchName = tinyDB.getString("prHeadBranch"); Call call = RetrofitClient .getApiInterface(ctx) .deleteBranch(Authorization.get(ctx), repoOwner, repoName, branchName); call.enqueue(new Callback() { @Override public void onResponse(@NonNull Call call, @NonNull retrofit2.Response response) { if(response.code() == 204) { Log.i("deleteBranch", "Branch deleted successfully"); } } @Override public void onFailure(@NonNull Call call, @NonNull Throwable t) { Log.e("onFailure", t.toString()); enableProcessButton(); } }); } private void disableProcessButton() { viewBinding.mergeButton.setEnabled(false); } private void enableProcessButton() { viewBinding.mergeButton.setEnabled(true); } }