hub/commands/remote.go

72 строки
1.7 KiB
Go

package commands
import (
"fmt"
"github.com/jingweno/gh/github"
"regexp"
)
var cmdRemote = &Command{
Run: remote,
GitExtension: true,
Usage: "remote [-p] OPTIONS USER[/REPOSITORY]",
Short: "View and manage a set of remote repositories",
}
/*
$ gh remote add jingweno
> git remote add jingweno git://github.com/jingweno/THIS_REPO.git
$ gh remote add -p jingweno
> git remote add jingweno git@github.com:jingweno/THIS_REPO.git
$ gh remote add origin
> git remote add origin git://github.com/YOUR_LOGIN/THIS_REPO.git
*/
func remote(command *Command, args *Args) {
if args.Size() >= 2 && (args.First() == "add" || args.First() == "set-url") {
transformRemoteArgs(args)
}
}
func transformRemoteArgs(args *Args) {
ownerWithName := args.Last()
owner, repo, match := parseRepoNameOwner(ownerWithName)
if !match {
return
}
isPriavte := parseRemotePrivateFlag(args)
gh := github.New()
url := gh.ExpandRemoteUrl(owner, repo, isPriavte)
args.Append(url)
}
func parseRepoNameOwner(nameWithOwner string) (string, string, bool) {
ownerRe := fmt.Sprintf("^(%s)$", OwnerRe)
ownerRegexp := regexp.MustCompile(ownerRe)
if ownerRegexp.MatchString(nameWithOwner) {
return ownerRegexp.FindStringSubmatch(nameWithOwner)[1], "", true
}
nameWithOwnerRe := fmt.Sprintf("^(%s)\\/(%s)$", OwnerRe, NameRe)
nameWithOwnerRegexp := regexp.MustCompile(nameWithOwnerRe)
if nameWithOwnerRegexp.MatchString(nameWithOwner) {
match := nameWithOwnerRegexp.FindStringSubmatch(nameWithOwner)
return match[1], match[2], true
}
return "", "", false
}
func parseRemotePrivateFlag(args *Args) bool {
if i := args.IndexOf("-p"); i != -1 {
args.Remove(i)
return true
}
return false
}