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