2018-07-12 13:44:46 +03:00
|
|
|
package commands
|
2018-07-12 10:55:13 +03:00
|
|
|
|
|
|
|
import (
|
2018-07-12 13:44:46 +03:00
|
|
|
"errors"
|
2018-09-07 18:10:40 +03:00
|
|
|
"fmt"
|
2018-08-13 19:32:11 +03:00
|
|
|
|
2018-09-07 18:10:40 +03:00
|
|
|
"github.com/MichaelMure/git-bug/bug"
|
2018-08-31 14:18:03 +03:00
|
|
|
"github.com/MichaelMure/git-bug/cache"
|
2018-07-19 13:30:25 +03:00
|
|
|
"github.com/spf13/cobra"
|
2018-07-12 10:55:13 +03:00
|
|
|
)
|
|
|
|
|
2018-07-19 13:30:25 +03:00
|
|
|
func runPull(cmd *cobra.Command, args []string) error {
|
2018-07-12 10:55:13 +03:00
|
|
|
if len(args) > 1 {
|
2018-07-12 13:44:46 +03:00
|
|
|
return errors.New("Only pulling from one remote at a time is supported")
|
2018-07-12 10:55:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
remote := "origin"
|
|
|
|
if len(args) == 1 {
|
|
|
|
remote = args[0]
|
|
|
|
}
|
|
|
|
|
2018-08-31 14:18:03 +03:00
|
|
|
backend, err := cache.NewRepoCache(repo)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer backend.Close()
|
|
|
|
|
2018-09-07 18:10:40 +03:00
|
|
|
fmt.Println("Fetching remote ...")
|
|
|
|
|
|
|
|
stdout, err := backend.Fetch(remote)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Println(stdout)
|
|
|
|
|
|
|
|
fmt.Println("Merging data ...")
|
|
|
|
|
|
|
|
for merge := range backend.MergeAll(remote) {
|
|
|
|
if merge.Err != nil {
|
2018-09-19 22:17:32 +03:00
|
|
|
fmt.Println(merge.Err)
|
2018-09-07 18:10:40 +03:00
|
|
|
}
|
|
|
|
|
2018-09-13 12:13:51 +03:00
|
|
|
if merge.Status != bug.MergeStatusNothing {
|
2018-09-19 22:45:04 +03:00
|
|
|
fmt.Printf("%s: %s\n", bug.FormatHumanID(merge.Id), merge)
|
2018-09-07 18:10:40 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2018-07-12 10:55:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// showCmd defines the "push" subcommand.
|
2018-07-19 13:30:25 +03:00
|
|
|
var pullCmd = &cobra.Command{
|
|
|
|
Use: "pull [<remote>]",
|
|
|
|
Short: "Pull bugs update from a git remote",
|
|
|
|
RunE: runPull,
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2018-07-20 16:46:14 +03:00
|
|
|
RootCmd.AddCommand(pullCmd)
|
2018-07-12 13:44:46 +03:00
|
|
|
}
|