2013-06-03 04:04:25 +04:00
|
|
|
package commands
|
|
|
|
|
|
|
|
import (
|
2015-02-13 06:58:52 +03:00
|
|
|
"bufio"
|
2016-09-12 22:37:58 +03:00
|
|
|
"fmt"
|
2013-12-31 23:06:58 +04:00
|
|
|
"io/ioutil"
|
2013-07-01 21:11:02 +04:00
|
|
|
"os"
|
2013-12-21 04:45:48 +04:00
|
|
|
"path/filepath"
|
2013-07-29 21:50:28 +04:00
|
|
|
"strings"
|
2014-04-02 00:40:02 +04:00
|
|
|
|
2016-09-11 19:21:23 +03:00
|
|
|
"github.com/atotto/clipboard"
|
2016-01-22 12:47:51 +03:00
|
|
|
"github.com/github/hub/git"
|
2014-04-02 00:40:02 +04:00
|
|
|
"github.com/github/hub/github"
|
2016-09-11 05:38:13 +03:00
|
|
|
"github.com/github/hub/ui"
|
2014-04-02 00:40:02 +04:00
|
|
|
"github.com/github/hub/utils"
|
2013-06-03 04:04:25 +04:00
|
|
|
)
|
|
|
|
|
2016-09-12 22:37:58 +03:00
|
|
|
type stringSliceValue []string
|
|
|
|
|
|
|
|
func (s *stringSliceValue) Set(val string) error {
|
|
|
|
*s = append(*s, val)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *stringSliceValue) String() string {
|
|
|
|
return fmt.Sprintf("%s", *s)
|
|
|
|
}
|
|
|
|
|
2013-12-31 23:06:58 +04:00
|
|
|
type listFlag []string
|
|
|
|
|
|
|
|
func (l *listFlag) String() string {
|
|
|
|
return strings.Join([]string(*l), ",")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l *listFlag) Set(value string) error {
|
|
|
|
for _, flag := range strings.Split(value, ",") {
|
|
|
|
*l = append(*l, flag)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-01-22 12:47:51 +03:00
|
|
|
func isCloneable(file string) bool {
|
2013-07-01 21:11:02 +04:00
|
|
|
f, err := os.Open(file)
|
|
|
|
if err != nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
|
|
|
|
fi, err := f.Stat()
|
|
|
|
if err != nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2016-01-22 12:47:51 +03:00
|
|
|
if fi.IsDir() {
|
|
|
|
gitf, err := os.Open(filepath.Join(file, ".git"))
|
|
|
|
if err == nil {
|
|
|
|
gitf.Close()
|
|
|
|
return true
|
|
|
|
} else {
|
|
|
|
return git.IsGitDir(file)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
reader := bufio.NewReader(f)
|
|
|
|
line, err := reader.ReadString('\n')
|
|
|
|
if err == nil {
|
|
|
|
return strings.Contains(line, "git bundle")
|
|
|
|
} else {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
2013-07-01 21:11:02 +04:00
|
|
|
}
|
2013-07-02 23:08:48 +04:00
|
|
|
|
2014-07-28 05:24:34 +04:00
|
|
|
func gitRemoteForProject(project *github.Project) (foundRemote *github.Remote) {
|
2013-12-28 13:14:07 +04:00
|
|
|
remotes, err := github.Remotes()
|
2013-07-20 09:53:38 +04:00
|
|
|
utils.Check(err)
|
|
|
|
for _, remote := range remotes {
|
2014-07-28 05:24:34 +04:00
|
|
|
remoteProject, pErr := remote.Project()
|
|
|
|
if pErr == nil && remoteProject.SameAs(project) {
|
|
|
|
foundRemote = &remote
|
|
|
|
return
|
2013-07-20 09:53:38 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-28 05:24:34 +04:00
|
|
|
return nil
|
2013-07-20 09:53:38 +04:00
|
|
|
}
|
2013-12-21 04:45:48 +04:00
|
|
|
|
|
|
|
func isEmptyDir(path string) bool {
|
|
|
|
fullPath := filepath.Join(path, "*")
|
|
|
|
match, _ := filepath.Glob(fullPath)
|
|
|
|
return match == nil
|
|
|
|
}
|
2013-12-31 08:11:22 +04:00
|
|
|
|
2016-08-21 13:26:42 +03:00
|
|
|
func msgFromFile(filename string) (string, error) {
|
2016-01-31 10:35:23 +03:00
|
|
|
var content []byte
|
2016-08-21 13:26:42 +03:00
|
|
|
var err error
|
|
|
|
|
2016-01-31 10:35:23 +03:00
|
|
|
if filename == "-" {
|
|
|
|
content, err = ioutil.ReadAll(os.Stdin)
|
|
|
|
} else {
|
|
|
|
content, err = ioutil.ReadFile(filename)
|
|
|
|
}
|
|
|
|
if err != nil {
|
2016-08-21 13:26:42 +03:00
|
|
|
return "", err
|
2013-12-31 23:06:58 +04:00
|
|
|
}
|
|
|
|
|
2016-08-21 13:26:42 +03:00
|
|
|
return strings.Replace(string(content), "\r\n", "\n", -1), nil
|
2013-12-31 23:06:58 +04:00
|
|
|
}
|
|
|
|
|
2016-09-11 05:38:13 +03:00
|
|
|
func printBrowseOrCopy(args *Args, msg string, openBrowser bool, performCopy bool) {
|
|
|
|
if performCopy {
|
2016-09-11 19:21:23 +03:00
|
|
|
if err := clipboard.WriteAll(msg); err != nil {
|
|
|
|
ui.Errorf("Error copying %s to clipboard:\n%s\n", msg, err.Error())
|
|
|
|
}
|
2016-09-11 05:38:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if openBrowser {
|
|
|
|
launcher, err := utils.BrowserLauncher()
|
|
|
|
utils.Check(err)
|
|
|
|
args.Replace(launcher[0], "", launcher[1:]...)
|
|
|
|
args.AppendParams(msg)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !openBrowser && !performCopy {
|
|
|
|
args.AfterFn(func() error {
|
|
|
|
ui.Println(msg)
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|