2022-11-13 19:17:07 +01:00
|
|
|
package logic
|
|
|
|
|
|
|
|
import (
|
|
|
|
scn "blackforestbytes.com/simplecloudnotifier"
|
2022-11-18 23:12:37 +01:00
|
|
|
"blackforestbytes.com/simplecloudnotifier/api/apierr"
|
2022-12-20 13:55:09 +01:00
|
|
|
"blackforestbytes.com/simplecloudnotifier/api/ginresp"
|
2024-02-24 12:20:41 +01:00
|
|
|
"blackforestbytes.com/simplecloudnotifier/db/impl/primary"
|
2023-07-27 17:44:06 +02:00
|
|
|
"blackforestbytes.com/simplecloudnotifier/db/simplectx"
|
2022-11-25 22:42:21 +01:00
|
|
|
"blackforestbytes.com/simplecloudnotifier/google"
|
2022-11-19 15:13:47 +01:00
|
|
|
"blackforestbytes.com/simplecloudnotifier/models"
|
2022-11-23 19:32:23 +01:00
|
|
|
"blackforestbytes.com/simplecloudnotifier/push"
|
2022-11-13 19:17:07 +01:00
|
|
|
"context"
|
2023-01-17 22:03:27 +01:00
|
|
|
"errors"
|
2023-06-18 01:55:58 +02:00
|
|
|
"fmt"
|
2022-11-13 19:17:07 +01:00
|
|
|
"github.com/gin-gonic/gin"
|
2022-11-20 03:06:08 +01:00
|
|
|
"github.com/gin-gonic/gin/binding"
|
2022-11-13 19:17:07 +01:00
|
|
|
"github.com/rs/zerolog/log"
|
2022-11-18 23:12:37 +01:00
|
|
|
"gogs.mikescher.com/BlackForestBytes/goext/langext"
|
2023-01-15 06:30:30 +01:00
|
|
|
"gogs.mikescher.com/BlackForestBytes/goext/rext"
|
2022-11-30 23:46:28 +01:00
|
|
|
"gogs.mikescher.com/BlackForestBytes/goext/syncext"
|
2022-11-13 19:17:07 +01:00
|
|
|
"net"
|
|
|
|
"net/http"
|
|
|
|
"os"
|
|
|
|
"os/signal"
|
2022-11-19 23:16:54 +01:00
|
|
|
"regexp"
|
2022-11-18 23:12:37 +01:00
|
|
|
"strings"
|
2022-11-13 19:17:07 +01:00
|
|
|
"syscall"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
2023-01-15 06:30:30 +01:00
|
|
|
var rexWhitespaceStart = rext.W(regexp.MustCompile("^\\s+"))
|
|
|
|
var rexWhitespaceEnd = rext.W(regexp.MustCompile("\\s+$"))
|
|
|
|
var rexNormalizeUsername = rext.W(regexp.MustCompile("[^[:alnum:]\\-_ ]"))
|
2023-06-18 11:59:26 +02:00
|
|
|
var rexCompatTitleChannel = rext.W(regexp.MustCompile("^\\[(?P<channel>[A-Za-z\\-0-9_ ]+)] (?P<title>(.|\\r|\\n)+)$"))
|
2023-01-13 17:17:17 +01:00
|
|
|
|
2022-11-13 19:17:07 +01:00
|
|
|
type Application struct {
|
2022-11-25 22:42:21 +01:00
|
|
|
Config scn.Config
|
|
|
|
Gin *gin.Engine
|
2023-01-06 00:39:21 +01:00
|
|
|
Database *DBPool
|
2022-11-30 17:58:04 +01:00
|
|
|
Pusher push.NotificationClient
|
2022-11-25 22:42:21 +01:00
|
|
|
AndroidPublisher google.AndroidPublisherClient
|
|
|
|
Jobs []Job
|
|
|
|
stopChan chan bool
|
|
|
|
Port string
|
2022-11-30 23:46:28 +01:00
|
|
|
IsRunning *syncext.AtomicBool
|
2023-01-13 17:17:17 +01:00
|
|
|
RequestLogQueue chan models.RequestLog
|
2022-11-13 19:17:07 +01:00
|
|
|
}
|
|
|
|
|
2023-01-06 00:39:21 +01:00
|
|
|
func NewApp(db *DBPool) *Application {
|
2022-11-20 12:59:43 +01:00
|
|
|
return &Application{
|
2023-01-13 17:17:17 +01:00
|
|
|
Database: db,
|
|
|
|
stopChan: make(chan bool),
|
|
|
|
IsRunning: syncext.NewAtomicBool(false),
|
|
|
|
RequestLogQueue: make(chan models.RequestLog, 1024),
|
2022-11-20 12:59:43 +01:00
|
|
|
}
|
2022-11-13 19:17:07 +01:00
|
|
|
}
|
|
|
|
|
2022-11-25 22:42:21 +01:00
|
|
|
func (app *Application) Init(cfg scn.Config, g *gin.Engine, fb push.NotificationClient, apc google.AndroidPublisherClient, jobs []Job) {
|
2022-11-13 19:17:07 +01:00
|
|
|
app.Config = cfg
|
|
|
|
app.Gin = g
|
2022-11-30 17:58:04 +01:00
|
|
|
app.Pusher = fb
|
2022-11-25 22:42:21 +01:00
|
|
|
app.AndroidPublisher = apc
|
2022-11-20 15:40:19 +01:00
|
|
|
app.Jobs = jobs
|
2022-11-13 19:17:07 +01:00
|
|
|
}
|
|
|
|
|
2022-11-23 20:21:49 +01:00
|
|
|
func (app *Application) Stop() {
|
2022-11-30 23:46:28 +01:00
|
|
|
// non-blocking send
|
|
|
|
select {
|
|
|
|
case app.stopChan <- true:
|
|
|
|
}
|
2022-11-23 20:21:49 +01:00
|
|
|
}
|
|
|
|
|
2022-11-13 19:17:07 +01:00
|
|
|
func (app *Application) Run() {
|
|
|
|
httpserver := &http.Server{
|
|
|
|
Addr: net.JoinHostPort(app.Config.ServerIP, app.Config.ServerPort),
|
|
|
|
Handler: app.Gin,
|
|
|
|
}
|
|
|
|
|
|
|
|
errChan := make(chan error)
|
|
|
|
|
|
|
|
go func() {
|
2022-11-23 20:21:49 +01:00
|
|
|
|
|
|
|
ln, err := net.Listen("tcp", httpserver.Addr)
|
|
|
|
if err != nil {
|
|
|
|
errChan <- err
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
_, port, err := net.SplitHostPort(ln.Addr().String())
|
|
|
|
if err != nil {
|
|
|
|
errChan <- err
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Info().Str("address", httpserver.Addr).Msg("HTTP-Server started on http://localhost:" + port)
|
|
|
|
|
|
|
|
app.Port = port
|
|
|
|
|
2022-11-30 23:46:28 +01:00
|
|
|
app.IsRunning.Set(true) // the net.Listener a few lines above is at this point actually already buffering requests
|
|
|
|
|
2022-11-23 20:21:49 +01:00
|
|
|
errChan <- httpserver.Serve(ln)
|
2022-11-13 19:17:07 +01:00
|
|
|
}()
|
|
|
|
|
2022-12-22 10:21:10 +01:00
|
|
|
sigstop := make(chan os.Signal, 1)
|
|
|
|
signal.Notify(sigstop, os.Interrupt, syscall.SIGTERM)
|
2022-11-20 15:40:19 +01:00
|
|
|
|
|
|
|
for _, job := range app.Jobs {
|
2023-01-13 17:17:17 +01:00
|
|
|
err := job.Start()
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal().Err(err).Msg("Failed to start job")
|
|
|
|
}
|
2022-11-20 15:40:19 +01:00
|
|
|
}
|
|
|
|
|
2022-11-13 19:17:07 +01:00
|
|
|
select {
|
2022-12-22 10:21:10 +01:00
|
|
|
case <-sigstop:
|
2022-11-13 19:17:07 +01:00
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
|
|
|
|
defer cancel()
|
2022-11-20 15:40:19 +01:00
|
|
|
|
2022-11-13 19:17:07 +01:00
|
|
|
log.Info().Msg("Stopping HTTP-Server")
|
2022-11-20 15:40:19 +01:00
|
|
|
|
2022-11-13 19:17:07 +01:00
|
|
|
err := httpserver.Shutdown(ctx)
|
2022-11-20 15:40:19 +01:00
|
|
|
|
2022-11-13 19:17:07 +01:00
|
|
|
if err != nil {
|
|
|
|
log.Info().Err(err).Msg("Error while stopping the http-server")
|
2022-11-20 15:40:19 +01:00
|
|
|
} else {
|
|
|
|
log.Info().Msg("Stopped HTTP-Server")
|
2022-11-13 19:17:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
case err := <-errChan:
|
|
|
|
log.Error().Err(err).Msg("HTTP-Server failed")
|
2022-11-23 20:21:49 +01:00
|
|
|
|
|
|
|
case _ = <-app.stopChan:
|
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
log.Info().Msg("Manually stopping HTTP-Server")
|
|
|
|
|
|
|
|
err := httpserver.Shutdown(ctx)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
log.Info().Err(err).Msg("Error while stopping the http-server")
|
|
|
|
} else {
|
|
|
|
log.Info().Msg("Manually stopped HTTP-Server")
|
|
|
|
}
|
2022-11-13 19:17:07 +01:00
|
|
|
}
|
|
|
|
|
2022-11-20 15:40:19 +01:00
|
|
|
for _, job := range app.Jobs {
|
2022-11-23 20:21:49 +01:00
|
|
|
job.Stop()
|
2022-11-20 15:40:19 +01:00
|
|
|
}
|
2022-11-30 23:46:28 +01:00
|
|
|
|
2023-05-28 12:31:14 +02:00
|
|
|
log.Info().Msg("Manually stopped Jobs")
|
|
|
|
|
2022-12-22 10:21:10 +01:00
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
|
|
|
|
defer cancel()
|
|
|
|
err := app.Database.Stop(ctx)
|
|
|
|
if err != nil {
|
|
|
|
log.Info().Err(err).Msg("Error while stopping the database")
|
|
|
|
}
|
|
|
|
|
2023-05-28 12:31:14 +02:00
|
|
|
log.Info().Msg("Manually closed database connection")
|
|
|
|
|
2022-11-30 23:46:28 +01:00
|
|
|
app.IsRunning.Set(false)
|
2022-11-13 19:17:07 +01:00
|
|
|
}
|
2022-11-13 22:31:28 +01:00
|
|
|
|
|
|
|
func (app *Application) GenerateRandomAuthKey() string {
|
2023-01-15 06:30:30 +01:00
|
|
|
return scn.RandomAuthKey()
|
2022-11-13 22:31:28 +01:00
|
|
|
}
|
|
|
|
|
2022-11-25 22:42:21 +01:00
|
|
|
func (app *Application) VerifyProToken(ctx *AppContext, token string) (bool, error) {
|
2023-01-17 22:03:27 +01:00
|
|
|
|
2023-01-15 06:30:30 +01:00
|
|
|
if strings.HasPrefix(token, "ANDROID|v1|") {
|
2023-01-17 22:03:27 +01:00
|
|
|
subToken := token[len("ANDROID|v1|"):]
|
2023-01-15 06:30:30 +01:00
|
|
|
return app.VerifyAndroidProToken(ctx, subToken)
|
|
|
|
}
|
2023-01-17 22:03:27 +01:00
|
|
|
|
2022-11-25 22:42:21 +01:00
|
|
|
if strings.HasPrefix(token, "ANDROID|v2|") {
|
|
|
|
subToken := token[len("ANDROID|v2|"):]
|
|
|
|
return app.VerifyAndroidProToken(ctx, subToken)
|
|
|
|
}
|
2023-01-17 22:03:27 +01:00
|
|
|
|
|
|
|
if strings.HasPrefix(token, "IOS|v1|") {
|
|
|
|
return false, errors.New("invalid token-version: ios-v1")
|
|
|
|
}
|
|
|
|
|
2022-11-25 22:42:21 +01:00
|
|
|
if strings.HasPrefix(token, "IOS|v2|") {
|
|
|
|
subToken := token[len("IOS|v2|"):]
|
|
|
|
return app.VerifyIOSProToken(ctx, subToken)
|
|
|
|
}
|
|
|
|
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (app *Application) VerifyAndroidProToken(ctx *AppContext, token string) (bool, error) {
|
|
|
|
|
|
|
|
purchase, err := app.AndroidPublisher.GetProductPurchase(ctx, app.Config.GooglePackageName, app.Config.GoogleProProductID, token)
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if purchase == nil {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
if purchase.PurchaseState == nil {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
if *purchase.PurchaseState != google.PurchaseStatePurchased {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (app *Application) VerifyIOSProToken(ctx *AppContext, token string) (bool, error) {
|
|
|
|
return false, nil //TODO IOS
|
2022-11-13 22:31:28 +01:00
|
|
|
}
|
2022-11-18 21:25:40 +01:00
|
|
|
|
|
|
|
func (app *Application) Migrate() error {
|
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), 24*time.Second)
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
return app.Database.Migrate(ctx)
|
|
|
|
}
|
|
|
|
|
2023-06-10 03:41:54 +02:00
|
|
|
type RequestOptions struct {
|
|
|
|
IgnoreWrongContentType bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func (app *Application) StartRequest(g *gin.Context, uri any, query any, body any, form any, opts ...RequestOptions) (*AppContext, *ginresp.HTTPResponse) {
|
|
|
|
|
|
|
|
ignoreWrongContentType := langext.ArrAny(opts, func(o RequestOptions) bool { return o.IgnoreWrongContentType })
|
2022-11-18 21:25:40 +01:00
|
|
|
|
2022-11-20 03:06:08 +01:00
|
|
|
if uri != nil {
|
|
|
|
if err := g.ShouldBindUri(uri); err != nil {
|
2022-11-20 20:34:18 +01:00
|
|
|
return nil, langext.Ptr(ginresp.APIError(g, 400, apierr.BINDFAIL_URI_PARAM, "Failed to read uri", err))
|
2022-11-18 23:12:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if query != nil {
|
2022-11-20 03:06:08 +01:00
|
|
|
if err := g.ShouldBindQuery(query); err != nil {
|
2022-11-20 20:34:18 +01:00
|
|
|
return nil, langext.Ptr(ginresp.APIError(g, 400, apierr.BINDFAIL_QUERY_PARAM, "Failed to read query", err))
|
2022-11-18 23:12:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-09 20:14:30 +02:00
|
|
|
if body != nil {
|
|
|
|
if g.ContentType() == "application/json" {
|
|
|
|
if err := g.ShouldBindJSON(body); err != nil {
|
2023-06-10 00:15:42 +02:00
|
|
|
return nil, langext.Ptr(ginresp.APIError(g, 400, apierr.BINDFAIL_BODY_PARAM, "Failed to read body", err))
|
|
|
|
}
|
2023-06-09 20:14:30 +02:00
|
|
|
} else {
|
2023-06-10 03:41:54 +02:00
|
|
|
if !ignoreWrongContentType {
|
|
|
|
return nil, langext.Ptr(ginresp.APIError(g, 400, apierr.BINDFAIL_BODY_PARAM, "missing JSON body", nil))
|
|
|
|
}
|
2022-11-20 03:06:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-09 20:14:30 +02:00
|
|
|
if form != nil {
|
2023-06-10 00:15:42 +02:00
|
|
|
if g.ContentType() == "multipart/form-data" {
|
2023-06-09 20:14:30 +02:00
|
|
|
if err := g.ShouldBindWith(form, binding.Form); err != nil {
|
2023-06-10 00:15:42 +02:00
|
|
|
return nil, langext.Ptr(ginresp.APIError(g, 400, apierr.BINDFAIL_BODY_PARAM, "Failed to read multipart-form", err))
|
|
|
|
}
|
2023-06-18 03:46:01 +02:00
|
|
|
} else if g.ContentType() == "application/x-www-form-urlencoded" {
|
|
|
|
if err := g.ShouldBindWith(form, binding.Form); err != nil {
|
|
|
|
return nil, langext.Ptr(ginresp.APIError(g, 400, apierr.BINDFAIL_BODY_PARAM, "Failed to read urlencoded-form", err))
|
|
|
|
}
|
2023-06-09 20:14:30 +02:00
|
|
|
} else {
|
2023-06-10 03:41:54 +02:00
|
|
|
if !ignoreWrongContentType {
|
|
|
|
return nil, langext.Ptr(ginresp.APIError(g, 400, apierr.BINDFAIL_BODY_PARAM, "missing form body", nil))
|
|
|
|
}
|
2022-11-18 23:12:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ictx, cancel := context.WithTimeout(context.Background(), app.Config.RequestTimeout)
|
2023-04-21 21:45:16 +02:00
|
|
|
actx := CreateAppContext(app, g, ictx, cancel)
|
2022-11-18 23:12:37 +01:00
|
|
|
|
|
|
|
authheader := g.GetHeader("Authorization")
|
|
|
|
|
|
|
|
perm, err := app.getPermissions(actx, authheader)
|
|
|
|
if err != nil {
|
|
|
|
cancel()
|
2022-11-20 20:34:18 +01:00
|
|
|
return nil, langext.Ptr(ginresp.APIError(g, 400, apierr.PERM_QUERY_FAIL, "Failed to determine permissions", err))
|
2022-11-18 23:12:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
actx.permissions = perm
|
2023-01-13 17:17:17 +01:00
|
|
|
g.Set("perm", perm)
|
2022-11-18 23:12:37 +01:00
|
|
|
|
|
|
|
return actx, nil
|
|
|
|
}
|
|
|
|
|
2023-07-27 17:44:06 +02:00
|
|
|
func (app *Application) NewSimpleTransactionContext(timeout time.Duration) *simplectx.SimpleContext {
|
2022-11-20 15:40:19 +01:00
|
|
|
ictx, cancel := context.WithTimeout(context.Background(), timeout)
|
2023-07-27 17:44:06 +02:00
|
|
|
return simplectx.CreateSimpleContext(ictx, cancel)
|
2022-11-20 15:40:19 +01:00
|
|
|
}
|
|
|
|
|
2023-01-13 17:17:17 +01:00
|
|
|
func (app *Application) getPermissions(ctx *AppContext, hdr string) (models.PermissionSet, error) {
|
2022-11-18 23:12:37 +01:00
|
|
|
if hdr == "" {
|
2023-01-13 17:17:17 +01:00
|
|
|
return models.NewEmptyPermissions(), nil
|
2022-11-18 23:12:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if !strings.HasPrefix(hdr, "SCN ") {
|
2023-01-13 17:17:17 +01:00
|
|
|
return models.NewEmptyPermissions(), nil
|
2022-11-18 23:12:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
key := strings.TrimSpace(hdr[4:])
|
|
|
|
|
2023-04-21 21:45:16 +02:00
|
|
|
tok, err := app.Database.Primary.GetKeyTokenByToken(ctx, key)
|
2022-11-18 23:12:37 +01:00
|
|
|
if err != nil {
|
2023-01-13 17:17:17 +01:00
|
|
|
return models.PermissionSet{}, err
|
2022-11-18 23:12:37 +01:00
|
|
|
}
|
|
|
|
|
2023-04-21 21:45:16 +02:00
|
|
|
if tok != nil {
|
|
|
|
|
|
|
|
err = app.Database.Primary.UpdateKeyTokenLastUsed(ctx, tok.KeyTokenID)
|
|
|
|
if err != nil {
|
|
|
|
return models.PermissionSet{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return models.PermissionSet{Token: tok}, nil
|
2022-11-18 23:12:37 +01:00
|
|
|
}
|
|
|
|
|
2023-01-13 17:17:17 +01:00
|
|
|
return models.NewEmptyPermissions(), nil
|
2022-11-18 21:25:40 +01:00
|
|
|
}
|
2022-11-19 15:13:47 +01:00
|
|
|
|
2022-12-22 11:22:36 +01:00
|
|
|
func (app *Application) GetOrCreateChannel(ctx *AppContext, userid models.UserID, displayChanName string, intChanName string) (models.Channel, error) {
|
2023-01-06 00:39:21 +01:00
|
|
|
existingChan, err := app.Database.Primary.GetChannelByName(ctx, userid, intChanName)
|
2022-11-19 15:13:47 +01:00
|
|
|
if err != nil {
|
|
|
|
return models.Channel{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if existingChan != nil {
|
|
|
|
return *existingChan, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
subscribeKey := app.GenerateRandomAuthKey()
|
|
|
|
|
2024-02-24 12:20:41 +01:00
|
|
|
channel := primary.CreateChanel{
|
|
|
|
UserId: userid,
|
|
|
|
IntName: intChanName,
|
|
|
|
SubscribeKey: subscribeKey,
|
|
|
|
DisplayName: displayChanName,
|
|
|
|
}
|
|
|
|
newChan, err := app.Database.Primary.CreateChannel(ctx, channel)
|
2022-11-19 15:13:47 +01:00
|
|
|
if err != nil {
|
|
|
|
return models.Channel{}, err
|
|
|
|
}
|
|
|
|
|
2023-01-06 00:39:21 +01:00
|
|
|
_, err = app.Database.Primary.CreateSubscription(ctx, userid, newChan, true)
|
2022-11-19 15:13:47 +01:00
|
|
|
if err != nil {
|
|
|
|
return models.Channel{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return newChan, nil
|
|
|
|
}
|
2022-11-19 23:16:54 +01:00
|
|
|
|
2022-12-22 11:22:36 +01:00
|
|
|
func (app *Application) NormalizeChannelDisplayName(v string) string {
|
2023-05-28 13:14:05 +02:00
|
|
|
return strings.TrimSpace(v)
|
2022-12-22 11:22:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (app *Application) NormalizeChannelInternalName(v string) string {
|
2023-05-28 13:14:05 +02:00
|
|
|
return strings.TrimSpace(v)
|
2022-11-19 23:16:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (app *Application) NormalizeUsername(v string) string {
|
2023-05-28 13:14:05 +02:00
|
|
|
return strings.TrimSpace(v)
|
2022-11-19 23:16:54 +01:00
|
|
|
}
|
2022-11-20 15:40:19 +01:00
|
|
|
|
2023-06-18 01:55:58 +02:00
|
|
|
func (app *Application) DeliverMessage(ctx context.Context, client models.Client, msg models.Message, compatTitleOverride *string, compatMsgIDOverride *string) (string, error) {
|
|
|
|
fcmDelivID, err := app.Pusher.SendNotification(ctx, client, msg, compatTitleOverride, compatMsgIDOverride)
|
2023-05-28 23:25:18 +02:00
|
|
|
if err != nil {
|
|
|
|
log.Warn().Str("MessageID", msg.MessageID.String()).Str("ClientID", client.ClientID.String()).Err(err).Msg("FCM Delivery failed")
|
|
|
|
return "", err
|
2022-11-20 15:40:19 +01:00
|
|
|
}
|
2023-05-28 23:25:18 +02:00
|
|
|
return fcmDelivID, nil
|
2022-11-20 15:40:19 +01:00
|
|
|
}
|
2023-01-13 17:17:17 +01:00
|
|
|
|
|
|
|
func (app *Application) InsertRequestLog(data models.RequestLog) {
|
|
|
|
ok := syncext.WriteNonBlocking(app.RequestLogQueue, data)
|
|
|
|
if !ok {
|
|
|
|
log.Error().Msg("failed to insert request-log (queue full)")
|
|
|
|
}
|
|
|
|
}
|
2023-06-18 01:55:58 +02:00
|
|
|
|
|
|
|
func (app *Application) CompatizeMessageTitle(ctx TxContext, msg models.Message) string {
|
|
|
|
if msg.ChannelInternalName == "main" {
|
2023-06-18 11:59:26 +02:00
|
|
|
if rexCompatTitleChannel.IsMatch(msg.Title) {
|
|
|
|
return "!" + msg.Title // channel in title ?!
|
|
|
|
}
|
|
|
|
|
2023-06-18 01:55:58 +02:00
|
|
|
return msg.Title
|
|
|
|
}
|
|
|
|
|
|
|
|
channel, err := app.Database.Primary.GetChannelByID(ctx, msg.ChannelID)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Sprintf("[%s] %s", "%SCN-ERR%", msg.Title)
|
|
|
|
}
|
|
|
|
|
|
|
|
return fmt.Sprintf("[%s] %s", channel.DisplayName, msg.Title)
|
|
|
|
}
|