hub/commands/utils.go

157 строки
3.0 KiB
Go
Исходник Обычный вид История

2013-06-03 04:04:25 +04:00
package commands
import (
"bufio"
"io/ioutil"
2013-07-01 21:11:02 +04:00
"os"
"path/filepath"
"strings"
"github.com/github/hub/git"
"github.com/github/hub/github"
"github.com/github/hub/ui"
"github.com/github/hub/utils"
2013-06-03 04:04:25 +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
}
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
}
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
func gitRemoteForProject(project *github.Project) (foundRemote *github.Remote) {
remotes, err := github.Remotes()
2013-07-20 09:53:38 +04:00
utils.Check(err)
for _, remote := range remotes {
remoteProject, pErr := remote.Project()
if pErr == nil && remoteProject.SameAs(project) {
foundRemote = &remote
return
2013-07-20 09:53:38 +04:00
}
}
return nil
2013-07-20 09:53:38 +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
func readMsgFromFile(filename string, edit bool, editorPrefix, editorTopic string) (title, body string, editor *github.Editor, err error) {
message, err := msgFromFile(filename)
if err != nil {
return
}
if edit {
editor, err = github.NewEditor(editorPrefix, editorTopic, message)
if err != nil {
return
}
title, body, err = editor.EditTitleAndBody()
return
} else {
title, body = readMsg(message)
return
}
}
func msgFromFile(filename string) (string, error) {
var content []byte
var err error
if filename == "-" {
content, err = ioutil.ReadAll(os.Stdin)
} else {
content, err = ioutil.ReadFile(filename)
}
if err != nil {
return "", err
}
return strings.Replace(string(content), "\r\n", "\n", -1), nil
}
func readMsg(message string) (title, body string) {
parts := strings.SplitN(message, "\n\n", 2)
title = strings.TrimSpace(strings.Replace(parts[0], "\n", " ", -1))
if len(parts) > 1 {
body = strings.TrimSpace(parts[1])
}
return
}
func runInLocalRepo(fn func(localRepo *github.GitHubRepo, project *github.Project, client *github.Client)) {
localRepo, err := github.LocalRepo()
utils.Check(err)
2013-12-31 08:11:22 +04:00
project, err := localRepo.CurrentProject()
utils.Check(err)
client := github.NewClient(project.Host)
fn(localRepo, project, client)
os.Exit(0)
}
func printBrowseOrCopy(args *Args, msg string, openBrowser bool, performCopy bool) {
if performCopy {
// TODO
}
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
})
}
}