mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-13 02:37:18 +03:00
40 lines
1.7 KiB
Go
40 lines
1.7 KiB
Go
package model
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Share struct {
|
|
ID string `structs:"id" json:"id,omitempty" orm:"column(id)"`
|
|
UserID string `structs:"user_id" json:"userId,omitempty" orm:"column(user_id)"`
|
|
Username string `structs:"-" json:"username,omitempty" orm:"-"`
|
|
Description string `structs:"description" json:"description,omitempty"`
|
|
ExpiresAt time.Time `structs:"expires_at" json:"expiresAt,omitempty"`
|
|
LastVisitedAt time.Time `structs:"last_visited_at" json:"lastVisitedAt,omitempty"`
|
|
ResourceIDs string `structs:"resource_ids" json:"resourceIds,omitempty" orm:"column(resource_ids)"`
|
|
ResourceType string `structs:"resource_type" json:"resourceType,omitempty"`
|
|
Contents string `structs:"contents" json:"contents,omitempty"`
|
|
Format string `structs:"format" json:"format,omitempty"`
|
|
MaxBitRate int `structs:"max_bit_rate" json:"maxBitRate,omitempty"`
|
|
VisitCount int `structs:"visit_count" json:"visitCount,omitempty"`
|
|
CreatedAt time.Time `structs:"created_at" json:"createdAt,omitempty"`
|
|
UpdatedAt time.Time `structs:"updated_at" json:"updatedAt,omitempty"`
|
|
Tracks []ShareTrack `structs:"-" json:"tracks,omitempty"`
|
|
}
|
|
|
|
type ShareTrack struct {
|
|
ID string `json:"id,omitempty"`
|
|
Title string `json:"title,omitempty"`
|
|
Artist string `json:"artist,omitempty"`
|
|
Album string `json:"album,omitempty"`
|
|
UpdatedAt time.Time `json:"updatedAt"`
|
|
Duration float32 `json:"duration,omitempty"`
|
|
}
|
|
|
|
type Shares []Share
|
|
|
|
type ShareRepository interface {
|
|
Exists(id string) (bool, error)
|
|
GetAll(options ...QueryOptions) (Shares, error)
|
|
}
|