Merge branch 'fork_repos' of ssh://root360_github/root360-AndreasUlm/tea into merge_all

This commit is contained in:
Andreas Ulm 2019-05-08 21:03:54 +02:00
commit 16ba6125e4

View File

@ -21,6 +21,7 @@ var CmdRepos = cli.Command{
Action: runReposList, Action: runReposList,
Subcommands: []cli.Command{ Subcommands: []cli.Command{
CmdReposList, CmdReposList,
CmdReposFork,
}, },
Flags: []cli.Flag{ Flags: []cli.Flag{
cli.StringFlag{ cli.StringFlag{
@ -124,6 +125,50 @@ func runReposList(ctx *cli.Context) error {
return nil return nil
} }
// CmdReposFork represents a sub command of issues to list issues
var CmdReposFork = cli.Command{
Name: "fork",
Usage: "fork repository",
Description: `fork repository`,
Action: runReposFork,
Flags: []cli.Flag{
cli.StringFlag{
Name: "login, l",
Usage: "Indicate one login, optional when inside a gitea repository",
},
cli.StringFlag{
Name: "repo, r",
Usage: "Indicate one repo, optional when inside a gitea repository",
},
cli.StringFlag{
Name: "org",
Usage: "Organization to fork the repository for (optional, default = logged in user)",
},
},
}
func runReposFork(ctx *cli.Context) error {
login, owner, repo := initCommand(ctx)
forkOptions := gitea.CreateForkOption{}
if org := ctx.String("org"); org != "" {
forkOptions = gitea.CreateForkOption{
Organization: &org,
}
}
_, err := login.Client().CreateFork(owner, repo, forkOptions)
if err != nil {
log.Fatal(err)
}
user, _ := login.Client().GetMyUserInfo()
fmt.Printf("Forked '%s/%s' to '%s/%s'\n", owner, repo, user.UserName, repo)
return nil
}
func initCommandLoginOnly(ctx *cli.Context) *Login { func initCommandLoginOnly(ctx *cli.Context) *Login {
err := loadConfig(yamlConfigPath) err := loadConfig(yamlConfigPath)
if err != nil { if err != nil {