2018-10-16 17:16:58 +00:00
|
|
|
package eraser
|
2018-11-15 05:34:24 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/xml"
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"log"
|
|
|
|
"net/http"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
|
|
|
|
"git.linuxrocker.com/mattburchett/Housekeeper/pkg/config"
|
|
|
|
"git.linuxrocker.com/mattburchett/Housekeeper/pkg/model"
|
|
|
|
)
|
|
|
|
|
2018-11-20 19:50:47 +00:00
|
|
|
// LookupMovieFileLocation will gather a list of Information based on IDs returned by locator.GetTitles
|
|
|
|
func LookupMovieFileLocation(config config.Config, ids []int) []string {
|
2018-11-15 05:34:24 +00:00
|
|
|
fileList := make([]string, 0)
|
|
|
|
|
|
|
|
for _, i := range ids {
|
|
|
|
plexURL := fmt.Sprintf("%s:%d%s%d%s%s", config.PlexHost, config.PlexPort, "/library/metadata/", i, "/?X-Plex-Token=", config.PlexToken)
|
|
|
|
|
|
|
|
req, err := http.NewRequest(http.MethodGet, plexURL, nil)
|
|
|
|
|
|
|
|
httpClient := http.Client{}
|
|
|
|
req.Header.Set("User-Agent", "Housekeeper")
|
|
|
|
|
|
|
|
res, getErr := httpClient.Do(req)
|
|
|
|
if getErr != nil {
|
|
|
|
log.Fatal(getErr)
|
|
|
|
}
|
|
|
|
|
|
|
|
body, readErr := ioutil.ReadAll(res.Body)
|
|
|
|
if readErr != nil {
|
|
|
|
log.Fatal(readErr)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
2018-11-20 19:50:47 +00:00
|
|
|
plexModel := model.XMLPlexMovieAPI{}
|
2018-11-15 05:34:24 +00:00
|
|
|
xml.Unmarshal(body, &plexModel)
|
|
|
|
fileList = append(fileList, filepath.Dir(plexModel.Video.Media.Part.File))
|
|
|
|
}
|
|
|
|
return fileList
|
|
|
|
}
|
|
|
|
|
2018-11-20 19:50:47 +00:00
|
|
|
// LookupTVFileLocation will gather a list of Information based on IDs returned by locator.GetTitles
|
|
|
|
func LookupTVFileLocation(config config.Config, ids []int) []string {
|
|
|
|
fileList := make([]string, 0)
|
2018-11-20 20:14:40 +00:00
|
|
|
results := make([]string, 0)
|
2018-11-20 19:50:47 +00:00
|
|
|
|
|
|
|
for _, i := range ids {
|
2018-11-20 19:51:47 +00:00
|
|
|
plexURL := fmt.Sprintf("%s:%d%s%d%s%s", config.PlexHost, config.PlexPort, "/library/metadata/", i, "/allLeaves/?X-Plex-Token=", config.PlexToken)
|
2018-11-20 19:50:47 +00:00
|
|
|
|
|
|
|
req, err := http.NewRequest(http.MethodGet, plexURL, nil)
|
|
|
|
|
|
|
|
httpClient := http.Client{}
|
|
|
|
req.Header.Set("User-Agent", "Housekeeper")
|
|
|
|
|
|
|
|
res, getErr := httpClient.Do(req)
|
|
|
|
if getErr != nil {
|
|
|
|
log.Fatal(getErr)
|
|
|
|
}
|
|
|
|
|
|
|
|
body, readErr := ioutil.ReadAll(res.Body)
|
|
|
|
if readErr != nil {
|
|
|
|
log.Fatal(readErr)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
plexModel := model.XMLPlexTVAPI{}
|
|
|
|
xml.Unmarshal(body, &plexModel)
|
|
|
|
|
|
|
|
plexTV := plexModel.Video
|
|
|
|
|
|
|
|
for _, i := range plexTV {
|
2018-11-20 20:14:40 +00:00
|
|
|
fileList = append(fileList, filepath.Dir(filepath.Dir(i.Media.Part.File)))
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, v := range fileList {
|
2018-11-20 20:16:38 +00:00
|
|
|
bool := isValueInList(v, fileList)
|
|
|
|
if !bool {
|
2018-11-20 20:14:40 +00:00
|
|
|
results = append(results, v)
|
2018-11-20 20:05:51 +00:00
|
|
|
}
|
2018-11-20 19:50:47 +00:00
|
|
|
}
|
|
|
|
}
|
2018-11-20 20:14:40 +00:00
|
|
|
return results
|
|
|
|
}
|
|
|
|
|
|
|
|
func isValueInList(value string, list []string) bool {
|
|
|
|
for _, v := range list {
|
|
|
|
if v == value {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
2018-11-20 19:50:47 +00:00
|
|
|
}
|
|
|
|
|
2018-11-20 19:39:15 +00:00
|
|
|
// DeleteMovies will actually perform the deletion.
|
|
|
|
func DeleteMovies(delete bool, files []string) error {
|
2018-11-15 05:34:24 +00:00
|
|
|
var err error
|
|
|
|
if delete {
|
|
|
|
for _, i := range files {
|
|
|
|
fmt.Printf("Removing %v\n", i)
|
|
|
|
err = os.RemoveAll(i)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|