mirror of
https://gitea.com/gitea/tea
synced 2024-10-31 21:20:23 +00:00
782a6318f3
add more command aliases breaking: s/notif/n Co-authored-by: Norwin Roosen <git@nroo.de> Reviewed-on: https://gitea.com/gitea/tea/pulls/307 Reviewed-by: 6543 <6543@obermui.de> Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com> Co-Authored-By: Norwin <noerw@noreply.gitea.io> Co-Committed-By: Norwin <noerw@noreply.gitea.io>
57 lines
1.3 KiB
Go
57 lines
1.3 KiB
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package times
|
|
|
|
import (
|
|
"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/v2"
|
|
)
|
|
|
|
// 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(cmd *cli.Context) 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
|
|
}
|