mirror of
				https://gitea.com/gitea/tea.git
				synced 2025-10-31 09:15:26 +01:00 
			
		
		
		
	 b74405530a
			
		
	
	b74405530a
	
	
	
		
			
			Pagination related flags now write directly to ListOption struct and enforce non negative numbers. Flag tests were added to cover the validation Reviewed-on: https://gitea.com/gitea/tea/pulls/807 Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: TheFox0x7 <thefox0x7@gmail.com> Co-committed-by: TheFox0x7 <thefox0x7@gmail.com>
		
			
				
	
	
		
			65 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2020 The Gitea Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package releases
 | |
| 
 | |
| 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"
 | |
| )
 | |
| 
 | |
| // CmdReleaseList represents a sub command of Release to list releases
 | |
| var CmdReleaseList = cli.Command{
 | |
| 	Name:        "list",
 | |
| 	Aliases:     []string{"ls"},
 | |
| 	Usage:       "List Releases",
 | |
| 	Description: "List Releases",
 | |
| 	ArgsUsage:   " ", // command does not accept arguments
 | |
| 	Action:      RunReleasesList,
 | |
| 	Flags: append([]cli.Flag{
 | |
| 		&flags.PaginationPageFlag,
 | |
| 		&flags.PaginationLimitFlag,
 | |
| 	}, flags.AllDefaultFlags...),
 | |
| }
 | |
| 
 | |
| // RunReleasesList list releases
 | |
| func RunReleasesList(_ stdctx.Context, cmd *cli.Command) error {
 | |
| 	ctx := context.InitCommand(cmd)
 | |
| 	ctx.Ensure(context.CtxRequirement{RemoteRepo: true})
 | |
| 
 | |
| 	releases, _, err := ctx.Login.Client().ListReleases(ctx.Owner, ctx.Repo, gitea.ListReleasesOptions{
 | |
| 		ListOptions: flags.GetListOptions(),
 | |
| 	})
 | |
| 	if err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 
 | |
| 	print.ReleasesList(releases, ctx.Output)
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func getReleaseByTag(owner, repo, tag string, client *gitea.Client) (*gitea.Release, error) {
 | |
| 	rl, _, err := client.ListReleases(owner, repo, gitea.ListReleasesOptions{
 | |
| 		ListOptions: gitea.ListOptions{Page: -1},
 | |
| 	})
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	if len(rl) == 0 {
 | |
| 		return nil, fmt.Errorf("Repo does not have any release")
 | |
| 	}
 | |
| 	for _, r := range rl {
 | |
| 		if r.TagName == tag {
 | |
| 			return r, nil
 | |
| 		}
 | |
| 	}
 | |
| 	return nil, fmt.Errorf("Release tag does not exist")
 | |
| }
 |