tea/cmd/labels.go

58 lines
1.4 KiB
Go
Raw Normal View History

2019-10-19 10:54:16 +00:00
// Copyright 2019 The Gitea Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package cmd
import (
"log"
"code.gitea.io/tea/cmd/flags"
"code.gitea.io/tea/cmd/labels"
"code.gitea.io/tea/modules/config"
"code.gitea.io/tea/modules/print"
"code.gitea.io/tea/modules/task"
2019-10-19 10:54:16 +00:00
"code.gitea.io/sdk/gitea"
"github.com/urfave/cli/v2"
2019-10-19 10:54:16 +00:00
)
// CmdLabels represents to operate repositories' labels.
var CmdLabels = cli.Command{
Name: "labels",
Aliases: []string{"label"},
Usage: "Manage issue labels",
Description: `Manage issue labels`,
2019-10-19 10:54:16 +00:00
Action: runLabels,
Subcommands: []*cli.Command{
&labels.CmdLabelCreate,
&labels.CmdLabelUpdate,
&labels.CmdLabelDelete,
2019-10-19 10:54:16 +00:00
},
Flags: append([]cli.Flag{
&cli.StringFlag{
Name: "save",
Aliases: []string{"s"},
Usage: "Save all the labels as a file",
2019-10-19 10:54:16 +00:00
},
&flags.PaginationPageFlag,
&flags.PaginationLimitFlag,
}, flags.AllDefaultFlags...),
2019-10-19 10:54:16 +00:00
}
func runLabels(ctx *cli.Context) error {
login, owner, repo := config.InitCommand(flags.GlobalRepoValue, flags.GlobalLoginValue, flags.GlobalRemoteValue)
2019-10-19 10:54:16 +00:00
labels, _, err := login.Client().ListRepoLabels(owner, repo, gitea.ListLabelsOptions{ListOptions: flags.GetListOptions(ctx)})
2019-10-19 10:54:16 +00:00
if err != nil {
log.Fatal(err)
}
if ctx.IsSet("save") {
return task.LabelsExport(labels, ctx.String("save"))
2019-10-19 10:54:16 +00:00
}
print.LabelsList(labels, flags.GlobalOutputValue)
2019-10-19 10:54:16 +00:00
return nil
}