25 lines
797 B
Plaintext
25 lines
797 B
Plaintext
import "pkg:/source/api/Image.brs"
|
|
import "pkg:/source/api/baserequest.brs"
|
|
import "pkg:/source/utils/config.brs"
|
|
|
|
sub setFields()
|
|
json = m.top.json
|
|
m.top.id = json.id
|
|
m.top.title = json.name
|
|
m.top.live = true
|
|
m.top.Type = "TvChannel"
|
|
setPoster()
|
|
end sub
|
|
|
|
sub setPoster()
|
|
if m.top.image <> invalid
|
|
m.top.posterURL = m.top.image.url
|
|
else if m.top.json.ImageTags <> invalid and m.top.json.ImageTags.Primary <> invalid
|
|
imgParams = { "maxHeight": 60, "Tag": m.top.json.ImageTags.Primary }
|
|
m.top.hdsmalliconurl = ImageURL(m.top.json.id, "Primary", imgParams)
|
|
|
|
imgParams = { "maxHeight": 440, "maxWidth": 295, "Tag": m.top.json.ImageTags.Primary }
|
|
m.top.posterURL = ImageURL(m.top.json.id, "Primary", imgParams)
|
|
end if
|
|
end sub
|