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 (
|
|
|
|
"code.gitea.io/tea/cmd/flags"
|
2020-12-15 17:38:22 +00:00
|
|
|
"code.gitea.io/tea/modules/context"
|
2020-12-06 22:02:50 +00:00
|
|
|
"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{
|
2020-12-16 16:47:40 +00:00
|
|
|
Name: "list",
|
|
|
|
Aliases: []string{"ls"},
|
2020-12-06 22:02:50 +00:00
|
|
|
Usage: "List Organizations",
|
|
|
|
Description: "List users organizations",
|
2022-09-13 18:14:02 +00:00
|
|
|
ArgsUsage: " ", // command does not accept arguments
|
2020-12-06 22:02:50 +00:00
|
|
|
Action: RunOrganizationList,
|
|
|
|
Flags: append([]cli.Flag{
|
|
|
|
&flags.PaginationPageFlag,
|
|
|
|
&flags.PaginationLimitFlag,
|
|
|
|
}, flags.AllDefaultFlags...),
|
|
|
|
}
|
|
|
|
|
|
|
|
// RunOrganizationList list user organizations
|
2020-12-15 17:38:22 +00:00
|
|
|
func RunOrganizationList(cmd *cli.Context) error {
|
|
|
|
ctx := context.InitCommand(cmd)
|
|
|
|
client := ctx.Login.Client()
|
2020-12-06 22:02:50 +00:00
|
|
|
|
2020-12-15 17:38:22 +00:00
|
|
|
userOrganizations, _, err := client.ListUserOrgs(ctx.Login.User, gitea.ListOrgsOptions{
|
|
|
|
ListOptions: ctx.GetListOptions(),
|
|
|
|
})
|
2020-12-06 22:02:50 +00:00
|
|
|
if err != nil {
|
2020-12-16 16:18:10 +00:00
|
|
|
return err
|
2020-12-06 22:02:50 +00:00
|
|
|
}
|
|
|
|
|
2020-12-15 17:38:22 +00:00
|
|
|
print.OrganizationsList(userOrganizations, ctx.Output)
|
2020-12-06 22:02:50 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|