-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(service): add support for gotify service
- Loading branch information
Showing
4 changed files
with
150 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
package gotify | ||
|
||
import ( | ||
"log" | ||
"net/http" | ||
"net/url" | ||
|
||
"github.com/kha7iq/pingme/service/helpers" | ||
|
||
"github.com/gotify/go-api-client/v2/auth" | ||
"github.com/gotify/go-api-client/v2/client/message" | ||
"github.com/gotify/go-api-client/v2/gotify" | ||
"github.com/gotify/go-api-client/v2/models" | ||
"github.com/urfave/cli/v2" | ||
) | ||
|
||
// Gotify struct holds data parsed via flags for the service | ||
type Gotify struct { | ||
URL string | ||
Token string | ||
Priority int | ||
Title string | ||
Message string | ||
} | ||
|
||
// Send parse values from *cli.context and return *cli.Command | ||
func Send() *cli.Command { | ||
var gotifyOpts Gotify | ||
return &cli.Command{ | ||
Name: "gotify", | ||
Usage: "Send push notification to gotify server", | ||
UsageText: "pingme gotify --url 'https://example.com' --token 'tokenabc' --title 'some title' " + | ||
" --msg 'some message' --priority 5", | ||
Description: `With gotify you can send messages to any Gotify server`, | ||
Flags: []cli.Flag{ | ||
&cli.StringFlag{ | ||
Destination: &gotifyOpts.Token, | ||
Name: "token", | ||
Aliases: []string{"t"}, | ||
Required: true, | ||
Usage: "Application token of gotify server", | ||
EnvVars: []string{"GOTIFY_TOKEN"}, | ||
}, | ||
&cli.StringFlag{ | ||
Destination: &gotifyOpts.URL, | ||
Name: "url", | ||
Required: true, | ||
Aliases: []string{"u"}, | ||
Usage: "Gotify server Endpoint", | ||
EnvVars: []string{"GOTIFY_URL"}, | ||
}, | ||
&cli.StringFlag{ | ||
Destination: &gotifyOpts.Message, | ||
Name: "msg", | ||
Aliases: []string{"m"}, | ||
Usage: "Message content", | ||
EnvVars: []string{"GOTIFY_MESSAGE"}, | ||
}, | ||
&cli.StringFlag{ | ||
Destination: &gotifyOpts.Title, | ||
Name: "title", | ||
Usage: "Title of the message.", | ||
Value: helpers.TimeValue, | ||
EnvVars: []string{"GOTIFY_TITLE"}, | ||
}, | ||
&cli.IntFlag{ | ||
Destination: &gotifyOpts.Priority, | ||
Name: "priority", | ||
Aliases: []string{"p"}, | ||
Usage: "Message priority i.e 1-7", | ||
Value: 5, | ||
EnvVars: []string{"GOTIFY_PRIORITY"}, | ||
}, | ||
}, | ||
Action: func(ctx *cli.Context) error { | ||
serverURL, err := url.Parse(gotifyOpts.URL) | ||
if err != nil { | ||
return err | ||
} | ||
c := gotify.NewClient(serverURL, &http.Client{}) | ||
params := message.NewCreateMessageParams() | ||
params.Body = &models.MessageExternal{ | ||
Title: gotifyOpts.Title, | ||
Message: gotifyOpts.Message, | ||
Priority: gotifyOpts.Priority, | ||
} | ||
|
||
_, err = c.Message.CreateMessage(params, auth.TokenAuth(gotifyOpts.Token)) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
log.Println("Successfully sent!") | ||
return nil | ||
}, | ||
} | ||
} |