2021-12-17 02:33:01 +01:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
2021-12-20 03:01:49 +01:00
|
|
|
"fmt"
|
2021-12-17 02:33:01 +01:00
|
|
|
"github.com/urfave/cli/v2"
|
|
|
|
"heckel.io/ntfy/client"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
|
|
|
var cmdPublish = &cli.Command{
|
|
|
|
Name: "publish",
|
2021-12-20 03:01:49 +01:00
|
|
|
Aliases: []string{"pub", "send", "trigger"},
|
2021-12-17 02:33:01 +01:00
|
|
|
Usage: "Send message via a ntfy server",
|
2021-12-20 03:01:49 +01:00
|
|
|
UsageText: "ntfy send [OPTIONS..] TOPIC [MESSAGE]",
|
2021-12-17 02:33:01 +01:00
|
|
|
Action: execPublish,
|
|
|
|
Flags: []cli.Flag{
|
2021-12-20 03:01:49 +01:00
|
|
|
&cli.StringFlag{Name: "config", Aliases: []string{"c"}, Usage: "client config file"},
|
2021-12-17 02:33:01 +01:00
|
|
|
&cli.StringFlag{Name: "title", Aliases: []string{"t"}, Usage: "message title"},
|
|
|
|
&cli.StringFlag{Name: "priority", Aliases: []string{"p"}, Usage: "priority of the message (1=min, 2=low, 3=default, 4=high, 5=max)"},
|
2021-12-20 03:01:49 +01:00
|
|
|
&cli.StringFlag{Name: "tags", Aliases: []string{"tag", "T"}, Usage: "comma separated list of tags and emojis"},
|
|
|
|
&cli.StringFlag{Name: "delay", Aliases: []string{"at", "in", "D"}, Usage: "delay/schedule message"},
|
2021-12-17 02:33:01 +01:00
|
|
|
&cli.BoolFlag{Name: "no-cache", Aliases: []string{"C"}, Usage: "do not cache message server-side"},
|
|
|
|
&cli.BoolFlag{Name: "no-firebase", Aliases: []string{"F"}, Usage: "do not forward message to Firebase"},
|
2021-12-20 03:01:49 +01:00
|
|
|
&cli.BoolFlag{Name: "quiet", Aliases: []string{"q"}, Usage: "do print message"},
|
2021-12-17 02:33:01 +01:00
|
|
|
},
|
|
|
|
Description: `Publish a message to a ntfy server.
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
ntfy publish mytopic This is my message # Send simple message
|
|
|
|
ntfy send myserver.com/mytopic "This is my message" # Send message to different default host
|
|
|
|
ntfy pub -p high backups "Backups failed" # Send high priority message
|
|
|
|
ntfy pub --tags=warning,skull backups "Backups failed" # Add tags/emojis to message
|
|
|
|
ntfy pub --delay=10s delayed_topic Laterzz # Delay message by 10s
|
|
|
|
ntfy pub --at=8:30am delayed_topic Laterzz # Send message at 8:30am
|
2021-12-18 04:38:29 +01:00
|
|
|
ntfy trigger mywebhook # Sending without message, useful for webhooks
|
2021-12-17 02:33:01 +01:00
|
|
|
|
|
|
|
Please also check out the docs on publishing messages. Especially for the --tags and --delay options,
|
2021-12-20 03:01:49 +01:00
|
|
|
it has incredibly useful information: https://ntfy.sh/docs/publish/.
|
|
|
|
|
|
|
|
The default config file for all client commands is /etc/ntfy/client.yml (if root user),
|
|
|
|
or ~/.config/ntfy/client.yml for all other users.`,
|
2021-12-17 02:33:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func execPublish(c *cli.Context) error {
|
2021-12-18 04:38:29 +01:00
|
|
|
if c.NArg() < 1 {
|
2021-12-20 03:01:49 +01:00
|
|
|
return errors.New("must specify topic, type 'ntfy publish --help' for help")
|
|
|
|
}
|
|
|
|
conf, err := loadConfig(c)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2021-12-17 02:33:01 +01:00
|
|
|
}
|
|
|
|
title := c.String("title")
|
|
|
|
priority := c.String("priority")
|
|
|
|
tags := c.String("tags")
|
|
|
|
delay := c.String("delay")
|
|
|
|
noCache := c.Bool("no-cache")
|
|
|
|
noFirebase := c.Bool("no-firebase")
|
2021-12-20 03:01:49 +01:00
|
|
|
quiet := c.Bool("quiet")
|
2021-12-18 20:43:27 +01:00
|
|
|
topic := c.Args().Get(0)
|
2021-12-18 04:38:29 +01:00
|
|
|
message := ""
|
|
|
|
if c.NArg() > 1 {
|
|
|
|
message = strings.Join(c.Args().Slice()[1:], " ")
|
|
|
|
}
|
2021-12-17 02:33:01 +01:00
|
|
|
var options []client.PublishOption
|
|
|
|
if title != "" {
|
|
|
|
options = append(options, client.WithTitle(title))
|
|
|
|
}
|
|
|
|
if priority != "" {
|
|
|
|
options = append(options, client.WithPriority(priority))
|
|
|
|
}
|
|
|
|
if tags != "" {
|
2021-12-19 20:27:26 +01:00
|
|
|
options = append(options, client.WithTagsList(tags))
|
2021-12-17 02:33:01 +01:00
|
|
|
}
|
|
|
|
if delay != "" {
|
|
|
|
options = append(options, client.WithDelay(delay))
|
|
|
|
}
|
|
|
|
if noCache {
|
|
|
|
options = append(options, client.WithNoCache())
|
|
|
|
}
|
|
|
|
if noFirebase {
|
|
|
|
options = append(options, client.WithNoFirebase())
|
|
|
|
}
|
2021-12-20 03:01:49 +01:00
|
|
|
cl := client.New(conf)
|
|
|
|
m, err := cl.Publish(topic, message, options...)
|
2021-12-18 20:43:27 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-12-20 03:01:49 +01:00
|
|
|
if !quiet {
|
|
|
|
fmt.Fprintln(c.App.Writer, strings.TrimSpace(m.Raw))
|
|
|
|
}
|
|
|
|
return nil
|
2021-12-17 02:33:01 +01:00
|
|
|
}
|