mirror of https://github.com/synctv-org/synctv
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.2 KiB
Go
43 lines
1.2 KiB
Go
package model
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/google/uuid"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
type Movie struct {
|
|
ID string `gorm:"primaryKey;type:varchar(36)" json:"id"`
|
|
CreatedAt time.Time `json:"-"`
|
|
UpdatedAt time.Time `json:"-"`
|
|
Position uint `gorm:"not null" json:"-"`
|
|
RoomID string `gorm:"not null;index" json:"-"`
|
|
CreatorID string `gorm:"not null;index" json:"creatorId"`
|
|
Base BaseMovie `gorm:"embedded;embeddedPrefix:base_" json:"base"`
|
|
}
|
|
|
|
func (m *Movie) BeforeCreate(tx *gorm.DB) error {
|
|
if m.ID == "" {
|
|
m.ID = uuid.NewString()
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type BaseMovie struct {
|
|
Url string `json:"url"`
|
|
Name string `gorm:"not null" json:"name"`
|
|
Live bool `json:"live"`
|
|
Proxy bool `json:"proxy"`
|
|
RtmpSource bool `json:"rtmpSource"`
|
|
Type string `json:"type"`
|
|
Headers map[string]string `gorm:"serializer:fastjson" json:"headers"`
|
|
VendorInfo `gorm:"embedded;embeddedPrefix:vendor_info_" json:"vendorInfo"`
|
|
}
|
|
|
|
type VendorInfo struct {
|
|
Vendor StreamingVendor `json:"vendor"`
|
|
Shared bool `gorm:"not null;default:false" json:"shared"`
|
|
Info map[string]any `gorm:"serializer:fastjson" json:"info"`
|
|
}
|