feat: migrate playback domain to modular architecture
This commit is contained in:
@@ -10,9 +10,28 @@ type PlaybackService interface {
|
||||
SaveProgress(ctx context.Context, userID string, animeID int64, episode int, timeSeconds float64) error
|
||||
}
|
||||
|
||||
type ProviderStream struct {
|
||||
Name string `json:"name"`
|
||||
URL string `json:"url"`
|
||||
Quality string `json:"quality"`
|
||||
MalID int `json:"mal_id"`
|
||||
IsCurrent bool `json:"is_current"`
|
||||
}
|
||||
|
||||
type ProviderData struct {
|
||||
Streams []ProviderStream `json:"streams"`
|
||||
}
|
||||
|
||||
type EpisodeData struct {
|
||||
MalID int `json:"mal_id"`
|
||||
Title string `json:"title"`
|
||||
IsFiller bool `json:"is_filler"`
|
||||
IsRecap bool `json:"is_recap"`
|
||||
}
|
||||
|
||||
type PlaybackRepository interface {
|
||||
GetWatchListEntry(ctx context.Context, params db.GetWatchListEntryParams) (db.WatchListEntry, error)
|
||||
GetContinueWatchingEntry(ctx context.Context, params db.GetContinueWatchingEntryParams) (db.GetContinueWatchingEntryRow, error)
|
||||
GetContinueWatchingEntry(ctx context.Context, params db.GetContinueWatchingEntryParams) (db.ContinueWatchingEntry, error)
|
||||
SaveWatchProgress(ctx context.Context, params db.SaveWatchProgressParams) error
|
||||
UpsertContinueWatchingEntry(ctx context.Context, params db.UpsertContinueWatchingEntryParams) (db.ContinueWatchingEntry, error)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user