Housekeeper/pkg/locator/locator.go

155 lines
3.6 KiB
Go
Raw Normal View History

2018-10-16 17:16:58 +00:00
package locator
2018-11-14 03:51:03 +00:00
import (
"encoding/json"
2018-11-14 23:37:57 +00:00
"encoding/xml"
2018-11-14 03:51:03 +00:00
"fmt"
"io/ioutil"
"log"
"net/http"
2018-11-14 23:37:57 +00:00
"sort"
2018-11-14 21:43:38 +00:00
"strconv"
2018-11-14 23:37:57 +00:00
"strings"
2018-11-14 03:51:03 +00:00
"git.linuxrocker.com/mattburchett/Housekeeper/pkg/config"
"git.linuxrocker.com/mattburchett/Housekeeper/pkg/model"
2018-11-14 21:43:38 +00:00
"git.linuxrocker.com/mattburchett/Housekeeper/pkg/util"
2018-11-14 03:51:03 +00:00
)
func GetCount(config config.Config, sectionID int) int {
countURL := fmt.Sprintf("%s%s%s%s%s%d", config.BaseURL, config.PlexPyContext, "/api/v2?apikey=", config.PlexPyAPIKey, "&cmd=get_library&section_id=", sectionID)
req, err := http.NewRequest(http.MethodGet, countURL, nil)
if err != nil {
log.Fatal(err)
}
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)
}
countModel := model.PlexPyLibraryInfo{}
jsonErr := json.Unmarshal(body, &countModel)
if jsonErr != nil {
log.Fatal(jsonErr)
}
count := countModel.Response.Data.Count
return count
}
2018-11-14 21:43:38 +00:00
// GetTitles will gather a list of information from the media in the library, based on the previous count.
2018-11-14 23:37:57 +00:00
func GetTitles(config config.Config, sectionID int, days int) {
2018-11-14 21:43:38 +00:00
count := GetCount(config, sectionID)
titlesURL := fmt.Sprintf("%s%s%s%s%s%d%s%d", config.BaseURL, config.PlexPyContext, "/api/v2?apikey=", config.PlexPyAPIKey, "&cmd=get_library_media_info&section_id=", sectionID, "&order_column=last_played&refresh=true&order_dir=asc&length=", count)
req, err := http.NewRequest(http.MethodGet, titlesURL, nil)
if err != nil {
log.Fatal(err)
}
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)
}
titleModel := model.PlexPyMediaInfo{}
jsonErr := json.Unmarshal(body, &titleModel)
if jsonErr != nil {
log.Fatal(jsonErr)
}
data := titleModel.Response.Data.Data
2018-11-14 23:37:57 +00:00
titles := make([]string, 0)
ids := make([]int, 0)
2018-11-14 21:43:38 +00:00
epoch := util.SubtractedEpoch(days)
for _, i := range data {
if i.LastPlayed < epoch {
2018-11-14 23:37:57 +00:00
titles = append(titles, i.Title)
strirk, err := strconv.Atoi(i.RatingKey)
if err != nil {
log.Fatal(err)
}
ids = append(ids, strirk)
2018-11-14 21:43:38 +00:00
}
if i.LastPlayed < 0 {
stri, err := strconv.Atoi(i.AddedAt)
if err != nil {
log.Fatal(err)
}
if int64(stri) < epoch {
2018-11-14 23:37:57 +00:00
titles = append(titles, i.Title)
strirk, err := strconv.Atoi(i.RatingKey)
if err != nil {
log.Fatal(err)
}
ids = append(ids, strirk)
2018-11-14 21:43:38 +00:00
}
}
}
2018-11-14 23:37:57 +00:00
sort.Strings(titles)
LookupFileLocation(config, ids)
return
}
func LookupFileLocation(config config.Config, ids []int) {
// fileLocations := 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)
if err != nil {
log.Fatal(err)
}
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.XMLPlexAPI{}
xml.Unmarshal(body, &plexModel)
fileList := strings.Split(plexModel.Video.Media.Part.File, "/")
fmt.Printf("/%v/%v/%v/%v/%v\n", fileList[1], fileList[2], fileList[3], fileList[4], fileList[5])
}
2018-11-14 21:43:38 +00:00
2018-11-14 23:37:57 +00:00
// http://172.19.0.105:32400/library/metadata/9/?X-Plex-Token=K1WCALqRK5HVzSQ1J3bM
2018-11-14 03:51:03 +00:00
}