2020-12-06 22:02:50 +00:00
|
|
|
// Copyright 2020 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 organizations
|
|
|
|
|
|
|
|
import (
|
|
|
|
"log"
|
|
|
|
|
|
|
|
"code.gitea.io/tea/cmd/flags"
|
|
|
|
"code.gitea.io/tea/modules/config"
|
|
|
|
"code.gitea.io/tea/modules/print"
|
|
|
|
|
|
|
|
"code.gitea.io/sdk/gitea"
|
|
|
|
"github.com/urfave/cli/v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
// CmdOrganizationList represents a sub command of organizations to list users organizations
|
|
|
|
var CmdOrganizationList = cli.Command{
|
|
|
|
Name: "ls",
|
|
|
|
Aliases: []string{"list"},
|
|
|
|
Usage: "List Organizations",
|
|
|
|
Description: "List users organizations",
|
|
|
|
Action: RunOrganizationList,
|
|
|
|
Flags: append([]cli.Flag{
|
|
|
|
&flags.PaginationPageFlag,
|
|
|
|
&flags.PaginationLimitFlag,
|
|
|
|
}, flags.AllDefaultFlags...),
|
|
|
|
}
|
|
|
|
|
|
|
|
// RunOrganizationList list user organizations
|
|
|
|
func RunOrganizationList(ctx *cli.Context) error {
|
2020-12-11 09:07:29 +00:00
|
|
|
login, _, _ := config.InitCommand(flags.GlobalRepoValue, flags.GlobalLoginValue, flags.GlobalRemoteValue)
|
2020-12-06 22:02:50 +00:00
|
|
|
|
|
|
|
client := login.Client()
|
|
|
|
|
|
|
|
userOrganizations, _, err := client.ListUserOrgs(login.User, gitea.ListOrgsOptions{ListOptions: flags.GetListOptions(ctx)})
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2020-12-08 10:28:54 +00:00
|
|
|
print.OrganizationsList(userOrganizations, flags.GlobalOutputValue)
|
2020-12-06 22:02:50 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|