Passport/pkg/authkit/models/notifications.go

43 lines
964 B
Go
Raw Normal View History

2024-02-01 07:08:40 +00:00
package models
import (
2024-06-02 12:15:04 +00:00
"gorm.io/datatypes"
"time"
)
2024-02-01 07:08:40 +00:00
type Notification struct {
BaseModel
2024-08-24 07:17:26 +00:00
Topic string `json:"topic"`
Title string `json:"title"`
2024-10-26 16:06:23 +00:00
Subtitle string `json:"subtitle"`
2024-08-24 07:17:26 +00:00
Body string `json:"body"`
Metadata datatypes.JSONMap `json:"metadata"`
2024-10-26 16:06:23 +00:00
Priority int `json:"priority"`
2024-08-24 07:17:26 +00:00
SenderID *uint `json:"sender_id"`
Account Account `json:"account"`
AccountID uint `json:"account_id"`
ReadAt *time.Time `json:"read_at"`
2024-10-26 16:06:23 +00:00
IsRealtime bool `json:"is_realtime" gorm:"-"`
}
2024-02-07 15:15:16 +00:00
const (
2024-06-06 14:48:43 +00:00
NotifySubscriberFirebase = "firebase"
NotifySubscriberAPNs = "apple"
2024-02-07 15:15:16 +00:00
)
type NotificationSubscriber struct {
BaseModel
UserAgent string `json:"user_agent"`
Provider string `json:"provider"`
DeviceID string `json:"device_id" gorm:"uniqueIndex"`
DeviceToken string `json:"device_token"`
2024-08-24 07:17:26 +00:00
Account Account `json:"account"`
AccountID uint `json:"account_id"`
2024-02-07 15:15:16 +00:00
}