package models import ( "time" "gorm.io/datatypes" ) type Post struct { BaseModel Alias string `json:"alias" gorm:"uniqueIndex"` Content string `json:"content"` Tags []Tag `json:"tags" gorm:"many2many:post_tags"` Categories []Category `json:"categories" gorm:"many2many:post_categories"` Reactions []Reaction `json:"reactions"` Replies []Post `json:"replies" gorm:"foreignKey:ReplyID"` Attachments datatypes.JSONSlice[uint] `json:"attachments"` ReplyID *uint `json:"reply_id"` RepostID *uint `json:"repost_id"` RealmID *uint `json:"realm_id"` ReplyTo *Post `json:"reply_to" gorm:"foreignKey:ReplyID"` RepostTo *Post `json:"repost_to" gorm:"foreignKey:RepostID"` Realm *Realm `json:"realm"` IsDraft bool `json:"is_draft"` PublishedAt *time.Time `json:"published_at"` AuthorID uint `json:"author_id"` Author Account `json:"author"` // Dynamic Calculated Values ReplyCount int64 `json:"reply_count"` ReactionCount int64 `json:"reaction_count"` ReactionList map[string]int64 `json:"reaction_list" gorm:"-"` }