mirror of
https://gitea.com/gitea/tea.git
synced 2025-12-11 00:44:00 +01:00
The command uses flags.GetListOptions() internally but didn't expose --page and --limit flags to users, making pagination inaccessible. Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Reviewed-on: https://gitea.com/gitea/tea/pulls/852 Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: Alain Thiffault <athiffau@effectivemomentum.com> Co-committed-by: Alain Thiffault <athiffau@effectivemomentum.com>
56 lines
1.3 KiB
Go
56 lines
1.3 KiB
Go
// Copyright 2024 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package webhooks
|
|
|
|
import (
|
|
stdctx "context"
|
|
"fmt"
|
|
|
|
"code.gitea.io/tea/cmd/flags"
|
|
"code.gitea.io/tea/modules/context"
|
|
"code.gitea.io/tea/modules/print"
|
|
|
|
"code.gitea.io/sdk/gitea"
|
|
"github.com/urfave/cli/v3"
|
|
)
|
|
|
|
// CmdWebhooksList represents a sub command of webhooks to list webhooks
|
|
var CmdWebhooksList = cli.Command{
|
|
Name: "list",
|
|
Aliases: []string{"ls"},
|
|
Usage: "List webhooks",
|
|
Description: "List webhooks in repository, organization, or globally",
|
|
Action: RunWebhooksList,
|
|
Flags: append([]cli.Flag{
|
|
&flags.PaginationPageFlag,
|
|
&flags.PaginationLimitFlag,
|
|
}, flags.AllDefaultFlags...),
|
|
}
|
|
|
|
// RunWebhooksList list webhooks
|
|
func RunWebhooksList(ctx stdctx.Context, cmd *cli.Command) error {
|
|
c := context.InitCommand(cmd)
|
|
client := c.Login.Client()
|
|
|
|
var hooks []*gitea.Hook
|
|
var err error
|
|
if c.IsGlobal {
|
|
return fmt.Errorf("global webhooks not yet supported in this version")
|
|
} else if len(c.Org) > 0 {
|
|
hooks, _, err = client.ListOrgHooks(c.Org, gitea.ListHooksOptions{
|
|
ListOptions: flags.GetListOptions(),
|
|
})
|
|
} else {
|
|
hooks, _, err = client.ListRepoHooks(c.Owner, c.Repo, gitea.ListHooksOptions{
|
|
ListOptions: flags.GetListOptions(),
|
|
})
|
|
}
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
print.WebhooksList(hooks, c.Output)
|
|
return nil
|
|
}
|