2013-07-02 20:59:02 +04:00
|
|
|
package commands
|
|
|
|
|
2013-07-02 22:28:50 +04:00
|
|
|
import (
|
|
|
|
"fmt"
|
2014-04-01 04:09:13 +04:00
|
|
|
"regexp"
|
|
|
|
|
2014-02-10 20:22:36 +04:00
|
|
|
"github.com/github/hub/github"
|
|
|
|
"github.com/github/hub/utils"
|
2013-07-02 22:28:50 +04:00
|
|
|
)
|
2013-07-02 20:59:02 +04:00
|
|
|
|
|
|
|
var cmdMerge = &Command{
|
|
|
|
Run: merge,
|
|
|
|
GitExtension: true,
|
2016-01-24 11:56:18 +03:00
|
|
|
Usage: "merge <PULLREQ-URL>",
|
|
|
|
Long: `Merge a pull request with a message like the GitHub Merge Button.
|
|
|
|
|
|
|
|
## Examples:
|
|
|
|
$ hub merge https://github.com/jingweno/gh/pull/73
|
|
|
|
> git fetch git://github.com/jingweno/gh.git +refs/heads/feature:refs/remotes/jingweno/feature
|
|
|
|
> git merge jingweno/feature --no-ff -m "Merge pull request #73 from jingweno/feature..."
|
2013-07-02 20:59:02 +04:00
|
|
|
`,
|
|
|
|
}
|
|
|
|
|
2013-12-30 02:18:14 +04:00
|
|
|
func init() {
|
|
|
|
CmdRunner.Use(cmdMerge)
|
|
|
|
}
|
|
|
|
|
2013-07-02 20:59:02 +04:00
|
|
|
func merge(command *Command, args *Args) {
|
2013-07-02 22:56:45 +04:00
|
|
|
if !args.IsParamsEmpty() {
|
2013-07-02 22:28:50 +04:00
|
|
|
err := transformMergeArgs(args)
|
2013-07-05 03:18:28 +04:00
|
|
|
utils.Check(err)
|
2013-07-02 22:28:50 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func transformMergeArgs(args *Args) error {
|
2013-12-10 13:04:36 +04:00
|
|
|
words := args.Words()
|
|
|
|
if len(words) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-12-11 10:05:26 +04:00
|
|
|
mergeURL := words[0]
|
|
|
|
url, err := github.ParseURL(mergeURL)
|
2013-12-10 13:04:36 +04:00
|
|
|
if err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
pullURLRegex := regexp.MustCompile("^pull/(\\d+)")
|
|
|
|
projectPath := url.ProjectPath()
|
|
|
|
if !pullURLRegex.MatchString(projectPath) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
id := pullURLRegex.FindStringSubmatch(projectPath)[1]
|
2013-12-17 19:45:48 +04:00
|
|
|
gh := github.NewClient(url.Project.Host)
|
|
|
|
pullRequest, err := gh.PullRequest(url.Project, id)
|
2013-12-10 13:04:36 +04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-02-23 08:44:36 +03:00
|
|
|
branch := pullRequest.Head.Ref
|
|
|
|
headRepo := pullRequest.Head.Repo
|
|
|
|
if headRepo == nil {
|
|
|
|
return fmt.Errorf("Error: that fork is not available anymore")
|
2013-12-10 13:04:36 +04:00
|
|
|
}
|
|
|
|
|
2015-02-26 09:15:02 +03:00
|
|
|
u := url.GitURL(headRepo.Name, headRepo.Owner.Login, headRepo.Private)
|
|
|
|
mergeHead := fmt.Sprintf("%s/%s", headRepo.Owner.Login, branch)
|
2013-12-10 13:04:36 +04:00
|
|
|
ref := fmt.Sprintf("+refs/heads/%s:refs/remotes/%s", branch, mergeHead)
|
|
|
|
args.Before("git", "fetch", u, ref)
|
|
|
|
|
|
|
|
// Remove pull request URL
|
2013-12-11 10:05:26 +04:00
|
|
|
idx := args.IndexOfParam(mergeURL)
|
2013-12-10 13:04:36 +04:00
|
|
|
args.RemoveParam(idx)
|
|
|
|
|
2014-09-11 16:16:23 +04:00
|
|
|
mergeMsg := fmt.Sprintf("Merge pull request #%v from %s\n\n%s", id, mergeHead, pullRequest.Title)
|
2013-12-10 13:04:36 +04:00
|
|
|
args.AppendParams(mergeHead, "-m", mergeMsg)
|
|
|
|
|
2015-08-12 13:34:15 +03:00
|
|
|
if args.IndexOfParam("--ff-only") == -1 && args.IndexOfParam("--squash") == -1 && args.IndexOfParam("--ff") == -1 {
|
2013-12-10 13:04:36 +04:00
|
|
|
i := args.IndexOfParam("-m")
|
|
|
|
args.InsertParam(i, "--no-ff")
|
2013-07-02 22:28:50 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|