52 lines
1.4 KiB
Go
52 lines
1.4 KiB
Go
package arr
|
|
|
|
import "os"
|
|
|
|
type Movie struct {
|
|
Title string `json:"title"`
|
|
OriginalTitle string `json:"originalTitle"`
|
|
Path string `json:"path"`
|
|
MovieFile struct {
|
|
MovieId int `json:"movieId"`
|
|
RelativePath string `json:"relativePath"`
|
|
Path string `json:"path"`
|
|
Id int `json:"id"`
|
|
Size int64 `json:"size"`
|
|
} `json:"movieFile"`
|
|
Id int `json:"id"`
|
|
}
|
|
|
|
type ContentFile struct {
|
|
Name string `json:"name"`
|
|
Path string `json:"path"`
|
|
Id int `json:"id"`
|
|
EpisodeId int `json:"showId"`
|
|
FileId int `json:"fileId"`
|
|
TargetPath string `json:"targetPath"`
|
|
IsSymlink bool `json:"isSymlink"`
|
|
IsBroken bool `json:"isBroken"`
|
|
SeasonNumber int `json:"seasonNumber"`
|
|
Processed bool `json:"processed"`
|
|
Size int64 `json:"size"`
|
|
}
|
|
|
|
func (file *ContentFile) Delete() {
|
|
// This is useful for when sonarr bulk delete fails(this usually happens)
|
|
// and we need to delete the file manually
|
|
_ = os.Remove(file.Path) // nolint:errcheck
|
|
}
|
|
|
|
type Content struct {
|
|
Title string `json:"title"`
|
|
Id int `json:"id"`
|
|
Files []ContentFile `json:"files"`
|
|
}
|
|
|
|
type seriesFile struct {
|
|
SeriesId int `json:"seriesId"`
|
|
SeasonNumber int `json:"seasonNumber"`
|
|
Path string `json:"path"`
|
|
Id int `json:"id"`
|
|
Size int64 `json:"size"`
|
|
}
|