2020-12-21 16:07:35 +00:00
|
|
|
// 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 cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2021-02-28 17:47:36 +00:00
|
|
|
"io/ioutil"
|
2020-12-21 16:07:35 +00:00
|
|
|
"strings"
|
|
|
|
|
|
|
|
"code.gitea.io/tea/cmd/flags"
|
2021-10-14 14:36:08 +00:00
|
|
|
"code.gitea.io/tea/modules/config"
|
2020-12-21 16:07:35 +00:00
|
|
|
"code.gitea.io/tea/modules/context"
|
2021-10-14 14:36:08 +00:00
|
|
|
"code.gitea.io/tea/modules/interact"
|
2020-12-21 16:07:35 +00:00
|
|
|
"code.gitea.io/tea/modules/print"
|
|
|
|
"code.gitea.io/tea/modules/utils"
|
2021-10-14 14:36:08 +00:00
|
|
|
|
|
|
|
"code.gitea.io/sdk/gitea"
|
|
|
|
"github.com/AlecAivazis/survey/v2"
|
2020-12-21 16:07:35 +00:00
|
|
|
"github.com/urfave/cli/v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
// CmdAddComment is the main command to operate with notifications
|
|
|
|
var CmdAddComment = cli.Command{
|
|
|
|
Name: "comment",
|
|
|
|
Aliases: []string{"c"},
|
|
|
|
Category: catEntities,
|
|
|
|
Usage: "Add a comment to an issue / pr",
|
|
|
|
Description: "Add a comment to an issue / pr",
|
|
|
|
ArgsUsage: "<issue / pr index> [<comment body>]",
|
|
|
|
Action: runAddComment,
|
|
|
|
Flags: flags.AllDefaultFlags,
|
|
|
|
}
|
|
|
|
|
|
|
|
func runAddComment(cmd *cli.Context) error {
|
|
|
|
ctx := context.InitCommand(cmd)
|
|
|
|
ctx.Ensure(context.CtxRequirement{RemoteRepo: true})
|
|
|
|
|
|
|
|
args := ctx.Args()
|
|
|
|
if args.Len() == 0 {
|
|
|
|
return fmt.Errorf("Please specify issue / pr index")
|
|
|
|
}
|
|
|
|
|
|
|
|
idx, err := utils.ArgToIndex(ctx.Args().First())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
body := strings.Join(ctx.Args().Tail(), " ")
|
2021-02-28 17:47:36 +00:00
|
|
|
if interact.IsStdinPiped() {
|
|
|
|
// custom solution until https://github.com/AlecAivazis/survey/issues/328 is fixed
|
|
|
|
if bodyStdin, err := ioutil.ReadAll(ctx.App.Reader); err != nil {
|
|
|
|
return err
|
|
|
|
} else if len(bodyStdin) != 0 {
|
|
|
|
body = strings.Join([]string{body, string(bodyStdin)}, "\n\n")
|
|
|
|
}
|
|
|
|
} else if len(body) == 0 {
|
2021-10-14 14:36:08 +00:00
|
|
|
if err = survey.AskOne(interact.NewMultiline(interact.Multiline{
|
|
|
|
Message: "Comment:",
|
|
|
|
Syntax: "md",
|
|
|
|
UseEditor: config.GetPreferences().Editor,
|
|
|
|
}), &body); err != nil {
|
2020-12-21 16:07:35 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-28 17:47:36 +00:00
|
|
|
if len(body) == 0 {
|
|
|
|
return fmt.Errorf("No comment body provided")
|
|
|
|
}
|
|
|
|
|
2020-12-21 16:07:35 +00:00
|
|
|
client := ctx.Login.Client()
|
|
|
|
comment, _, err := client.CreateIssueComment(ctx.Owner, ctx.Repo, idx, gitea.CreateIssueCommentOption{
|
|
|
|
Body: body,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
print.Comment(comment)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|