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>
		
			
				
	
	
		
			62 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2020 The Gitea Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package milestones
 | |
| 
 | |
| 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"
 | |
| )
 | |
| 
 | |
| // CmdMilestonesReopen represents a sub command of milestones to open an milestone
 | |
| var CmdMilestonesReopen = cli.Command{
 | |
| 	Name:        "reopen",
 | |
| 	Aliases:     []string{"open"},
 | |
| 	Usage:       "Change state of one or more milestones to 'open'",
 | |
| 	Description: `Change state of one or more milestones to 'open'`,
 | |
| 	ArgsUsage:   "<milestone name> [<milestone name> ...]",
 | |
| 	Action: func(ctx stdctx.Context, cmd *cli.Command) error {
 | |
| 		return editMilestoneStatus(ctx, cmd, false)
 | |
| 	},
 | |
| 	Flags: flags.AllDefaultFlags,
 | |
| }
 | |
| 
 | |
| func editMilestoneStatus(_ stdctx.Context, cmd *cli.Command, close bool) error {
 | |
| 	ctx := context.InitCommand(cmd)
 | |
| 	ctx.Ensure(context.CtxRequirement{RemoteRepo: true})
 | |
| 	if ctx.Args().Len() == 0 {
 | |
| 		return fmt.Errorf(ctx.Command.ArgsUsage)
 | |
| 	}
 | |
| 
 | |
| 	state := gitea.StateOpen
 | |
| 	if close {
 | |
| 		state = gitea.StateClosed
 | |
| 	}
 | |
| 
 | |
| 	client := ctx.Login.Client()
 | |
| 	for _, ms := range ctx.Args().Slice() {
 | |
| 		opts := gitea.EditMilestoneOption{
 | |
| 			State: &state,
 | |
| 			Title: ms,
 | |
| 		}
 | |
| 		milestone, _, err := client.EditMilestoneByName(ctx.Owner, ctx.Repo, ms, opts)
 | |
| 		if err != nil {
 | |
| 			return err
 | |
| 		}
 | |
| 
 | |
| 		if ctx.Args().Len() > 1 {
 | |
| 			fmt.Printf("%s/milestone/%d\n", ctx.GetRemoteRepoHTMLURL(), milestone.ID)
 | |
| 		} else {
 | |
| 			print.MilestoneDetails(milestone)
 | |
| 		}
 | |
| 	}
 | |
| 	return nil
 | |
| }
 |