mirror of
https://github.com/binwiederhier/ntfy.git
synced 2025-04-04 21:57:40 +03:00
Minor refactor, added GET
This commit is contained in:
parent
f1d134dfc2
commit
91375b2e8e
4 changed files with 112 additions and 44 deletions
56
server/server_matrix.go
Normal file
56
server/server_matrix.go
Normal file
|
@ -0,0 +1,56 @@
|
|||
package server
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"heckel.io/ntfy/log"
|
||||
"io"
|
||||
"net/http"
|
||||
)
|
||||
|
||||
const (
|
||||
matrixPushkeyHeader = "X-Matrix-Pushkey"
|
||||
)
|
||||
|
||||
type matrixMessage struct {
|
||||
Notification *matrixNotification `json:"notification"`
|
||||
}
|
||||
|
||||
type matrixNotification struct {
|
||||
Devices []*matrixDevice `json:"devices"`
|
||||
}
|
||||
|
||||
type matrixDevice struct {
|
||||
PushKey string `json:"pushkey"`
|
||||
}
|
||||
|
||||
type matrixResponse struct {
|
||||
Rejected []string `json:"rejected"`
|
||||
}
|
||||
|
||||
func handleMatrixDiscovery(w http.ResponseWriter) error {
|
||||
w.Header().Set("Content-Type", "application/json")
|
||||
_, err := io.WriteString(w, `{"unifiedpush":{"gateway":"matrix"}}`+"\n")
|
||||
return err
|
||||
}
|
||||
|
||||
func writeMatrixError(w http.ResponseWriter, pushKey string, err error) error {
|
||||
log.Debug("Matrix message with push key %s rejected: %s", pushKey, err.Error())
|
||||
response := &matrixResponse{
|
||||
Rejected: []string{pushKey},
|
||||
}
|
||||
w.Header().Set("Content-Type", "application/json")
|
||||
if err := json.NewEncoder(w).Encode(response); err != nil {
|
||||
return err
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func writeMatrixSuccess(w http.ResponseWriter) error {
|
||||
response := &matrixResponse{
|
||||
Rejected: make([]string, 0),
|
||||
}
|
||||
if err := json.NewEncoder(w).Encode(response); err != nil {
|
||||
return err
|
||||
}
|
||||
return nil
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue