2022-11-18 21:25:40 +01:00
|
|
|
package handler
|
|
|
|
|
|
|
|
import (
|
2022-11-19 15:13:47 +01:00
|
|
|
"blackforestbytes.com/simplecloudnotifier/api/apierr"
|
2022-12-20 13:55:09 +01:00
|
|
|
"blackforestbytes.com/simplecloudnotifier/api/ginresp"
|
2023-01-06 00:39:21 +01:00
|
|
|
primarydb "blackforestbytes.com/simplecloudnotifier/db/impl/primary"
|
2022-11-18 21:25:40 +01:00
|
|
|
"blackforestbytes.com/simplecloudnotifier/logic"
|
2022-11-20 22:18:24 +01:00
|
|
|
"blackforestbytes.com/simplecloudnotifier/models"
|
2022-11-18 21:25:40 +01:00
|
|
|
"github.com/gin-gonic/gin"
|
2022-11-19 15:13:47 +01:00
|
|
|
"gogs.mikescher.com/BlackForestBytes/goext/dataext"
|
|
|
|
"gogs.mikescher.com/BlackForestBytes/goext/langext"
|
|
|
|
"net/http"
|
2022-11-18 21:25:40 +01:00
|
|
|
)
|
|
|
|
|
2023-01-16 18:53:22 +01:00
|
|
|
type SendMessageResponse struct {
|
2023-02-03 22:51:03 +01:00
|
|
|
User models.User
|
|
|
|
Message models.Message
|
|
|
|
MessageIsOld bool
|
|
|
|
CompatMessageID int64
|
2023-01-16 18:53:22 +01:00
|
|
|
}
|
|
|
|
|
2022-11-18 21:25:40 +01:00
|
|
|
type MessageHandler struct {
|
2022-11-19 15:13:47 +01:00
|
|
|
app *logic.Application
|
2023-01-06 00:39:21 +01:00
|
|
|
database *primarydb.Database
|
2022-11-18 21:25:40 +01:00
|
|
|
}
|
|
|
|
|
2022-11-19 15:13:47 +01:00
|
|
|
func NewMessageHandler(app *logic.Application) MessageHandler {
|
|
|
|
return MessageHandler{
|
|
|
|
app: app,
|
2023-01-06 00:39:21 +01:00
|
|
|
database: app.Database.Primary,
|
2022-11-19 15:13:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SendMessage swaggerdoc
|
|
|
|
//
|
2023-04-21 21:45:16 +02:00
|
|
|
// @Summary Send a new message
|
|
|
|
// @Description All parameter can be set via query-parameter or the json body. Only UserID, UserKey and Title are required
|
|
|
|
// @Tags External
|
2022-11-19 15:13:47 +01:00
|
|
|
//
|
2023-04-21 21:45:16 +02:00
|
|
|
// @Param query_data query handler.SendMessage.combined false " "
|
|
|
|
// @Param post_body body handler.SendMessage.combined false " "
|
|
|
|
// @Param form_body formData handler.SendMessage.combined false " "
|
2022-11-19 15:13:47 +01:00
|
|
|
//
|
2023-04-21 21:45:16 +02:00
|
|
|
// @Success 200 {object} handler.SendMessage.response
|
|
|
|
// @Failure 400 {object} ginresp.apiError
|
|
|
|
// @Failure 401 {object} ginresp.apiError "The user_id was not found or the user_key is wrong"
|
|
|
|
// @Failure 403 {object} ginresp.apiError "The user has exceeded its daily quota - wait 24 hours or upgrade your account"
|
|
|
|
// @Failure 500 {object} ginresp.apiError "An internal server error occurred - try again later"
|
2022-11-19 15:13:47 +01:00
|
|
|
//
|
2023-04-21 21:45:16 +02:00
|
|
|
// @Router / [POST]
|
|
|
|
// @Router /send [POST]
|
2022-11-18 21:25:40 +01:00
|
|
|
func (h MessageHandler) SendMessage(g *gin.Context) ginresp.HTTPResponse {
|
2022-11-30 17:58:04 +01:00
|
|
|
type combined struct {
|
|
|
|
UserID *models.UserID `json:"user_id" form:"user_id" example:"7725" `
|
2023-04-21 21:45:16 +02:00
|
|
|
KeyToken *string `json:"key" form:"key" example:"P3TNH8mvv14fm" `
|
2022-11-30 17:58:04 +01:00
|
|
|
Channel *string `json:"channel" form:"channel" example:"test" `
|
|
|
|
Title *string `json:"title" form:"title" example:"Hello World" `
|
|
|
|
Content *string `json:"content" form:"content" example:"This is a message" `
|
|
|
|
Priority *int `json:"priority" form:"priority" example:"1" enums:"0,1,2" `
|
|
|
|
UserMessageID *string `json:"msg_id" form:"msg_id" example:"db8b0e6a-a08c-4646" `
|
|
|
|
SendTimestamp *float64 `json:"timestamp" form:"timestamp" example:"1669824037" `
|
|
|
|
SenderName *string `json:"sender_name" form:"sender_name" example:"example-server" `
|
|
|
|
}
|
|
|
|
|
2023-01-16 18:53:22 +01:00
|
|
|
type response struct {
|
|
|
|
Success bool `json:"success"`
|
|
|
|
ErrorID apierr.APIError `json:"error"`
|
|
|
|
ErrorHighlight int `json:"errhighlight"`
|
|
|
|
Message string `json:"message"`
|
|
|
|
SuppressSend bool `json:"suppress_send"`
|
|
|
|
MessageCount int `json:"messagecount"`
|
|
|
|
Quota int `json:"quota"`
|
|
|
|
IsPro bool `json:"is_pro"`
|
|
|
|
QuotaMax int `json:"quota_max"`
|
|
|
|
SCNMessageID models.MessageID `json:"scn_msg_id"`
|
|
|
|
}
|
|
|
|
|
2022-11-30 17:58:04 +01:00
|
|
|
var b combined
|
|
|
|
var q combined
|
|
|
|
var f combined
|
2023-06-10 03:41:54 +02:00
|
|
|
ctx, errResp := h.app.StartRequest(g, nil, &q, &b, &f, logic.RequestOptions{IgnoreWrongContentType: true})
|
2022-11-20 03:06:08 +01:00
|
|
|
if errResp != nil {
|
|
|
|
return *errResp
|
|
|
|
}
|
|
|
|
defer ctx.Cancel()
|
|
|
|
|
2022-11-30 20:23:31 +01:00
|
|
|
// query has highest prio, then form, then json
|
2022-11-20 20:34:18 +01:00
|
|
|
data := dataext.ObjectMerge(dataext.ObjectMerge(b, f), q)
|
2022-11-20 03:06:08 +01:00
|
|
|
|
2023-08-12 19:04:04 +02:00
|
|
|
okResp, errResp := h.app.SendMessage(g, ctx, data.UserID, data.KeyToken, data.Channel, data.Title, data.Content, data.Priority, data.UserMessageID, data.SendTimestamp, data.SenderName)
|
2023-01-16 18:53:22 +01:00
|
|
|
if errResp != nil {
|
|
|
|
return *errResp
|
|
|
|
} else {
|
2023-06-17 20:16:02 +02:00
|
|
|
return ctx.FinishSuccess(ginresp.JSON(http.StatusOK, response{
|
|
|
|
Success: true,
|
|
|
|
ErrorID: apierr.NO_ERROR,
|
|
|
|
ErrorHighlight: -1,
|
|
|
|
Message: langext.Conditional(okResp.MessageIsOld, "Message already sent", "Message sent"),
|
|
|
|
SuppressSend: okResp.MessageIsOld,
|
|
|
|
MessageCount: okResp.User.MessagesSent,
|
|
|
|
Quota: okResp.User.QuotaUsedToday(),
|
|
|
|
IsPro: okResp.User.IsPro,
|
|
|
|
QuotaMax: okResp.User.QuotaPerDay(),
|
|
|
|
SCNMessageID: okResp.Message.MessageID,
|
|
|
|
}))
|
2022-11-19 15:13:47 +01:00
|
|
|
}
|
2023-01-16 18:53:22 +01:00
|
|
|
}
|