56 lines
1.7 KiB
Plaintext
56 lines
1.7 KiB
Plaintext
function ItemImages(id = "" as string, played = false, playedPercent = invalid)
|
|
' This seems to cause crazy core dumps
|
|
' if there is a conflict between on disk images, and library.db
|
|
resp = APIRequest(Substitute("Items/{0}/Images", id))
|
|
data = getJson(resp)
|
|
if data = invalid then return invalid
|
|
|
|
results = []
|
|
for each item in data
|
|
tmp = CreateObject("roSGNode", "ImageData")
|
|
tmp.json = item
|
|
params = { "maxHeight": "384", "maxWidth": "196", "quality": "90" }
|
|
if played = true then
|
|
param = { "AddPlayedIndicator": "true" }
|
|
params.Append(param)
|
|
end if
|
|
if playedPercent <> invalid then
|
|
param = { "PercentPlayed": playedPercent }
|
|
params.Append(param)
|
|
end if
|
|
tmp.url = ImageURL(id, tmp.imagetype, params)
|
|
results.push(tmp)
|
|
end for
|
|
return results
|
|
end function
|
|
|
|
|
|
function PosterImage(id, played = false, playedPercent = invalid)
|
|
images = ItemImages(id, played, playedPercent)
|
|
if images = invalid then return invalid
|
|
primary_image = invalid
|
|
|
|
for each image in images
|
|
if image.imagetype = "Primary"
|
|
primary_image = image
|
|
else if image.imagetype = "Logo" and primary_image = invalid
|
|
primary_image = image
|
|
else if image.imagetype = "Thumb" and primary_image = invalid
|
|
primary_image = image
|
|
' maybe find more fallback images
|
|
end if
|
|
end for
|
|
|
|
return primary_image
|
|
end function
|
|
|
|
|
|
function ImageURL(id, version = "Primary", params = {})
|
|
if params.count() = 0
|
|
params = { "maxHeight": "384", "maxWidth": "196", "quality": "90" }
|
|
end if
|
|
url = Substitute("Items/{0}/Images/{1}", id, version)
|
|
' ?maxHeight=384&maxWidth=256&tag=<tag>&quality=90"
|
|
return buildURL(url, params)
|
|
end function
|