2016-07-27 17:38:10 +00:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2016-07-27 21:15:49 +00:00
|
|
|
"github.com/gogits/go-gogs-client"
|
2016-07-27 17:38:10 +00:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
2016-07-27 22:06:32 +00:00
|
|
|
// repoCmd represents the repo command
|
|
|
|
var repoCmd = &cobra.Command{
|
2016-07-27 21:15:49 +00:00
|
|
|
Use: "repo",
|
2016-07-28 00:11:57 +00:00
|
|
|
Short: "parent command for repositories",
|
|
|
|
Long: `gogs repo [(new|create)|list|destroy]
|
|
|
|
|
|
|
|
$ gogs repo new my-new-repo --private
|
|
|
|
$ gogs repo create my-new-repo --org=JustUsGuys
|
|
|
|
$ gogs repo list
|
|
|
|
$ gogs repo destroy ia my-new-repo
|
|
|
|
$ gogs repo destroy ia/my-new-repo
|
2016-07-27 21:15:49 +00:00
|
|
|
|
2016-07-28 00:11:57 +00:00
|
|
|
`,
|
2016-07-27 21:15:49 +00:00
|
|
|
Run: func(cmd *cobra.Command, args []string) {
|
2016-07-28 00:11:57 +00:00
|
|
|
fmt.Println("Please use: gogs repo [(new|create)|list|destroy]")
|
2016-07-27 17:38:10 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2016-07-27 21:15:49 +00:00
|
|
|
func printRepo(repo *gogs.Repository) {
|
2016-07-28 00:11:57 +00:00
|
|
|
fmt.Println("------------------------------------------------")
|
|
|
|
fmt.Printf("* %v", repo.FullName)
|
|
|
|
if repo.Private {
|
|
|
|
fmt.Printf(" (private)")
|
|
|
|
}
|
|
|
|
if repo.Fork {
|
|
|
|
fmt.Printf(" (fork)")
|
|
|
|
}
|
|
|
|
fmt.Println()
|
|
|
|
|
|
|
|
if repo.Description != "" {
|
|
|
|
fmt.Println("[--> ", repo.Description)
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Println("Go there: ", repo.HtmlUrl)
|
|
|
|
fmt.Println("SSH: ", repo.SshUrl)
|
|
|
|
fmt.Println("Clone it: ", repo.CloneUrl)
|
|
|
|
fmt.Println("------------------------------------------------")
|
2016-07-27 21:15:49 +00:00
|
|
|
}
|
2016-07-27 17:38:10 +00:00
|
|
|
|
2016-07-27 21:15:49 +00:00
|
|
|
func init() {
|
2016-07-27 22:06:32 +00:00
|
|
|
RootCmd.AddCommand(repoCmd)
|
2016-07-27 17:38:10 +00:00
|
|
|
}
|