databag/net/server/internal/api_setPushEvent.go
2024-09-15 21:32:40 -07:00

152 lines
4.3 KiB
Go

package databag
import (
webpush "github.com/SherClockHolmes/webpush-go"
"databag/internal/store"
"net/http"
"bytes"
"encoding/json"
"errors"
)
type Payload struct {
Title string `json:"title"`
Body string `json:"body"`
Sound string `json:"sound"`
}
type Message struct {
Notification Payload `json:"notification"`
To string `json:"to"`
}
//AddPushEvent notify account of event to push notify
func SetPushEvent(w http.ResponseWriter, r *http.Request) {
card, code, err := ParamContactToken(r, false)
if err != nil {
ErrResponse(w, code, err)
return
}
var event string
if err := ParseRequest(r, w, &event); err != nil {
ErrResponse(w, http.StatusBadRequest, err)
return
}
SendPushEvent(card.Account, event)
WriteResponse(w, nil)
}
//SendPushEvent delivers notification to clients
func SendPushEvent(account store.Account, event string) {
// check if server supports push
if getBoolConfigValue(CNFPushSupported, true) != true {
return
}
// get all sessions supporting push for specified event
rows, err := store.DB.Table("sessions").Select("sessions.push_token, sessions.push_type, sessions.web_auth, sessions.web_public_key, sessions.web_endpoint, push_events.message_title, push_events.message_body").Joins("left join push_events on push_events.session_id = sessions.id").Where("sessions.account_id = ? AND sessions.push_enabled = ? AND push_events.event = ?", account.GUID, true, event).Rows();
if err != nil {
ErrMsg(err);
return
}
tokens := make(map[string]bool)
for rows.Next() {
var pushToken string
var pushType string
var messageTitle string
var messageBody string
var webAuth string
var webPublicKey string
var webEndpoint string
rows.Scan(&pushToken, &pushType, &webAuth, &webPublicKey, &webEndpoint, &messageTitle, &messageBody)
pushRef := pushType + ":" + pushToken + ":" + webAuth;
if _, exists := tokens[pushRef]; !exists {
tokens[pushRef] = true;
if pushType == "up" {
if pushToken == "" || pushToken == "null" {
continue;
}
message := []byte(messageTitle);
req, err := http.NewRequest(http.MethodPost, pushToken, bytes.NewBuffer(message))
if err != nil {
ErrMsg(err)
continue
}
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
ErrMsg(err)
continue
}
if resp.StatusCode != 200 {
ErrMsg(errors.New("failed to push notification"));
}
} else if pushType == "web" {
if webEndpoint == "" || webEndpoint == "null" {
continue;
}
keys := webpush.Keys{
Auth: webAuth,
P256dh: webPublicKey,
}
subscription := &webpush.Subscription{
Endpoint: webEndpoint,
Keys: keys,
}
msg := []byte("{ \"title\": \"Databag\", \"message\": \"" + messageTitle + "\" }")
options := &webpush.Options{
RecordSize: 0,
Topic: "Databag",
Subscriber: account.Handle,
Urgency: webpush.UrgencyHigh,
VAPIDPublicKey: getStrConfigValue(CNFWebPublicKey, ""),
VAPIDPrivateKey: getStrConfigValue(CNFWebPrivateKey, ""),
TTL: 30,
}
resp, err := webpush.SendNotification(msg, subscription, options);
defer resp.Body.Close()
if err != nil {
ErrMsg(err)
continue
}
} else {
if pushToken == "" || pushToken == "null" {
continue;
}
url := "https://repeater.coredb.org/notify"
message := PushMessage{ Title: messageTitle, Body: messageBody, Token: pushToken };
body, err := json.Marshal(message)
if err != nil {
ErrMsg(err)
continue
}
req, err := http.NewRequest(http.MethodPost, url, bytes.NewBuffer(body))
if err != nil {
ErrMsg(err)
continue
}
req.Header.Set("Content-Type", "application/json; charset=utf-8")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
ErrMsg(err)
continue
}
if resp.StatusCode != 200 {
ErrMsg(errors.New("failed to push notification"));
}
}
}
}
}