30 lines
1.2 KiB
Kotlin
30 lines
1.2 KiB
Kotlin
package com.jetpackduba.gitnuro.git.rebase
|
|
|
|
import com.jetpackduba.gitnuro.exceptions.UncommitedChangesDetectedException
|
|
import kotlinx.coroutines.Dispatchers
|
|
import kotlinx.coroutines.withContext
|
|
import org.eclipse.jgit.api.Git
|
|
import org.eclipse.jgit.api.RebaseCommand
|
|
import org.eclipse.jgit.api.RebaseResult
|
|
import org.eclipse.jgit.revwalk.RevCommit
|
|
import javax.inject.Inject
|
|
|
|
class StartRebaseInteractiveUseCase @Inject constructor() {
|
|
suspend operator fun invoke(git: Git, interactiveHandler: RebaseCommand.InteractiveHandler, commit: RevCommit) =
|
|
withContext(Dispatchers.IO) {
|
|
val rebaseResult = git.rebase()
|
|
.runInteractively(interactiveHandler)
|
|
.setOperation(RebaseCommand.Operation.BEGIN)
|
|
.setUpstream(commit)
|
|
.call()
|
|
|
|
when (rebaseResult.status) {
|
|
RebaseResult.Status.FAILED -> throw UncommitedChangesDetectedException("Rebase interactive failed.")
|
|
RebaseResult.Status.UNCOMMITTED_CHANGES, RebaseResult.Status.CONFLICTS -> throw UncommitedChangesDetectedException(
|
|
"You can't have uncommited changes before starting a rebase interactive"
|
|
)
|
|
|
|
else -> {}
|
|
}
|
|
}
|
|
} |