mirror of
https://github.com/idanoo/autobrr
synced 2025-07-22 16:29:12 +00:00
60 lines
1.6 KiB
Go
60 lines
1.6 KiB
Go
// Copyright (c) 2021-2025, Ludvig Lundgren and the autobrr contributors.
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
package arr
|
|
|
|
type Tag struct {
|
|
ID int
|
|
Label string
|
|
}
|
|
|
|
type Link struct {
|
|
URL string `json:"url"`
|
|
Name string `json:"name"`
|
|
}
|
|
|
|
type Image struct {
|
|
CoverType string `json:"coverType"`
|
|
URL string `json:"url"`
|
|
RemoteURL string `json:"remoteUrl,omitempty"`
|
|
Extension string `json:"extension,omitempty"`
|
|
}
|
|
|
|
type Ratings struct {
|
|
Votes int64 `json:"votes"`
|
|
Value float64 `json:"value"`
|
|
Popularity float64 `json:"popularity,omitempty"`
|
|
}
|
|
|
|
type Value struct {
|
|
ID int64 `json:"id"`
|
|
Name string `json:"name"`
|
|
}
|
|
|
|
// BaseQuality is a base quality profile.
|
|
type BaseQuality struct {
|
|
ID int64 `json:"id"`
|
|
Name string `json:"name"`
|
|
Source string `json:"source,omitempty"`
|
|
Resolution int `json:"resolution,omitempty"`
|
|
Modifier string `json:"modifier,omitempty"`
|
|
}
|
|
|
|
// Quality is a download quality profile attached to a movie, book, track or series.
|
|
// It may contain 1 or more profiles.
|
|
// Sonarr nor Readarr use Name or ID in this struct.
|
|
type Quality struct {
|
|
Name string `json:"name,omitempty"`
|
|
ID int `json:"id,omitempty"`
|
|
Quality *BaseQuality `json:"quality,omitempty"`
|
|
Items []*Quality `json:"items,omitempty"`
|
|
Allowed bool `json:"allowed"`
|
|
Revision *QualityRevision `json:"revision,omitempty"` // Not sure which app had this....
|
|
}
|
|
|
|
// QualityRevision is probably used in Sonarr.
|
|
type QualityRevision struct {
|
|
Version int64 `json:"version"`
|
|
Real int64 `json:"real"`
|
|
IsRepack bool `json:"isRepack,omitempty"`
|
|
}
|