Files
kopia/cli/command_notification_template_list.go
Jarek Kowalski c0bd372d29 feat(cli): support for defining notification profiles and templates via CLI (#4034)
* feat(cli): support for defining notification profiles via CLI

Profile management:

```
$ kopia notification profile configure email \
    --profile-name=X \
    --smtp-server=smtp.gmail.com \
    --smtp-port=587 \
    --smtp-username=X \
    --smtp-password=X \
    --mail-from=X \
    --mail-to=X \
    --format=html|txt \
    [--send-test-notification]

$ kopia notification profile configure pushover --profile-name=X \
    --user-key=X \
    --app-token=X \
    --format=html|txt \
    [--send-test-notification]

$ kopia notification profile configure webhook --profile-name=X \
    --endpooint=http://some-address:port/path \
    --method=POST|PUT \
    --format=html|txt \
    [--send-test-notification]

$ kopia notification profile test --profile-name=X

$ kopia notification profile delete --profile-name=X

$ kopia notification profile list
```

Template management:

```
$ kopia notification template show X

$ kopia notification template set X \
   --from-stdin | --from-file=X | --editor

$ kopia notification template remove X

$ kopia notification template list

```

Implements #1958

* additional refactoring for testability, various naming tweaks
2024-10-06 16:28:39 +00:00

66 lines
1.3 KiB
Go

package cli
import (
"context"
"sort"
"github.com/pkg/errors"
"github.com/kopia/kopia/notification/notifytemplate"
"github.com/kopia/kopia/repo"
)
type commandNotificationTemplateList struct {
out textOutput
jo jsonOutput
}
func (c *commandNotificationTemplateList) setup(svc appServices, parent commandParent) {
cmd := parent.Command("list", "List templates")
cmd.Action(svc.repositoryReaderAction(c.run))
c.out.setup(svc)
c.jo.setup(svc, cmd)
}
func (c *commandNotificationTemplateList) run(ctx context.Context, rep repo.Repository) error {
infos, err := notifytemplate.ListTemplates(ctx, rep, "")
if err != nil {
return errors.Wrap(err, "error listing templates")
}
sort.Slice(infos, func(i, j int) bool {
return infos[i].Name < infos[j].Name
})
var jl jsonList
if c.jo.jsonOutput {
jl.begin(&c.jo)
defer jl.end()
}
c.out.printStdout("%-30v %-15v %v\n", "NAME", "TYPE", "MODIFIED")
for _, i := range infos {
if c.jo.jsonOutput {
jl.emit(i)
continue
}
var typeString, lastModString string
if i.LastModified == nil {
typeString = "<built-in>"
lastModString = ""
} else {
typeString = "<customized>"
lastModString = formatTimestamp(*i.LastModified)
}
c.out.printStdout("%-30v %-15v %v\n", i.Name, typeString, lastModString)
}
return nil
}