Messaging/pkg/internal/models/channels.go

50 lines
1.2 KiB
Go
Raw Normal View History

2024-03-26 15:05:13 +00:00
package models
2024-03-30 09:10:36 +00:00
type ChannelType = uint8
const (
2024-05-26 15:01:20 +00:00
ChannelTypeCommon = ChannelType(iota)
ChannelTypeDirect
2024-03-30 09:10:36 +00:00
)
2024-03-26 15:05:13 +00:00
type Channel struct {
BaseModel
2024-05-04 16:39:59 +00:00
Alias string `json:"alias"`
2024-03-26 15:05:13 +00:00
Name string `json:"name"`
Description string `json:"description"`
Members []ChannelMember `json:"members"`
2024-03-30 09:10:36 +00:00
Messages []Message `json:"messages"`
2024-04-06 09:08:01 +00:00
Calls []Call `json:"calls"`
2024-03-30 09:10:36 +00:00
Type ChannelType `json:"type"`
2024-03-30 17:27:41 +00:00
Account Account `json:"account"`
2024-03-26 15:05:13 +00:00
AccountID uint `json:"account_id"`
2024-05-12 14:00:22 +00:00
IsEncrypted bool `json:"is_encrypted"`
Realm Realm `json:"realm"`
RealmID *uint `json:"realm_id"`
2024-03-26 15:05:13 +00:00
}
2024-04-06 08:08:33 +00:00
type NotifyLevel = int8
const (
NotifyLevelAll = NotifyLevel(iota)
NotifyLevelMentioned
NotifyLevelNone
)
2024-03-26 15:05:13 +00:00
type ChannelMember struct {
BaseModel
2024-05-26 15:01:20 +00:00
ChannelID uint `json:"channel_id"`
AccountID uint `json:"account_id"`
Nick *string `json:"nick"`
2024-05-26 15:01:20 +00:00
Channel Channel `json:"channel"`
Account Account `json:"account"`
Notify NotifyLevel `json:"notify"`
PowerLevel int `json:"power_level"`
2024-03-30 09:10:36 +00:00
2024-04-06 09:08:01 +00:00
Calls []Call `json:"calls" gorm:"foreignKey:FounderID"`
2024-03-30 09:10:36 +00:00
Messages []Message `json:"messages" gorm:"foreignKey:SenderID"`
2024-03-26 15:05:13 +00:00
}