* Change of sqlstore to use sqlx * Use sqlx in the playlist store * Refectory of the interface * update playlist service * go mod tidy * some refectory on interface * fix kyle
95 lines
2.1 KiB
Go
95 lines
2.1 KiB
Go
package playlist
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
// Typed errors
|
|
var (
|
|
ErrPlaylistNotFound = errors.New("Playlist not found")
|
|
ErrPlaylistFailedGenerateUniqueUid = errors.New("failed to generate unique playlist UID")
|
|
ErrCommandValidationFailed = errors.New("command missing required fields")
|
|
)
|
|
|
|
// Playlist model
|
|
type Playlist struct {
|
|
Id int64 `json:"id,omitempty" db:"id"`
|
|
UID string `json:"uid" xorm:"uid" db:"uid"`
|
|
Name string `json:"name" db:"name"`
|
|
Interval string `json:"interval" db:"interval"`
|
|
OrgId int64 `json:"-" db:"org_id"`
|
|
}
|
|
|
|
type PlaylistDTO struct {
|
|
Id int64 `json:"id"`
|
|
UID string `json:"uid"`
|
|
Name string `json:"name"`
|
|
Interval string `json:"interval"`
|
|
OrgId int64 `json:"-"`
|
|
Items []PlaylistItemDTO `json:"items"`
|
|
}
|
|
|
|
type PlaylistItemDTO struct {
|
|
Id int64 `json:"id"`
|
|
PlaylistId int64 `json:"playlistid"`
|
|
Type string `json:"type"`
|
|
Title string `json:"title"`
|
|
Value string `json:"value"`
|
|
Order int `json:"order"`
|
|
}
|
|
|
|
type PlaylistItem struct {
|
|
Id int64 `db:"id"`
|
|
PlaylistId int64 `db:"playlist_id"`
|
|
Type string `db:"type"`
|
|
Value string `db:"value"`
|
|
Order int `db:"order"`
|
|
Title string `db:"title"`
|
|
}
|
|
|
|
type Playlists []*Playlist
|
|
|
|
//
|
|
// COMMANDS
|
|
//
|
|
|
|
type UpdatePlaylistCommand struct {
|
|
OrgId int64 `json:"-"`
|
|
UID string `json:"uid"`
|
|
Name string `json:"name" binding:"Required"`
|
|
Interval string `json:"interval"`
|
|
Items []PlaylistItemDTO `json:"items"`
|
|
}
|
|
|
|
type CreatePlaylistCommand struct {
|
|
Name string `json:"name" binding:"Required"`
|
|
Interval string `json:"interval"`
|
|
Items []PlaylistItemDTO `json:"items"`
|
|
OrgId int64 `json:"-"`
|
|
}
|
|
|
|
type DeletePlaylistCommand struct {
|
|
UID string
|
|
OrgId int64
|
|
}
|
|
|
|
//
|
|
// QUERIES
|
|
//
|
|
|
|
type GetPlaylistsQuery struct {
|
|
Name string
|
|
Limit int
|
|
OrgId int64
|
|
}
|
|
|
|
type GetPlaylistByUidQuery struct {
|
|
UID string
|
|
OrgId int64
|
|
}
|
|
|
|
type GetPlaylistItemsByUidQuery struct {
|
|
PlaylistUID string
|
|
OrgId int64
|
|
}
|