mirror of
				https://gitea.com/gitea/tea.git
				synced 2025-10-31 09:15:26 +01:00 
			
		
		
		
	 0e54bae0c4
			
		
	
	0e54bae0c4
	
	
	
		
			
			I tested this somewhat, but I haven't been using the cli before so I'm not sure if there are changes - there shouldn't be though. Reviewed-on: https://gitea.com/gitea/tea/pulls/760 Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: TheFox0x7 <thefox0x7@gmail.com> Co-committed-by: TheFox0x7 <thefox0x7@gmail.com>
		
			
				
	
	
		
			70 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			70 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"
 | |
| 
 | |
| 	"github.com/urfave/cli/v3"
 | |
| )
 | |
| 
 | |
| // CmdReleaseDelete represents a sub command of Release to delete a release
 | |
| var CmdReleaseDelete = cli.Command{
 | |
| 	Name:        "delete",
 | |
| 	Aliases:     []string{"rm"},
 | |
| 	Usage:       "Delete one or more releases",
 | |
| 	Description: `Delete one or more releases`,
 | |
| 	ArgsUsage:   "<release tag> [<release tag>...]",
 | |
| 	Action:      runReleaseDelete,
 | |
| 	Flags: append([]cli.Flag{
 | |
| 		&cli.BoolFlag{
 | |
| 			Name:    "confirm",
 | |
| 			Aliases: []string{"y"},
 | |
| 			Usage:   "Confirm deletion (required)",
 | |
| 		},
 | |
| 		&cli.BoolFlag{
 | |
| 			Name:  "delete-tag",
 | |
| 			Usage: "Also delete the git tag for this release",
 | |
| 		},
 | |
| 	}, flags.AllDefaultFlags...),
 | |
| }
 | |
| 
 | |
| func runReleaseDelete(_ stdctx.Context, cmd *cli.Command) error {
 | |
| 	ctx := context.InitCommand(cmd)
 | |
| 	ctx.Ensure(context.CtxRequirement{RemoteRepo: true})
 | |
| 	client := ctx.Login.Client()
 | |
| 
 | |
| 	if !ctx.Args().Present() {
 | |
| 		fmt.Println("Release tag needed to edit")
 | |
| 		return nil
 | |
| 	}
 | |
| 
 | |
| 	if !ctx.Bool("confirm") {
 | |
| 		fmt.Println("Are you sure? Please confirm with -y or --confirm.")
 | |
| 		return nil
 | |
| 	}
 | |
| 
 | |
| 	for _, tag := range ctx.Args().Slice() {
 | |
| 		release, err := getReleaseByTag(ctx.Owner, ctx.Repo, tag, client)
 | |
| 		if err != nil {
 | |
| 			return err
 | |
| 		}
 | |
| 		_, err = client.DeleteRelease(ctx.Owner, ctx.Repo, release.ID)
 | |
| 		if err != nil {
 | |
| 			return err
 | |
| 		}
 | |
| 
 | |
| 		if ctx.Bool("delete-tag") {
 | |
| 			_, err = client.DeleteTag(ctx.Owner, ctx.Repo, tag)
 | |
| 			return err
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	return nil
 | |
| }
 |