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>
		
			
				
	
	
		
			57 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2020 The Gitea Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package times
 | |
| 
 | |
| import (
 | |
| 	stdctx "context"
 | |
| 	"fmt"
 | |
| 	"strings"
 | |
| 	"time"
 | |
| 
 | |
| 	"code.gitea.io/tea/cmd/flags"
 | |
| 	"code.gitea.io/tea/modules/context"
 | |
| 	"code.gitea.io/tea/modules/utils"
 | |
| 
 | |
| 	"code.gitea.io/sdk/gitea"
 | |
| 	"github.com/urfave/cli/v3"
 | |
| )
 | |
| 
 | |
| // CmdTrackedTimesAdd represents a sub command of times to add time to an issue
 | |
| var CmdTrackedTimesAdd = cli.Command{
 | |
| 	Name:      "add",
 | |
| 	Aliases:   []string{"a"},
 | |
| 	Usage:     "Track spent time on an issue",
 | |
| 	UsageText: "tea times add <issue> <duration>",
 | |
| 	Description: `Track spent time on an issue
 | |
| 	 Example:
 | |
| 		tea times add 1 1h25m
 | |
| 	`,
 | |
| 	Action: runTrackedTimesAdd,
 | |
| 	Flags:  flags.LoginRepoFlags,
 | |
| }
 | |
| 
 | |
| func runTrackedTimesAdd(_ stdctx.Context, cmd *cli.Command) error {
 | |
| 	ctx := context.InitCommand(cmd)
 | |
| 	ctx.Ensure(context.CtxRequirement{RemoteRepo: true})
 | |
| 
 | |
| 	if ctx.Args().Len() < 2 {
 | |
| 		return fmt.Errorf("No issue or duration specified.\nUsage:\t%s", ctx.Command.UsageText)
 | |
| 	}
 | |
| 
 | |
| 	issue, err := utils.ArgToIndex(ctx.Args().First())
 | |
| 	if err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 
 | |
| 	duration, err := time.ParseDuration(strings.Join(ctx.Args().Tail(), ""))
 | |
| 	if err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 
 | |
| 	_, _, err = ctx.Login.Client().AddTime(ctx.Owner, ctx.Repo, issue, gitea.AddTimeOption{
 | |
| 		Time: int64(duration.Seconds()),
 | |
| 	})
 | |
| 	return err
 | |
| }
 |