2024-03-26 15:05:13 +00:00
|
|
|
package models
|
|
|
|
|
2024-09-11 15:58:02 +00:00
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"git.solsynth.dev/hydrogen/dealer/pkg/hyper"
|
|
|
|
)
|
2024-07-20 08:02:16 +00:00
|
|
|
|
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 {
|
2024-09-11 15:58:02 +00:00
|
|
|
hyper.BaseModel
|
2024-03-26 15:05:13 +00:00
|
|
|
|
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-06-27 14:38:18 +00:00
|
|
|
Messages []Event `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"`
|
2024-05-06 15:28:15 +00:00
|
|
|
|
|
|
|
Realm Realm `json:"realm"`
|
|
|
|
RealmID *uint `json:"realm_id"`
|
2024-03-26 15:05:13 +00:00
|
|
|
}
|
|
|
|
|
2024-07-20 08:02:16 +00:00
|
|
|
func (v Channel) DisplayText() string {
|
|
|
|
if v.Type == ChannelTypeDirect {
|
|
|
|
return "DM"
|
|
|
|
}
|
2024-08-01 04:03:34 +00:00
|
|
|
if v.RealmID != nil {
|
|
|
|
return fmt.Sprintf("%s, %s", v.Alias, v.Realm.Alias)
|
|
|
|
}
|
|
|
|
return fmt.Sprintf("%s", v.Alias)
|
2024-07-20 08:02:16 +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 {
|
2024-09-11 15:58:02 +00:00
|
|
|
hyper.BaseModel
|
2024-03-26 15:05:13 +00:00
|
|
|
|
2024-05-26 15:01:20 +00:00
|
|
|
ChannelID uint `json:"channel_id"`
|
|
|
|
AccountID uint `json:"account_id"`
|
2024-06-08 13:46:06 +00:00
|
|
|
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-06-27 14:38:18 +00:00
|
|
|
Calls []Call `json:"calls" gorm:"foreignKey:FounderID"`
|
|
|
|
Events []Event `json:"events" gorm:"foreignKey:SenderID"`
|
2024-03-26 15:05:13 +00:00
|
|
|
}
|