2014-03-10 05:18:05 +00:00
|
|
|
# Author: Nic Wolfe <nic@wolfeden.ca>
|
|
|
|
# URL: http://code.google.com/p/sickbeard/
|
|
|
|
#
|
2014-11-12 16:43:14 +00:00
|
|
|
# This file is part of SickGear.
|
2014-03-10 05:18:05 +00:00
|
|
|
#
|
2014-11-12 16:43:14 +00:00
|
|
|
# SickGear is free software: you can redistribute it and/or modify
|
2014-03-10 05:18:05 +00:00
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
2014-11-12 16:43:14 +00:00
|
|
|
# SickGear is distributed in the hope that it will be useful,
|
2014-03-10 05:18:05 +00:00
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
2014-11-12 16:43:14 +00:00
|
|
|
# along with SickGear. If not, see <http://www.gnu.org/licenses/>.
|
2014-03-10 05:18:05 +00:00
|
|
|
|
|
|
|
from __future__ import with_statement
|
|
|
|
|
|
|
|
import os.path
|
|
|
|
|
2016-02-07 17:57:48 +00:00
|
|
|
try:
|
2016-04-11 22:55:05 +00:00
|
|
|
from lxml import etree
|
2016-02-07 17:57:48 +00:00
|
|
|
except ImportError:
|
|
|
|
try:
|
|
|
|
import xml.etree.cElementTree as etree
|
|
|
|
except ImportError:
|
|
|
|
import xml.etree.ElementTree as etree
|
2014-03-10 05:18:05 +00:00
|
|
|
|
|
|
|
import re
|
|
|
|
|
|
|
|
import sickbeard
|
|
|
|
|
2016-04-11 22:55:05 +00:00
|
|
|
from sickbeard import helpers
|
2014-03-10 05:18:05 +00:00
|
|
|
from sickbeard.metadata import helpers as metadata_helpers
|
|
|
|
from sickbeard import logger
|
|
|
|
from sickbeard import encodingKludge as ek
|
|
|
|
from sickbeard.exceptions import ex
|
Add fanart to Episodes View, Display Show, Edit Show, and Media Renamer page.
Add "Maximum fanart image files per show to cache" to config General/Interface.
Add populate images when the daily show updater is run with a default maximum 3 images per show.
Change force full update in a show will replace existing images with new.
Add fanart livepanel to lower right of Episodes View and Display Show page.
Add highlight panel red until button is clicked a few times.
Add flick through multiple background images on Episodes View and Display Show page.
Add persistent move poster image to right hand side or hide on Display Show page (multi-click the eye).
Add persistent translucency of background images on Episodes View and Display Show page.
Add persistent fanart rating to avoid art completely, random display, random from a group, or display fave always.
Add persistent views of the show detail on Display Show page.
Add persistent views on Episodes View.
Add persistent button to collapse and expand card images on Episode View/Layout daybyday.
Add non persistent "Open gear" and "Full fanart" image views to Episodes View and Display Show page.
Add "smart" selection of fanart image to display on Episode view.
Change insert [!] and change text shade of ended shows in drop down show list on Display Show page.
Change button graphic for next and previous show of show list on Display Show page.
Add logic to hide some livepanel buttons until artwork becomes available or in other circumstances.
Add "(Ended)" where appropriate to show title on Display Show page.
Add links to fanart.tv where appropriate on Display Show page.
Change use tense for label "Airs" or "Aired" depending on if show ended.
Change display "No files" instead of "0 files" and "Upgrade once" instead of "End upgrade on first match".
Add persistent button to newest season to "Show all" episodes.
Add persistent button to all shown seasons to "Hide most" episodes.
Add button to older seasons to toggle "Show Season n" or "Show Specials" with "Hide..." episodes.
Add season level status counts next to each season header on display show page
Add sorting to season table headers on display show page
Add filename and size to quality badge on display show page, removed its redundant "downloaded" text
Remove redundant "Add show" buttons
Change combine the NFO and TBN columns into a single Meta column
Change reduce screen estate used by episode numbers columns
Change improve clarity of text on Add Show page.
Add "Reset fanart ratings" to show Edit/Other tab.
Add fanart usage to show Edit/Other tab.
Add fanart keys guide to show Edit/Other tab.
Change add placeholder tip to "Alternative release name(s)" on show Edit.
Change add placeholder tip to search box on shows Search.
Change hide Anime tips on show Edit when selecting its mutually exclusive options.
Change label "End upgrade on first match" to "Upgrade once" on show Edit.
Change improve performance rendering displayShow.
Add total episodes to start of show description (excludes specials if those are hidden).
Add "Add show" actions i.e. "Search", "Trakt cards", "IMDb cards", and "Anime" to Shows menu.
Add "Import (existing)" action to Tools menu.
Change SD quality from red to dark green, 2160p UHD 4K is red.
Change relocate the functions of Logs & Errors to the right side Tools menu -> View Log File.
Add warning indicator to the Tools menu in different colour depending on error count (green through red).
Change View Log error item output from reversed to natural order.
Change View Log add a typeface and some colour to improve readability.
Change View Log/Errors only display "Clear Errors" button when there are errors to clear.
Change improve performance of View Log File.
2016-02-28 23:43:40 +00:00
|
|
|
from sickbeard.indexers import indexer_config
|
2017-12-09 09:37:49 +00:00
|
|
|
from sickbeard.indexers.indexer_config import INDEXER_TVDB, INDEXER_TVDB_V1
|
Add fanart to Episodes View, Display Show, Edit Show, and Media Renamer page.
Add "Maximum fanart image files per show to cache" to config General/Interface.
Add populate images when the daily show updater is run with a default maximum 3 images per show.
Change force full update in a show will replace existing images with new.
Add fanart livepanel to lower right of Episodes View and Display Show page.
Add highlight panel red until button is clicked a few times.
Add flick through multiple background images on Episodes View and Display Show page.
Add persistent move poster image to right hand side or hide on Display Show page (multi-click the eye).
Add persistent translucency of background images on Episodes View and Display Show page.
Add persistent fanart rating to avoid art completely, random display, random from a group, or display fave always.
Add persistent views of the show detail on Display Show page.
Add persistent views on Episodes View.
Add persistent button to collapse and expand card images on Episode View/Layout daybyday.
Add non persistent "Open gear" and "Full fanart" image views to Episodes View and Display Show page.
Add "smart" selection of fanart image to display on Episode view.
Change insert [!] and change text shade of ended shows in drop down show list on Display Show page.
Change button graphic for next and previous show of show list on Display Show page.
Add logic to hide some livepanel buttons until artwork becomes available or in other circumstances.
Add "(Ended)" where appropriate to show title on Display Show page.
Add links to fanart.tv where appropriate on Display Show page.
Change use tense for label "Airs" or "Aired" depending on if show ended.
Change display "No files" instead of "0 files" and "Upgrade once" instead of "End upgrade on first match".
Add persistent button to newest season to "Show all" episodes.
Add persistent button to all shown seasons to "Hide most" episodes.
Add button to older seasons to toggle "Show Season n" or "Show Specials" with "Hide..." episodes.
Add season level status counts next to each season header on display show page
Add sorting to season table headers on display show page
Add filename and size to quality badge on display show page, removed its redundant "downloaded" text
Remove redundant "Add show" buttons
Change combine the NFO and TBN columns into a single Meta column
Change reduce screen estate used by episode numbers columns
Change improve clarity of text on Add Show page.
Add "Reset fanart ratings" to show Edit/Other tab.
Add fanart usage to show Edit/Other tab.
Add fanart keys guide to show Edit/Other tab.
Change add placeholder tip to "Alternative release name(s)" on show Edit.
Change add placeholder tip to search box on shows Search.
Change hide Anime tips on show Edit when selecting its mutually exclusive options.
Change label "End upgrade on first match" to "Upgrade once" on show Edit.
Change improve performance rendering displayShow.
Add total episodes to start of show description (excludes specials if those are hidden).
Add "Add show" actions i.e. "Search", "Trakt cards", "IMDb cards", and "Anime" to Shows menu.
Add "Import (existing)" action to Tools menu.
Change SD quality from red to dark green, 2160p UHD 4K is red.
Change relocate the functions of Logs & Errors to the right side Tools menu -> View Log File.
Add warning indicator to the Tools menu in different colour depending on error count (green through red).
Change View Log error item output from reversed to natural order.
Change View Log add a typeface and some colour to improve readability.
Change View Log/Errors only display "Clear Errors" button when there are errors to clear.
Change improve performance of View Log File.
2016-02-28 23:43:40 +00:00
|
|
|
|
2015-06-13 14:52:46 +00:00
|
|
|
from six import iteritems
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2014-03-13 12:20:45 +00:00
|
|
|
from lib.tmdb_api.tmdb_api import TMDB
|
Add fanart to Episodes View, Display Show, Edit Show, and Media Renamer page.
Add "Maximum fanart image files per show to cache" to config General/Interface.
Add populate images when the daily show updater is run with a default maximum 3 images per show.
Change force full update in a show will replace existing images with new.
Add fanart livepanel to lower right of Episodes View and Display Show page.
Add highlight panel red until button is clicked a few times.
Add flick through multiple background images on Episodes View and Display Show page.
Add persistent move poster image to right hand side or hide on Display Show page (multi-click the eye).
Add persistent translucency of background images on Episodes View and Display Show page.
Add persistent fanart rating to avoid art completely, random display, random from a group, or display fave always.
Add persistent views of the show detail on Display Show page.
Add persistent views on Episodes View.
Add persistent button to collapse and expand card images on Episode View/Layout daybyday.
Add non persistent "Open gear" and "Full fanart" image views to Episodes View and Display Show page.
Add "smart" selection of fanart image to display on Episode view.
Change insert [!] and change text shade of ended shows in drop down show list on Display Show page.
Change button graphic for next and previous show of show list on Display Show page.
Add logic to hide some livepanel buttons until artwork becomes available or in other circumstances.
Add "(Ended)" where appropriate to show title on Display Show page.
Add links to fanart.tv where appropriate on Display Show page.
Change use tense for label "Airs" or "Aired" depending on if show ended.
Change display "No files" instead of "0 files" and "Upgrade once" instead of "End upgrade on first match".
Add persistent button to newest season to "Show all" episodes.
Add persistent button to all shown seasons to "Hide most" episodes.
Add button to older seasons to toggle "Show Season n" or "Show Specials" with "Hide..." episodes.
Add season level status counts next to each season header on display show page
Add sorting to season table headers on display show page
Add filename and size to quality badge on display show page, removed its redundant "downloaded" text
Remove redundant "Add show" buttons
Change combine the NFO and TBN columns into a single Meta column
Change reduce screen estate used by episode numbers columns
Change improve clarity of text on Add Show page.
Add "Reset fanart ratings" to show Edit/Other tab.
Add fanart usage to show Edit/Other tab.
Add fanart keys guide to show Edit/Other tab.
Change add placeholder tip to "Alternative release name(s)" on show Edit.
Change add placeholder tip to search box on shows Search.
Change hide Anime tips on show Edit when selecting its mutually exclusive options.
Change label "End upgrade on first match" to "Upgrade once" on show Edit.
Change improve performance rendering displayShow.
Add total episodes to start of show description (excludes specials if those are hidden).
Add "Add show" actions i.e. "Search", "Trakt cards", "IMDb cards", and "Anime" to Shows menu.
Add "Import (existing)" action to Tools menu.
Change SD quality from red to dark green, 2160p UHD 4K is red.
Change relocate the functions of Logs & Errors to the right side Tools menu -> View Log File.
Add warning indicator to the Tools menu in different colour depending on error count (green through red).
Change View Log error item output from reversed to natural order.
Change View Log add a typeface and some colour to improve readability.
Change View Log/Errors only display "Clear Errors" button when there are errors to clear.
Change improve performance of View Log File.
2016-02-28 23:43:40 +00:00
|
|
|
from lib.fanart.core import Request as fanartRequest
|
|
|
|
import lib.fanart as fanart
|
2014-03-25 05:57:24 +00:00
|
|
|
|
2014-03-10 05:18:05 +00:00
|
|
|
|
|
|
|
class GenericMetadata():
|
|
|
|
"""
|
|
|
|
Base class for all metadata providers. Default behavior is meant to mostly
|
|
|
|
follow XBMC 12+ metadata standards. Has support for:
|
|
|
|
- show metadata file
|
|
|
|
- episode metadata file
|
|
|
|
- episode thumbnail
|
|
|
|
- show fanart
|
|
|
|
- show poster
|
|
|
|
- show banner
|
|
|
|
- season thumbnails (poster)
|
|
|
|
- season thumbnails (banner)
|
|
|
|
- season all poster
|
|
|
|
- season all banner
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self,
|
|
|
|
show_metadata=False,
|
|
|
|
episode_metadata=False,
|
|
|
|
fanart=False,
|
|
|
|
poster=False,
|
|
|
|
banner=False,
|
|
|
|
episode_thumbnails=False,
|
|
|
|
season_posters=False,
|
|
|
|
season_banners=False,
|
|
|
|
season_all_poster=False,
|
|
|
|
season_all_banner=False):
|
|
|
|
|
|
|
|
self.name = "Generic"
|
|
|
|
|
|
|
|
self._ep_nfo_extension = "nfo"
|
|
|
|
self._show_metadata_filename = "tvshow.nfo"
|
|
|
|
|
|
|
|
self.fanart_name = "fanart.jpg"
|
|
|
|
self.poster_name = "poster.jpg"
|
|
|
|
self.banner_name = "banner.jpg"
|
|
|
|
|
|
|
|
self.season_all_poster_name = "season-all-poster.jpg"
|
|
|
|
self.season_all_banner_name = "season-all-banner.jpg"
|
|
|
|
|
|
|
|
self.show_metadata = show_metadata
|
|
|
|
self.episode_metadata = episode_metadata
|
|
|
|
self.fanart = fanart
|
|
|
|
self.poster = poster
|
|
|
|
self.banner = banner
|
|
|
|
self.episode_thumbnails = episode_thumbnails
|
|
|
|
self.season_posters = season_posters
|
|
|
|
self.season_banners = season_banners
|
|
|
|
self.season_all_poster = season_all_poster
|
|
|
|
self.season_all_banner = season_all_banner
|
|
|
|
|
|
|
|
def get_config(self):
|
2014-03-25 05:57:24 +00:00
|
|
|
config_list = [self.show_metadata, self.episode_metadata, self.fanart, self.poster, self.banner,
|
|
|
|
self.episode_thumbnails, self.season_posters, self.season_banners, self.season_all_poster,
|
|
|
|
self.season_all_banner]
|
2014-03-10 05:18:05 +00:00
|
|
|
return '|'.join([str(int(x)) for x in config_list])
|
|
|
|
|
|
|
|
def get_id(self):
|
|
|
|
return GenericMetadata.makeID(self.name)
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def makeID(name):
|
|
|
|
name_id = re.sub("[+]", "plus", name)
|
|
|
|
name_id = re.sub("[^\w\d_]", "_", name_id).lower()
|
|
|
|
return name_id
|
|
|
|
|
|
|
|
def set_config(self, string):
|
|
|
|
config_list = [bool(int(x)) for x in string.split('|')]
|
|
|
|
self.show_metadata = config_list[0]
|
|
|
|
self.episode_metadata = config_list[1]
|
|
|
|
self.fanart = config_list[2]
|
|
|
|
self.poster = config_list[3]
|
|
|
|
self.banner = config_list[4]
|
|
|
|
self.episode_thumbnails = config_list[5]
|
|
|
|
self.season_posters = config_list[6]
|
|
|
|
self.season_banners = config_list[7]
|
|
|
|
self.season_all_poster = config_list[8]
|
|
|
|
self.season_all_banner = config_list[9]
|
|
|
|
|
|
|
|
def _has_show_metadata(self, show_obj):
|
|
|
|
result = ek.ek(os.path.isfile, self.get_show_file_path(show_obj))
|
|
|
|
logger.log(u"Checking if " + self.get_show_file_path(show_obj) + " exists: " + str(result), logger.DEBUG)
|
|
|
|
return result
|
|
|
|
|
|
|
|
def _has_episode_metadata(self, ep_obj):
|
|
|
|
result = ek.ek(os.path.isfile, self.get_episode_file_path(ep_obj))
|
|
|
|
logger.log(u"Checking if " + self.get_episode_file_path(ep_obj) + " exists: " + str(result), logger.DEBUG)
|
|
|
|
return result
|
|
|
|
|
|
|
|
def _has_fanart(self, show_obj):
|
|
|
|
result = ek.ek(os.path.isfile, self.get_fanart_path(show_obj))
|
|
|
|
logger.log(u"Checking if " + self.get_fanart_path(show_obj) + " exists: " + str(result), logger.DEBUG)
|
|
|
|
return result
|
|
|
|
|
|
|
|
def _has_poster(self, show_obj):
|
|
|
|
result = ek.ek(os.path.isfile, self.get_poster_path(show_obj))
|
|
|
|
logger.log(u"Checking if " + self.get_poster_path(show_obj) + " exists: " + str(result), logger.DEBUG)
|
|
|
|
return result
|
|
|
|
|
|
|
|
def _has_banner(self, show_obj):
|
|
|
|
result = ek.ek(os.path.isfile, self.get_banner_path(show_obj))
|
|
|
|
logger.log(u"Checking if " + self.get_banner_path(show_obj) + " exists: " + str(result), logger.DEBUG)
|
|
|
|
return result
|
|
|
|
|
|
|
|
def _has_episode_thumb(self, ep_obj):
|
|
|
|
location = self.get_episode_thumb_path(ep_obj)
|
Add fanart to Episodes View, Display Show, Edit Show, and Media Renamer page.
Add "Maximum fanart image files per show to cache" to config General/Interface.
Add populate images when the daily show updater is run with a default maximum 3 images per show.
Change force full update in a show will replace existing images with new.
Add fanart livepanel to lower right of Episodes View and Display Show page.
Add highlight panel red until button is clicked a few times.
Add flick through multiple background images on Episodes View and Display Show page.
Add persistent move poster image to right hand side or hide on Display Show page (multi-click the eye).
Add persistent translucency of background images on Episodes View and Display Show page.
Add persistent fanart rating to avoid art completely, random display, random from a group, or display fave always.
Add persistent views of the show detail on Display Show page.
Add persistent views on Episodes View.
Add persistent button to collapse and expand card images on Episode View/Layout daybyday.
Add non persistent "Open gear" and "Full fanart" image views to Episodes View and Display Show page.
Add "smart" selection of fanart image to display on Episode view.
Change insert [!] and change text shade of ended shows in drop down show list on Display Show page.
Change button graphic for next and previous show of show list on Display Show page.
Add logic to hide some livepanel buttons until artwork becomes available or in other circumstances.
Add "(Ended)" where appropriate to show title on Display Show page.
Add links to fanart.tv where appropriate on Display Show page.
Change use tense for label "Airs" or "Aired" depending on if show ended.
Change display "No files" instead of "0 files" and "Upgrade once" instead of "End upgrade on first match".
Add persistent button to newest season to "Show all" episodes.
Add persistent button to all shown seasons to "Hide most" episodes.
Add button to older seasons to toggle "Show Season n" or "Show Specials" with "Hide..." episodes.
Add season level status counts next to each season header on display show page
Add sorting to season table headers on display show page
Add filename and size to quality badge on display show page, removed its redundant "downloaded" text
Remove redundant "Add show" buttons
Change combine the NFO and TBN columns into a single Meta column
Change reduce screen estate used by episode numbers columns
Change improve clarity of text on Add Show page.
Add "Reset fanart ratings" to show Edit/Other tab.
Add fanart usage to show Edit/Other tab.
Add fanart keys guide to show Edit/Other tab.
Change add placeholder tip to "Alternative release name(s)" on show Edit.
Change add placeholder tip to search box on shows Search.
Change hide Anime tips on show Edit when selecting its mutually exclusive options.
Change label "End upgrade on first match" to "Upgrade once" on show Edit.
Change improve performance rendering displayShow.
Add total episodes to start of show description (excludes specials if those are hidden).
Add "Add show" actions i.e. "Search", "Trakt cards", "IMDb cards", and "Anime" to Shows menu.
Add "Import (existing)" action to Tools menu.
Change SD quality from red to dark green, 2160p UHD 4K is red.
Change relocate the functions of Logs & Errors to the right side Tools menu -> View Log File.
Add warning indicator to the Tools menu in different colour depending on error count (green through red).
Change View Log error item output from reversed to natural order.
Change View Log add a typeface and some colour to improve readability.
Change View Log/Errors only display "Clear Errors" button when there are errors to clear.
Change improve performance of View Log File.
2016-02-28 23:43:40 +00:00
|
|
|
result = None is not location and ek.ek(os.path.isfile, location)
|
2014-03-10 05:18:05 +00:00
|
|
|
if location:
|
|
|
|
logger.log(u"Checking if " + location + " exists: " + str(result), logger.DEBUG)
|
|
|
|
return result
|
|
|
|
|
|
|
|
def _has_season_poster(self, show_obj, season):
|
|
|
|
location = self.get_season_poster_path(show_obj, season)
|
Add fanart to Episodes View, Display Show, Edit Show, and Media Renamer page.
Add "Maximum fanart image files per show to cache" to config General/Interface.
Add populate images when the daily show updater is run with a default maximum 3 images per show.
Change force full update in a show will replace existing images with new.
Add fanart livepanel to lower right of Episodes View and Display Show page.
Add highlight panel red until button is clicked a few times.
Add flick through multiple background images on Episodes View and Display Show page.
Add persistent move poster image to right hand side or hide on Display Show page (multi-click the eye).
Add persistent translucency of background images on Episodes View and Display Show page.
Add persistent fanart rating to avoid art completely, random display, random from a group, or display fave always.
Add persistent views of the show detail on Display Show page.
Add persistent views on Episodes View.
Add persistent button to collapse and expand card images on Episode View/Layout daybyday.
Add non persistent "Open gear" and "Full fanart" image views to Episodes View and Display Show page.
Add "smart" selection of fanart image to display on Episode view.
Change insert [!] and change text shade of ended shows in drop down show list on Display Show page.
Change button graphic for next and previous show of show list on Display Show page.
Add logic to hide some livepanel buttons until artwork becomes available or in other circumstances.
Add "(Ended)" where appropriate to show title on Display Show page.
Add links to fanart.tv where appropriate on Display Show page.
Change use tense for label "Airs" or "Aired" depending on if show ended.
Change display "No files" instead of "0 files" and "Upgrade once" instead of "End upgrade on first match".
Add persistent button to newest season to "Show all" episodes.
Add persistent button to all shown seasons to "Hide most" episodes.
Add button to older seasons to toggle "Show Season n" or "Show Specials" with "Hide..." episodes.
Add season level status counts next to each season header on display show page
Add sorting to season table headers on display show page
Add filename and size to quality badge on display show page, removed its redundant "downloaded" text
Remove redundant "Add show" buttons
Change combine the NFO and TBN columns into a single Meta column
Change reduce screen estate used by episode numbers columns
Change improve clarity of text on Add Show page.
Add "Reset fanart ratings" to show Edit/Other tab.
Add fanart usage to show Edit/Other tab.
Add fanart keys guide to show Edit/Other tab.
Change add placeholder tip to "Alternative release name(s)" on show Edit.
Change add placeholder tip to search box on shows Search.
Change hide Anime tips on show Edit when selecting its mutually exclusive options.
Change label "End upgrade on first match" to "Upgrade once" on show Edit.
Change improve performance rendering displayShow.
Add total episodes to start of show description (excludes specials if those are hidden).
Add "Add show" actions i.e. "Search", "Trakt cards", "IMDb cards", and "Anime" to Shows menu.
Add "Import (existing)" action to Tools menu.
Change SD quality from red to dark green, 2160p UHD 4K is red.
Change relocate the functions of Logs & Errors to the right side Tools menu -> View Log File.
Add warning indicator to the Tools menu in different colour depending on error count (green through red).
Change View Log error item output from reversed to natural order.
Change View Log add a typeface and some colour to improve readability.
Change View Log/Errors only display "Clear Errors" button when there are errors to clear.
Change improve performance of View Log File.
2016-02-28 23:43:40 +00:00
|
|
|
result = None is not location and ek.ek(os.path.isfile, location)
|
2014-03-10 05:18:05 +00:00
|
|
|
if location:
|
|
|
|
logger.log(u"Checking if " + location + " exists: " + str(result), logger.DEBUG)
|
|
|
|
return result
|
|
|
|
|
|
|
|
def _has_season_banner(self, show_obj, season):
|
|
|
|
location = self.get_season_banner_path(show_obj, season)
|
Add fanart to Episodes View, Display Show, Edit Show, and Media Renamer page.
Add "Maximum fanart image files per show to cache" to config General/Interface.
Add populate images when the daily show updater is run with a default maximum 3 images per show.
Change force full update in a show will replace existing images with new.
Add fanart livepanel to lower right of Episodes View and Display Show page.
Add highlight panel red until button is clicked a few times.
Add flick through multiple background images on Episodes View and Display Show page.
Add persistent move poster image to right hand side or hide on Display Show page (multi-click the eye).
Add persistent translucency of background images on Episodes View and Display Show page.
Add persistent fanart rating to avoid art completely, random display, random from a group, or display fave always.
Add persistent views of the show detail on Display Show page.
Add persistent views on Episodes View.
Add persistent button to collapse and expand card images on Episode View/Layout daybyday.
Add non persistent "Open gear" and "Full fanart" image views to Episodes View and Display Show page.
Add "smart" selection of fanart image to display on Episode view.
Change insert [!] and change text shade of ended shows in drop down show list on Display Show page.
Change button graphic for next and previous show of show list on Display Show page.
Add logic to hide some livepanel buttons until artwork becomes available or in other circumstances.
Add "(Ended)" where appropriate to show title on Display Show page.
Add links to fanart.tv where appropriate on Display Show page.
Change use tense for label "Airs" or "Aired" depending on if show ended.
Change display "No files" instead of "0 files" and "Upgrade once" instead of "End upgrade on first match".
Add persistent button to newest season to "Show all" episodes.
Add persistent button to all shown seasons to "Hide most" episodes.
Add button to older seasons to toggle "Show Season n" or "Show Specials" with "Hide..." episodes.
Add season level status counts next to each season header on display show page
Add sorting to season table headers on display show page
Add filename and size to quality badge on display show page, removed its redundant "downloaded" text
Remove redundant "Add show" buttons
Change combine the NFO and TBN columns into a single Meta column
Change reduce screen estate used by episode numbers columns
Change improve clarity of text on Add Show page.
Add "Reset fanart ratings" to show Edit/Other tab.
Add fanart usage to show Edit/Other tab.
Add fanart keys guide to show Edit/Other tab.
Change add placeholder tip to "Alternative release name(s)" on show Edit.
Change add placeholder tip to search box on shows Search.
Change hide Anime tips on show Edit when selecting its mutually exclusive options.
Change label "End upgrade on first match" to "Upgrade once" on show Edit.
Change improve performance rendering displayShow.
Add total episodes to start of show description (excludes specials if those are hidden).
Add "Add show" actions i.e. "Search", "Trakt cards", "IMDb cards", and "Anime" to Shows menu.
Add "Import (existing)" action to Tools menu.
Change SD quality from red to dark green, 2160p UHD 4K is red.
Change relocate the functions of Logs & Errors to the right side Tools menu -> View Log File.
Add warning indicator to the Tools menu in different colour depending on error count (green through red).
Change View Log error item output from reversed to natural order.
Change View Log add a typeface and some colour to improve readability.
Change View Log/Errors only display "Clear Errors" button when there are errors to clear.
Change improve performance of View Log File.
2016-02-28 23:43:40 +00:00
|
|
|
result = None is not location and ek.ek(os.path.isfile, location)
|
2014-03-10 05:18:05 +00:00
|
|
|
if location:
|
|
|
|
logger.log(u"Checking if " + location + " exists: " + str(result), logger.DEBUG)
|
|
|
|
return result
|
|
|
|
|
|
|
|
def _has_season_all_poster(self, show_obj):
|
|
|
|
result = ek.ek(os.path.isfile, self.get_season_all_poster_path(show_obj))
|
2014-03-25 05:57:24 +00:00
|
|
|
logger.log(u"Checking if " + self.get_season_all_poster_path(show_obj) + " exists: " + str(result),
|
|
|
|
logger.DEBUG)
|
2014-03-10 05:18:05 +00:00
|
|
|
return result
|
|
|
|
|
|
|
|
def _has_season_all_banner(self, show_obj):
|
|
|
|
result = ek.ek(os.path.isfile, self.get_season_all_banner_path(show_obj))
|
2014-03-25 05:57:24 +00:00
|
|
|
logger.log(u"Checking if " + self.get_season_all_banner_path(show_obj) + " exists: " + str(result),
|
|
|
|
logger.DEBUG)
|
2014-03-10 05:18:05 +00:00
|
|
|
return result
|
|
|
|
|
|
|
|
def get_show_file_path(self, show_obj):
|
|
|
|
return ek.ek(os.path.join, show_obj.location, self._show_metadata_filename)
|
|
|
|
|
|
|
|
def get_episode_file_path(self, ep_obj):
|
|
|
|
return helpers.replaceExtension(ep_obj.location, self._ep_nfo_extension)
|
|
|
|
|
|
|
|
def get_fanart_path(self, show_obj):
|
|
|
|
return ek.ek(os.path.join, show_obj.location, self.fanart_name)
|
|
|
|
|
|
|
|
def get_poster_path(self, show_obj):
|
|
|
|
return ek.ek(os.path.join, show_obj.location, self.poster_name)
|
|
|
|
|
|
|
|
def get_banner_path(self, show_obj):
|
|
|
|
return ek.ek(os.path.join, show_obj.location, self.banner_name)
|
|
|
|
|
|
|
|
def get_episode_thumb_path(self, ep_obj):
|
|
|
|
"""
|
|
|
|
Returns the path where the episode thumbnail should be stored.
|
|
|
|
ep_obj: a TVEpisode instance for which to create the thumbnail
|
|
|
|
"""
|
|
|
|
if ek.ek(os.path.isfile, ep_obj.location):
|
|
|
|
|
|
|
|
tbn_filename = ep_obj.location.rpartition(".")
|
|
|
|
|
|
|
|
if tbn_filename[0] == "":
|
|
|
|
tbn_filename = ep_obj.location + "-thumb.jpg"
|
|
|
|
else:
|
|
|
|
tbn_filename = tbn_filename[0] + "-thumb.jpg"
|
|
|
|
else:
|
|
|
|
return None
|
|
|
|
|
|
|
|
return tbn_filename
|
|
|
|
|
|
|
|
def get_season_poster_path(self, show_obj, season):
|
|
|
|
"""
|
|
|
|
Returns the full path to the file for a given season poster.
|
|
|
|
|
|
|
|
show_obj: a TVShow instance for which to generate the path
|
|
|
|
season: a season number to be used for the path. Note that season 0
|
|
|
|
means specials.
|
|
|
|
"""
|
|
|
|
|
|
|
|
# Our specials thumbnail is, well, special
|
|
|
|
if season == 0:
|
|
|
|
season_poster_filename = 'season-specials'
|
|
|
|
else:
|
|
|
|
season_poster_filename = 'season' + str(season).zfill(2)
|
|
|
|
|
|
|
|
return ek.ek(os.path.join, show_obj.location, season_poster_filename + '-poster.jpg')
|
|
|
|
|
|
|
|
def get_season_banner_path(self, show_obj, season):
|
|
|
|
"""
|
|
|
|
Returns the full path to the file for a given season banner.
|
|
|
|
|
|
|
|
show_obj: a TVShow instance for which to generate the path
|
|
|
|
season: a season number to be used for the path. Note that season 0
|
|
|
|
means specials.
|
|
|
|
"""
|
|
|
|
|
|
|
|
# Our specials thumbnail is, well, special
|
|
|
|
if season == 0:
|
|
|
|
season_banner_filename = 'season-specials'
|
|
|
|
else:
|
|
|
|
season_banner_filename = 'season' + str(season).zfill(2)
|
|
|
|
|
|
|
|
return ek.ek(os.path.join, show_obj.location, season_banner_filename + '-banner.jpg')
|
|
|
|
|
|
|
|
def get_season_all_poster_path(self, show_obj):
|
|
|
|
return ek.ek(os.path.join, show_obj.location, self.season_all_poster_name)
|
|
|
|
|
|
|
|
def get_season_all_banner_path(self, show_obj):
|
|
|
|
return ek.ek(os.path.join, show_obj.location, self.season_all_banner_name)
|
|
|
|
|
|
|
|
def _show_data(self, show_obj):
|
|
|
|
"""
|
|
|
|
This should be overridden by the implementing class. It should
|
|
|
|
provide the content of the show metadata file.
|
|
|
|
"""
|
|
|
|
return None
|
|
|
|
|
2018-04-07 19:49:12 +00:00
|
|
|
@staticmethod
|
|
|
|
def _valid_show(fetched_show_obj, show_obj):
|
|
|
|
"""
|
|
|
|
Test the integrity of fetched show data
|
|
|
|
|
|
|
|
:param fetched_show_obj: the object returned from the tvinfo source
|
|
|
|
:type fetched_show_obj: TVShow()
|
|
|
|
:param show_obj: Show that the fetched data relates to
|
|
|
|
:type show_obj: TVShow()
|
|
|
|
:return: True if fetched_show_obj is valid data otherwise False
|
|
|
|
:rtype: Boolean
|
|
|
|
"""
|
|
|
|
if not fetched_show_obj:
|
|
|
|
logger.log(u'Show %s not found on %s ' %
|
|
|
|
(show_obj.name, sickbeard.indexerApi(show_obj.indexer).name), logger.WARNING)
|
|
|
|
return False
|
|
|
|
return True
|
|
|
|
|
2014-03-10 05:18:05 +00:00
|
|
|
def _ep_data(self, ep_obj):
|
|
|
|
"""
|
|
|
|
This should be overridden by the implementing class. It should
|
|
|
|
provide the content of the episode metadata file.
|
|
|
|
"""
|
|
|
|
return None
|
|
|
|
|
2014-05-14 09:42:08 +00:00
|
|
|
def create_show_metadata(self, show_obj):
|
2018-05-14 00:03:33 +00:00
|
|
|
result = False
|
2014-05-14 09:42:08 +00:00
|
|
|
if self.show_metadata and show_obj and not self._has_show_metadata(show_obj):
|
2018-05-14 00:03:33 +00:00
|
|
|
logger.log('Metadata provider %s creating show metadata for %s' % (self.name, show_obj.name), logger.DEBUG)
|
|
|
|
try:
|
|
|
|
result = self.write_show_file(show_obj)
|
|
|
|
except sickbeard.indexer_error as e:
|
|
|
|
logger.log('Unable to find useful show metadata for %s on %s: %s' % (
|
|
|
|
self.name, sickbeard.indexerApi(show_obj.indexer).name, ex(e)), logger.WARNING)
|
|
|
|
|
|
|
|
return result
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2014-05-14 09:42:08 +00:00
|
|
|
def create_episode_metadata(self, ep_obj):
|
2018-05-14 00:03:33 +00:00
|
|
|
result = False
|
2014-05-14 09:42:08 +00:00
|
|
|
if self.episode_metadata and ep_obj and not self._has_episode_metadata(ep_obj):
|
2018-05-14 00:03:33 +00:00
|
|
|
logger.log('Metadata provider %s creating episode metadata for %s' % (self.name, ep_obj.prettyName()),
|
2014-03-25 05:57:24 +00:00
|
|
|
logger.DEBUG)
|
2018-05-14 00:03:33 +00:00
|
|
|
try:
|
|
|
|
result = self.write_ep_file(ep_obj)
|
|
|
|
except sickbeard.indexer_error as e:
|
|
|
|
logger.log('Unable to find useful episode metadata for %s on %s: %s' % (
|
|
|
|
self.name, sickbeard.indexerApi(ep_obj.show.indexer).name, ex(e)), logger.WARNING)
|
|
|
|
|
|
|
|
return result
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2014-05-14 09:42:08 +00:00
|
|
|
def update_show_indexer_metadata(self, show_obj):
|
|
|
|
if self.show_metadata and show_obj and self._has_show_metadata(show_obj):
|
2016-04-11 22:55:05 +00:00
|
|
|
logger.log(u'Metadata provider %s updating show indexer metadata file for %s' % (self.name, show_obj.name),
|
|
|
|
logger.DEBUG)
|
2014-05-14 09:42:08 +00:00
|
|
|
|
|
|
|
nfo_file_path = self.get_show_file_path(show_obj)
|
|
|
|
try:
|
|
|
|
with ek.ek(open, nfo_file_path, 'r') as xmlFileObj:
|
2016-04-11 22:55:05 +00:00
|
|
|
show_xml = etree.ElementTree(file=xmlFileObj)
|
2014-05-14 09:42:08 +00:00
|
|
|
|
2016-04-11 22:55:05 +00:00
|
|
|
indexer = show_xml.find('indexer')
|
|
|
|
indexerid = show_xml.find('id')
|
2014-05-14 09:42:08 +00:00
|
|
|
|
2016-04-11 22:55:05 +00:00
|
|
|
root = show_xml.getroot()
|
|
|
|
show_indexer = str(show_obj.indexer)
|
2016-03-30 14:49:22 +00:00
|
|
|
if None is not indexer:
|
2016-04-11 22:55:05 +00:00
|
|
|
indexer.text = show_indexer
|
2014-05-14 09:42:08 +00:00
|
|
|
else:
|
2016-04-11 22:55:05 +00:00
|
|
|
etree.SubElement(root, 'indexer').text = show_indexer
|
2014-05-14 09:42:08 +00:00
|
|
|
|
2016-04-11 22:55:05 +00:00
|
|
|
show_indexerid = str(show_obj.indexerid)
|
2016-03-30 14:49:22 +00:00
|
|
|
if None is not indexerid:
|
2016-04-11 22:55:05 +00:00
|
|
|
indexerid.text = show_indexerid
|
2014-05-14 09:42:08 +00:00
|
|
|
else:
|
2016-04-11 22:55:05 +00:00
|
|
|
etree.SubElement(root, 'id').text = show_indexerid
|
2014-05-14 09:42:08 +00:00
|
|
|
|
|
|
|
# Make it purdy
|
|
|
|
helpers.indentXML(root)
|
|
|
|
|
2016-04-11 22:55:05 +00:00
|
|
|
show_xml.write(nfo_file_path)
|
2014-05-14 09:42:08 +00:00
|
|
|
helpers.chmodAsParent(nfo_file_path)
|
|
|
|
|
|
|
|
return True
|
2015-06-08 12:47:01 +00:00
|
|
|
except IOError as e:
|
2016-04-11 22:55:05 +00:00
|
|
|
logger.log(u'Unable to write file %s - is the folder writable? %s' % (nfo_file_path, ex(e)),
|
|
|
|
logger.ERROR)
|
2014-05-14 09:42:08 +00:00
|
|
|
|
2014-03-10 05:18:05 +00:00
|
|
|
def create_fanart(self, show_obj):
|
|
|
|
if self.fanart and show_obj and not self._has_fanart(show_obj):
|
|
|
|
logger.log(u"Metadata provider " + self.name + " creating fanart for " + show_obj.name, logger.DEBUG)
|
|
|
|
return self.save_fanart(show_obj)
|
|
|
|
return False
|
|
|
|
|
|
|
|
def create_poster(self, show_obj):
|
|
|
|
if self.poster and show_obj and not self._has_poster(show_obj):
|
|
|
|
logger.log(u"Metadata provider " + self.name + " creating poster for " + show_obj.name, logger.DEBUG)
|
|
|
|
return self.save_poster(show_obj)
|
|
|
|
return False
|
|
|
|
|
|
|
|
def create_banner(self, show_obj):
|
|
|
|
if self.banner and show_obj and not self._has_banner(show_obj):
|
|
|
|
logger.log(u"Metadata provider " + self.name + " creating banner for " + show_obj.name, logger.DEBUG)
|
|
|
|
return self.save_banner(show_obj)
|
|
|
|
return False
|
|
|
|
|
|
|
|
def create_episode_thumb(self, ep_obj):
|
|
|
|
if self.episode_thumbnails and ep_obj and not self._has_episode_thumb(ep_obj):
|
2014-03-25 05:57:24 +00:00
|
|
|
logger.log(u"Metadata provider " + self.name + " creating episode thumbnail for " + ep_obj.prettyName(),
|
|
|
|
logger.DEBUG)
|
2014-03-10 05:18:05 +00:00
|
|
|
return self.save_thumbnail(ep_obj)
|
|
|
|
return False
|
|
|
|
|
|
|
|
def create_season_posters(self, show_obj):
|
|
|
|
if self.season_posters and show_obj:
|
|
|
|
result = []
|
2015-06-13 14:52:46 +00:00
|
|
|
for season, episodes in iteritems(show_obj.episodes): # @UnusedVariable
|
2014-03-10 05:18:05 +00:00
|
|
|
if not self._has_season_poster(show_obj, season):
|
2014-03-25 05:57:24 +00:00
|
|
|
logger.log(u"Metadata provider " + self.name + " creating season posters for " + show_obj.name,
|
|
|
|
logger.DEBUG)
|
2014-03-10 05:18:05 +00:00
|
|
|
result = result + [self.save_season_posters(show_obj, season)]
|
|
|
|
return all(result)
|
|
|
|
return False
|
|
|
|
|
|
|
|
def create_season_banners(self, show_obj):
|
|
|
|
if self.season_banners and show_obj:
|
|
|
|
result = []
|
2015-06-13 14:52:46 +00:00
|
|
|
for season, episodes in iteritems(show_obj.episodes): # @UnusedVariable
|
2014-03-10 05:18:05 +00:00
|
|
|
if not self._has_season_banner(show_obj, season):
|
2014-03-25 05:57:24 +00:00
|
|
|
logger.log(u"Metadata provider " + self.name + " creating season banners for " + show_obj.name,
|
|
|
|
logger.DEBUG)
|
2014-03-10 05:18:05 +00:00
|
|
|
result = result + [self.save_season_banners(show_obj, season)]
|
|
|
|
return all(result)
|
|
|
|
return False
|
|
|
|
|
|
|
|
def create_season_all_poster(self, show_obj):
|
|
|
|
if self.season_all_poster and show_obj and not self._has_season_all_poster(show_obj):
|
2014-03-25 05:57:24 +00:00
|
|
|
logger.log(u"Metadata provider " + self.name + " creating season all poster for " + show_obj.name,
|
|
|
|
logger.DEBUG)
|
2014-03-10 05:18:05 +00:00
|
|
|
return self.save_season_all_poster(show_obj)
|
|
|
|
return False
|
|
|
|
|
|
|
|
def create_season_all_banner(self, show_obj):
|
|
|
|
if self.season_all_banner and show_obj and not self._has_season_all_banner(show_obj):
|
2014-03-25 05:57:24 +00:00
|
|
|
logger.log(u"Metadata provider " + self.name + " creating season all banner for " + show_obj.name,
|
|
|
|
logger.DEBUG)
|
2014-03-10 05:18:05 +00:00
|
|
|
return self.save_season_all_banner(show_obj)
|
|
|
|
return False
|
|
|
|
|
|
|
|
def _get_episode_thumb_url(self, ep_obj):
|
|
|
|
"""
|
|
|
|
Returns the URL to use for downloading an episode's thumbnail. Uses
|
2014-03-11 02:32:02 +00:00
|
|
|
theTVDB.com and TVRage.com data.
|
2014-03-10 05:18:05 +00:00
|
|
|
|
|
|
|
ep_obj: a TVEpisode object for which to grab the thumb URL
|
|
|
|
"""
|
|
|
|
all_eps = [ep_obj] + ep_obj.relatedEps
|
|
|
|
|
2014-04-27 10:31:54 +00:00
|
|
|
# validate show
|
|
|
|
if not helpers.validateShow(ep_obj.show):
|
2014-03-10 05:18:05 +00:00
|
|
|
return None
|
|
|
|
|
|
|
|
# try all included episodes in case some have thumbs and others don't
|
|
|
|
for cur_ep in all_eps:
|
2017-12-09 09:37:49 +00:00
|
|
|
if INDEXER_TVDB == cur_ep.show.indexer:
|
|
|
|
indexer_lang = cur_ep.show.lang
|
|
|
|
|
|
|
|
try:
|
|
|
|
lINDEXER_API_PARMS = sickbeard.indexerApi(INDEXER_TVDB_V1).api_params.copy()
|
|
|
|
lINDEXER_API_PARMS['dvdorder'] = 0 != cur_ep.show.dvdorder
|
|
|
|
lINDEXER_API_PARMS['no_dummy'] = True
|
|
|
|
|
|
|
|
if indexer_lang and not indexer_lang == 'en':
|
|
|
|
lINDEXER_API_PARMS['language'] = indexer_lang
|
|
|
|
|
|
|
|
t = sickbeard.indexerApi(INDEXER_TVDB_V1).indexer(**lINDEXER_API_PARMS)
|
|
|
|
|
|
|
|
myEp = t[cur_ep.show.indexerid][cur_ep.season][cur_ep.episode]
|
|
|
|
except (sickbeard.indexer_episodenotfound, sickbeard.indexer_seasonnotfound, TypeError):
|
|
|
|
myEp = None
|
|
|
|
else:
|
|
|
|
myEp = helpers.validateShow(cur_ep.show, cur_ep.season, cur_ep.episode)
|
|
|
|
|
2014-04-27 10:31:54 +00:00
|
|
|
if not myEp:
|
2014-03-10 05:18:05 +00:00
|
|
|
continue
|
|
|
|
|
2017-12-09 09:37:49 +00:00
|
|
|
thumb_url = getattr(myEp, 'filename', None) or (isinstance(myEp, dict) and myEp.get('filename', None))
|
|
|
|
if thumb_url not in (None, False, ''):
|
2014-03-10 05:18:05 +00:00
|
|
|
return thumb_url
|
|
|
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
def write_show_file(self, show_obj):
|
|
|
|
"""
|
|
|
|
Generates and writes show_obj's metadata under the given path to the
|
|
|
|
filename given by get_show_file_path()
|
|
|
|
|
|
|
|
show_obj: TVShow object for which to create the metadata
|
|
|
|
|
|
|
|
path: An absolute or relative path where we should put the file. Note that
|
|
|
|
the file name will be the default show_file_name.
|
|
|
|
|
|
|
|
Note that this method expects that _show_data will return an ElementTree
|
|
|
|
object. If your _show_data returns data in another format you'll need to
|
|
|
|
override this method.
|
|
|
|
"""
|
|
|
|
|
|
|
|
data = self._show_data(show_obj)
|
|
|
|
|
|
|
|
if not data:
|
|
|
|
return False
|
|
|
|
|
|
|
|
nfo_file_path = self.get_show_file_path(show_obj)
|
|
|
|
nfo_file_dir = ek.ek(os.path.dirname, nfo_file_path)
|
|
|
|
|
|
|
|
try:
|
|
|
|
if not ek.ek(os.path.isdir, nfo_file_dir):
|
|
|
|
logger.log(u"Metadata dir didn't exist, creating it at " + nfo_file_dir, logger.DEBUG)
|
|
|
|
ek.ek(os.makedirs, nfo_file_dir)
|
|
|
|
helpers.chmodAsParent(nfo_file_dir)
|
|
|
|
|
|
|
|
logger.log(u"Writing show nfo file to " + nfo_file_path, logger.DEBUG)
|
|
|
|
|
|
|
|
nfo_file = ek.ek(open, nfo_file_path, 'w')
|
|
|
|
|
|
|
|
data.write(nfo_file, encoding="utf-8")
|
|
|
|
nfo_file.close()
|
|
|
|
helpers.chmodAsParent(nfo_file_path)
|
2015-06-08 12:47:01 +00:00
|
|
|
except IOError as e:
|
2014-03-25 05:57:24 +00:00
|
|
|
logger.log(u"Unable to write file to " + nfo_file_path + " - are you sure the folder is writable? " + ex(e),
|
|
|
|
logger.ERROR)
|
2014-03-10 05:18:05 +00:00
|
|
|
return False
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
def write_ep_file(self, ep_obj):
|
|
|
|
"""
|
|
|
|
Generates and writes ep_obj's metadata under the given path with the
|
|
|
|
given filename root. Uses the episode's name with the extension in
|
|
|
|
_ep_nfo_extension.
|
|
|
|
|
|
|
|
ep_obj: TVEpisode object for which to create the metadata
|
|
|
|
|
|
|
|
file_name_path: The file name to use for this metadata. Note that the extension
|
|
|
|
will be automatically added based on _ep_nfo_extension. This should
|
|
|
|
include an absolute path.
|
|
|
|
|
|
|
|
Note that this method expects that _ep_data will return an ElementTree
|
|
|
|
object. If your _ep_data returns data in another format you'll need to
|
|
|
|
override this method.
|
|
|
|
"""
|
|
|
|
|
|
|
|
data = self._ep_data(ep_obj)
|
|
|
|
|
|
|
|
if not data:
|
|
|
|
return False
|
|
|
|
|
|
|
|
nfo_file_path = self.get_episode_file_path(ep_obj)
|
|
|
|
nfo_file_dir = ek.ek(os.path.dirname, nfo_file_path)
|
|
|
|
|
|
|
|
try:
|
|
|
|
if not ek.ek(os.path.isdir, nfo_file_dir):
|
|
|
|
logger.log(u"Metadata dir didn't exist, creating it at " + nfo_file_dir, logger.DEBUG)
|
|
|
|
ek.ek(os.makedirs, nfo_file_dir)
|
|
|
|
helpers.chmodAsParent(nfo_file_dir)
|
|
|
|
|
|
|
|
logger.log(u"Writing episode nfo file to " + nfo_file_path, logger.DEBUG)
|
|
|
|
|
|
|
|
nfo_file = ek.ek(open, nfo_file_path, 'w')
|
|
|
|
|
|
|
|
data.write(nfo_file, encoding="utf-8")
|
|
|
|
nfo_file.close()
|
|
|
|
helpers.chmodAsParent(nfo_file_path)
|
2015-06-08 12:47:01 +00:00
|
|
|
except IOError as e:
|
2014-03-25 05:57:24 +00:00
|
|
|
logger.log(u"Unable to write file to " + nfo_file_path + " - are you sure the folder is writable? " + ex(e),
|
|
|
|
logger.ERROR)
|
2014-03-10 05:18:05 +00:00
|
|
|
return False
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
def save_thumbnail(self, ep_obj):
|
|
|
|
"""
|
|
|
|
Retrieves a thumbnail and saves it to the correct spot. This method should not need to
|
|
|
|
be overridden by implementing classes, changing get_episode_thumb_path and
|
|
|
|
_get_episode_thumb_url should suffice.
|
|
|
|
|
|
|
|
ep_obj: a TVEpisode object for which to generate a thumbnail
|
|
|
|
"""
|
|
|
|
|
|
|
|
file_path = self.get_episode_thumb_path(ep_obj)
|
|
|
|
|
|
|
|
if not file_path:
|
|
|
|
logger.log(u"Unable to find a file path to use for this thumbnail, not generating it", logger.DEBUG)
|
|
|
|
return False
|
|
|
|
|
|
|
|
thumb_url = self._get_episode_thumb_url(ep_obj)
|
|
|
|
|
|
|
|
# if we can't find one then give up
|
|
|
|
if not thumb_url:
|
|
|
|
logger.log(u"No thumb is available for this episode, not creating a thumb", logger.DEBUG)
|
|
|
|
return False
|
|
|
|
|
2017-07-17 19:29:32 +00:00
|
|
|
thumb_data = metadata_helpers.getShowImage(thumb_url, showName=ep_obj.show.name)
|
2014-03-10 05:18:05 +00:00
|
|
|
|
|
|
|
result = self._write_image(thumb_data, file_path)
|
|
|
|
|
|
|
|
if not result:
|
|
|
|
return False
|
|
|
|
|
|
|
|
for cur_ep in [ep_obj] + ep_obj.relatedEps:
|
|
|
|
cur_ep.hastbn = True
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
def save_fanart(self, show_obj, which=None):
|
|
|
|
"""
|
|
|
|
Downloads a fanart image and saves it to the filename specified by fanart_name
|
|
|
|
inside the show's root folder.
|
|
|
|
|
|
|
|
show_obj: a TVShow object for which to download fanart
|
|
|
|
"""
|
|
|
|
|
|
|
|
# use the default fanart name
|
|
|
|
fanart_path = self.get_fanart_path(show_obj)
|
|
|
|
|
|
|
|
fanart_data = self._retrieve_show_image('fanart', show_obj, which)
|
|
|
|
|
|
|
|
if not fanart_data:
|
|
|
|
logger.log(u"No fanart image was retrieved, unable to write fanart", logger.DEBUG)
|
|
|
|
return False
|
|
|
|
|
|
|
|
return self._write_image(fanart_data, fanart_path)
|
|
|
|
|
|
|
|
def save_poster(self, show_obj, which=None):
|
|
|
|
"""
|
|
|
|
Downloads a poster image and saves it to the filename specified by poster_name
|
|
|
|
inside the show's root folder.
|
|
|
|
|
|
|
|
show_obj: a TVShow object for which to download a poster
|
|
|
|
"""
|
|
|
|
|
|
|
|
# use the default poster name
|
|
|
|
poster_path = self.get_poster_path(show_obj)
|
|
|
|
|
|
|
|
poster_data = self._retrieve_show_image('poster', show_obj, which)
|
|
|
|
|
|
|
|
if not poster_data:
|
|
|
|
logger.log(u"No show poster image was retrieved, unable to write poster", logger.DEBUG)
|
|
|
|
return False
|
|
|
|
|
|
|
|
return self._write_image(poster_data, poster_path)
|
|
|
|
|
|
|
|
def save_banner(self, show_obj, which=None):
|
|
|
|
"""
|
|
|
|
Downloads a banner image and saves it to the filename specified by banner_name
|
|
|
|
inside the show's root folder.
|
|
|
|
|
|
|
|
show_obj: a TVShow object for which to download a banner
|
|
|
|
"""
|
|
|
|
|
|
|
|
# use the default banner name
|
|
|
|
banner_path = self.get_banner_path(show_obj)
|
|
|
|
|
|
|
|
banner_data = self._retrieve_show_image('banner', show_obj, which)
|
|
|
|
|
|
|
|
if not banner_data:
|
|
|
|
logger.log(u"No show banner image was retrieved, unable to write banner", logger.DEBUG)
|
|
|
|
return False
|
|
|
|
|
|
|
|
return self._write_image(banner_data, banner_path)
|
|
|
|
|
|
|
|
def save_season_posters(self, show_obj, season):
|
|
|
|
"""
|
|
|
|
Saves all season posters to disk for the given show.
|
|
|
|
|
|
|
|
show_obj: a TVShow object for which to save the season thumbs
|
|
|
|
|
2017-12-09 03:53:22 +00:00
|
|
|
Cycles through all seasons and saves the season posters if possible.
|
2014-03-10 05:18:05 +00:00
|
|
|
"""
|
|
|
|
|
2017-12-09 03:53:22 +00:00
|
|
|
season_dict = self._season_image_dict(show_obj, season, 'seasons')
|
2014-03-10 05:18:05 +00:00
|
|
|
result = []
|
|
|
|
|
|
|
|
# Returns a nested dictionary of season art with the season
|
|
|
|
# number as primary key. It's really overkill but gives the option
|
|
|
|
# to present to user via ui to pick down the road.
|
|
|
|
for cur_season in season_dict:
|
|
|
|
|
|
|
|
cur_season_art = season_dict[cur_season]
|
|
|
|
|
2017-12-09 03:53:22 +00:00
|
|
|
if 0 == len(cur_season_art):
|
2014-03-10 05:18:05 +00:00
|
|
|
continue
|
|
|
|
|
|
|
|
# Just grab whatever's there for now
|
|
|
|
art_id, season_url = cur_season_art.popitem() # @UnusedVariable
|
|
|
|
|
|
|
|
season_poster_file_path = self.get_season_poster_path(show_obj, cur_season)
|
|
|
|
|
|
|
|
if not season_poster_file_path:
|
2017-12-09 03:53:22 +00:00
|
|
|
logger.log(u'Path for season ' + str(cur_season) + ' came back blank, skipping this season',
|
2014-03-25 05:57:24 +00:00
|
|
|
logger.DEBUG)
|
2014-03-10 05:18:05 +00:00
|
|
|
continue
|
|
|
|
|
2017-12-09 03:53:22 +00:00
|
|
|
season_data = metadata_helpers.getShowImage(season_url, showName=show_obj.name)
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2017-12-09 03:53:22 +00:00
|
|
|
if not season_data:
|
|
|
|
logger.log(u'No season poster data available, skipping this season', logger.DEBUG)
|
2014-03-10 05:18:05 +00:00
|
|
|
continue
|
|
|
|
|
2017-12-09 03:53:22 +00:00
|
|
|
result = result + [self._write_image(season_data, season_poster_file_path)]
|
|
|
|
|
2014-03-10 05:18:05 +00:00
|
|
|
if result:
|
|
|
|
return all(result)
|
2017-12-09 03:53:22 +00:00
|
|
|
return False
|
2014-03-20 18:03:22 +00:00
|
|
|
|
2014-03-10 05:18:05 +00:00
|
|
|
def save_season_banners(self, show_obj, season):
|
|
|
|
"""
|
|
|
|
Saves all season banners to disk for the given show.
|
|
|
|
|
|
|
|
show_obj: a TVShow object for which to save the season thumbs
|
|
|
|
|
2017-12-09 03:53:22 +00:00
|
|
|
Cycles through all seasons and saves the season banners if possible.
|
2014-03-10 05:18:05 +00:00
|
|
|
"""
|
|
|
|
|
2017-12-09 03:53:22 +00:00
|
|
|
season_dict = self._season_image_dict(show_obj, season, 'seasonwides')
|
2014-03-10 05:18:05 +00:00
|
|
|
result = []
|
|
|
|
|
|
|
|
# Returns a nested dictionary of season art with the season
|
|
|
|
# number as primary key. It's really overkill but gives the option
|
|
|
|
# to present to user via ui to pick down the road.
|
|
|
|
for cur_season in season_dict:
|
|
|
|
|
|
|
|
cur_season_art = season_dict[cur_season]
|
|
|
|
|
2017-12-09 03:53:22 +00:00
|
|
|
if 0 == len(cur_season_art):
|
2014-03-10 05:18:05 +00:00
|
|
|
continue
|
|
|
|
|
|
|
|
# Just grab whatever's there for now
|
|
|
|
art_id, season_url = cur_season_art.popitem() # @UnusedVariable
|
|
|
|
|
|
|
|
season_banner_file_path = self.get_season_banner_path(show_obj, cur_season)
|
|
|
|
|
|
|
|
if not season_banner_file_path:
|
2017-12-09 03:53:22 +00:00
|
|
|
logger.log(u'Path for season ' + str(cur_season) + ' came back blank, skipping this season',
|
2014-03-25 05:57:24 +00:00
|
|
|
logger.DEBUG)
|
2014-03-10 05:18:05 +00:00
|
|
|
continue
|
|
|
|
|
2017-12-09 03:53:22 +00:00
|
|
|
season_data = metadata_helpers.getShowImage(season_url, showName=show_obj.name)
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2017-12-09 03:53:22 +00:00
|
|
|
if not season_data:
|
|
|
|
logger.log(u'No season banner data available, skipping this season', logger.DEBUG)
|
2014-03-10 05:18:05 +00:00
|
|
|
continue
|
|
|
|
|
2017-12-09 03:53:22 +00:00
|
|
|
result = result + [self._write_image(season_data, season_banner_file_path)]
|
|
|
|
|
2014-03-10 05:18:05 +00:00
|
|
|
if result:
|
|
|
|
return all(result)
|
2017-12-09 03:53:22 +00:00
|
|
|
return False
|
2014-03-20 18:03:22 +00:00
|
|
|
|
2014-03-10 05:18:05 +00:00
|
|
|
def save_season_all_poster(self, show_obj, which=None):
|
|
|
|
# use the default season all poster name
|
|
|
|
poster_path = self.get_season_all_poster_path(show_obj)
|
|
|
|
|
|
|
|
poster_data = self._retrieve_show_image('poster', show_obj, which)
|
|
|
|
|
|
|
|
if not poster_data:
|
|
|
|
logger.log(u"No show poster image was retrieved, unable to write season all poster", logger.DEBUG)
|
|
|
|
return False
|
|
|
|
|
|
|
|
return self._write_image(poster_data, poster_path)
|
|
|
|
|
|
|
|
def save_season_all_banner(self, show_obj, which=None):
|
|
|
|
# use the default season all banner name
|
|
|
|
banner_path = self.get_season_all_banner_path(show_obj)
|
|
|
|
|
|
|
|
banner_data = self._retrieve_show_image('banner', show_obj, which)
|
|
|
|
|
|
|
|
if not banner_data:
|
|
|
|
logger.log(u"No show banner image was retrieved, unable to write season all banner", logger.DEBUG)
|
|
|
|
return False
|
|
|
|
|
|
|
|
return self._write_image(banner_data, banner_path)
|
|
|
|
|
|
|
|
def _write_image(self, image_data, image_path):
|
|
|
|
"""
|
|
|
|
Saves the data in image_data to the location image_path. Returns True/False
|
|
|
|
to represent success or failure.
|
|
|
|
|
|
|
|
image_data: binary image data to write to file
|
|
|
|
image_path: file location to save the image to
|
|
|
|
"""
|
|
|
|
|
|
|
|
# don't bother overwriting it
|
|
|
|
if ek.ek(os.path.isfile, image_path):
|
|
|
|
logger.log(u"Image already exists, not downloading", logger.DEBUG)
|
|
|
|
return False
|
|
|
|
|
|
|
|
if not image_data:
|
|
|
|
logger.log(u"Unable to retrieve image, skipping", logger.WARNING)
|
|
|
|
return False
|
|
|
|
|
|
|
|
image_dir = ek.ek(os.path.dirname, image_path)
|
|
|
|
|
|
|
|
try:
|
|
|
|
if not ek.ek(os.path.isdir, image_dir):
|
|
|
|
logger.log(u"Metadata dir didn't exist, creating it at " + image_dir, logger.DEBUG)
|
|
|
|
ek.ek(os.makedirs, image_dir)
|
|
|
|
helpers.chmodAsParent(image_dir)
|
|
|
|
|
|
|
|
outFile = ek.ek(open, image_path, 'wb')
|
|
|
|
outFile.write(image_data)
|
|
|
|
outFile.close()
|
|
|
|
helpers.chmodAsParent(image_path)
|
2015-06-08 12:47:01 +00:00
|
|
|
except IOError as e:
|
2014-03-25 05:57:24 +00:00
|
|
|
logger.log(
|
|
|
|
u"Unable to write image to " + image_path + " - are you sure the show folder is writable? " + ex(e),
|
|
|
|
logger.ERROR)
|
2014-03-10 05:18:05 +00:00
|
|
|
return False
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
def _retrieve_show_image(self, image_type, show_obj, which=None):
|
|
|
|
"""
|
Add fanart to Episodes View, Display Show, Edit Show, and Media Renamer page.
Add "Maximum fanart image files per show to cache" to config General/Interface.
Add populate images when the daily show updater is run with a default maximum 3 images per show.
Change force full update in a show will replace existing images with new.
Add fanart livepanel to lower right of Episodes View and Display Show page.
Add highlight panel red until button is clicked a few times.
Add flick through multiple background images on Episodes View and Display Show page.
Add persistent move poster image to right hand side or hide on Display Show page (multi-click the eye).
Add persistent translucency of background images on Episodes View and Display Show page.
Add persistent fanart rating to avoid art completely, random display, random from a group, or display fave always.
Add persistent views of the show detail on Display Show page.
Add persistent views on Episodes View.
Add persistent button to collapse and expand card images on Episode View/Layout daybyday.
Add non persistent "Open gear" and "Full fanart" image views to Episodes View and Display Show page.
Add "smart" selection of fanart image to display on Episode view.
Change insert [!] and change text shade of ended shows in drop down show list on Display Show page.
Change button graphic for next and previous show of show list on Display Show page.
Add logic to hide some livepanel buttons until artwork becomes available or in other circumstances.
Add "(Ended)" where appropriate to show title on Display Show page.
Add links to fanart.tv where appropriate on Display Show page.
Change use tense for label "Airs" or "Aired" depending on if show ended.
Change display "No files" instead of "0 files" and "Upgrade once" instead of "End upgrade on first match".
Add persistent button to newest season to "Show all" episodes.
Add persistent button to all shown seasons to "Hide most" episodes.
Add button to older seasons to toggle "Show Season n" or "Show Specials" with "Hide..." episodes.
Add season level status counts next to each season header on display show page
Add sorting to season table headers on display show page
Add filename and size to quality badge on display show page, removed its redundant "downloaded" text
Remove redundant "Add show" buttons
Change combine the NFO and TBN columns into a single Meta column
Change reduce screen estate used by episode numbers columns
Change improve clarity of text on Add Show page.
Add "Reset fanart ratings" to show Edit/Other tab.
Add fanart usage to show Edit/Other tab.
Add fanart keys guide to show Edit/Other tab.
Change add placeholder tip to "Alternative release name(s)" on show Edit.
Change add placeholder tip to search box on shows Search.
Change hide Anime tips on show Edit when selecting its mutually exclusive options.
Change label "End upgrade on first match" to "Upgrade once" on show Edit.
Change improve performance rendering displayShow.
Add total episodes to start of show description (excludes specials if those are hidden).
Add "Add show" actions i.e. "Search", "Trakt cards", "IMDb cards", and "Anime" to Shows menu.
Add "Import (existing)" action to Tools menu.
Change SD quality from red to dark green, 2160p UHD 4K is red.
Change relocate the functions of Logs & Errors to the right side Tools menu -> View Log File.
Add warning indicator to the Tools menu in different colour depending on error count (green through red).
Change View Log error item output from reversed to natural order.
Change View Log add a typeface and some colour to improve readability.
Change View Log/Errors only display "Clear Errors" button when there are errors to clear.
Change improve performance of View Log File.
2016-02-28 23:43:40 +00:00
|
|
|
Gets an image URL from theTVDB.com, fanart.tv and TMDB.com, downloads it and returns the data.
|
|
|
|
If type is fanart, multiple image src urls are returned instead of a single data image.
|
2014-03-10 05:18:05 +00:00
|
|
|
|
Add fanart to Episodes View, Display Show, Edit Show, and Media Renamer page.
Add "Maximum fanart image files per show to cache" to config General/Interface.
Add populate images when the daily show updater is run with a default maximum 3 images per show.
Change force full update in a show will replace existing images with new.
Add fanart livepanel to lower right of Episodes View and Display Show page.
Add highlight panel red until button is clicked a few times.
Add flick through multiple background images on Episodes View and Display Show page.
Add persistent move poster image to right hand side or hide on Display Show page (multi-click the eye).
Add persistent translucency of background images on Episodes View and Display Show page.
Add persistent fanart rating to avoid art completely, random display, random from a group, or display fave always.
Add persistent views of the show detail on Display Show page.
Add persistent views on Episodes View.
Add persistent button to collapse and expand card images on Episode View/Layout daybyday.
Add non persistent "Open gear" and "Full fanart" image views to Episodes View and Display Show page.
Add "smart" selection of fanart image to display on Episode view.
Change insert [!] and change text shade of ended shows in drop down show list on Display Show page.
Change button graphic for next and previous show of show list on Display Show page.
Add logic to hide some livepanel buttons until artwork becomes available or in other circumstances.
Add "(Ended)" where appropriate to show title on Display Show page.
Add links to fanart.tv where appropriate on Display Show page.
Change use tense for label "Airs" or "Aired" depending on if show ended.
Change display "No files" instead of "0 files" and "Upgrade once" instead of "End upgrade on first match".
Add persistent button to newest season to "Show all" episodes.
Add persistent button to all shown seasons to "Hide most" episodes.
Add button to older seasons to toggle "Show Season n" or "Show Specials" with "Hide..." episodes.
Add season level status counts next to each season header on display show page
Add sorting to season table headers on display show page
Add filename and size to quality badge on display show page, removed its redundant "downloaded" text
Remove redundant "Add show" buttons
Change combine the NFO and TBN columns into a single Meta column
Change reduce screen estate used by episode numbers columns
Change improve clarity of text on Add Show page.
Add "Reset fanart ratings" to show Edit/Other tab.
Add fanart usage to show Edit/Other tab.
Add fanart keys guide to show Edit/Other tab.
Change add placeholder tip to "Alternative release name(s)" on show Edit.
Change add placeholder tip to search box on shows Search.
Change hide Anime tips on show Edit when selecting its mutually exclusive options.
Change label "End upgrade on first match" to "Upgrade once" on show Edit.
Change improve performance rendering displayShow.
Add total episodes to start of show description (excludes specials if those are hidden).
Add "Add show" actions i.e. "Search", "Trakt cards", "IMDb cards", and "Anime" to Shows menu.
Add "Import (existing)" action to Tools menu.
Change SD quality from red to dark green, 2160p UHD 4K is red.
Change relocate the functions of Logs & Errors to the right side Tools menu -> View Log File.
Add warning indicator to the Tools menu in different colour depending on error count (green through red).
Change View Log error item output from reversed to natural order.
Change View Log add a typeface and some colour to improve readability.
Change View Log/Errors only display "Clear Errors" button when there are errors to clear.
Change improve performance of View Log File.
2016-02-28 23:43:40 +00:00
|
|
|
image_type: type of image to retrieve (currently supported: fanart, poster, banner, poster_thumb, banner_thumb)
|
2014-03-10 05:18:05 +00:00
|
|
|
show_obj: a TVShow object to use when searching for the image
|
|
|
|
which: optional, a specific numbered poster to look for
|
|
|
|
|
|
|
|
Returns: the binary image data if available, or else None
|
|
|
|
"""
|
|
|
|
indexer_lang = show_obj.lang
|
|
|
|
|
|
|
|
try:
|
|
|
|
# There's gotta be a better way of doing this but we don't wanna
|
|
|
|
# change the language value elsewhere
|
2014-03-26 19:28:46 +00:00
|
|
|
lINDEXER_API_PARMS = sickbeard.indexerApi(show_obj.indexer).api_params.copy()
|
2017-04-24 22:38:27 +00:00
|
|
|
if image_type.startswith('fanart'):
|
|
|
|
lINDEXER_API_PARMS['fanart'] = True
|
2017-08-27 00:11:17 +00:00
|
|
|
elif image_type.startswith('poster'):
|
|
|
|
lINDEXER_API_PARMS['posters'] = True
|
2017-04-24 22:38:27 +00:00
|
|
|
else:
|
|
|
|
lINDEXER_API_PARMS['banners'] = True
|
Add fanart to Episodes View, Display Show, Edit Show, and Media Renamer page.
Add "Maximum fanart image files per show to cache" to config General/Interface.
Add populate images when the daily show updater is run with a default maximum 3 images per show.
Change force full update in a show will replace existing images with new.
Add fanart livepanel to lower right of Episodes View and Display Show page.
Add highlight panel red until button is clicked a few times.
Add flick through multiple background images on Episodes View and Display Show page.
Add persistent move poster image to right hand side or hide on Display Show page (multi-click the eye).
Add persistent translucency of background images on Episodes View and Display Show page.
Add persistent fanart rating to avoid art completely, random display, random from a group, or display fave always.
Add persistent views of the show detail on Display Show page.
Add persistent views on Episodes View.
Add persistent button to collapse and expand card images on Episode View/Layout daybyday.
Add non persistent "Open gear" and "Full fanart" image views to Episodes View and Display Show page.
Add "smart" selection of fanart image to display on Episode view.
Change insert [!] and change text shade of ended shows in drop down show list on Display Show page.
Change button graphic for next and previous show of show list on Display Show page.
Add logic to hide some livepanel buttons until artwork becomes available or in other circumstances.
Add "(Ended)" where appropriate to show title on Display Show page.
Add links to fanart.tv where appropriate on Display Show page.
Change use tense for label "Airs" or "Aired" depending on if show ended.
Change display "No files" instead of "0 files" and "Upgrade once" instead of "End upgrade on first match".
Add persistent button to newest season to "Show all" episodes.
Add persistent button to all shown seasons to "Hide most" episodes.
Add button to older seasons to toggle "Show Season n" or "Show Specials" with "Hide..." episodes.
Add season level status counts next to each season header on display show page
Add sorting to season table headers on display show page
Add filename and size to quality badge on display show page, removed its redundant "downloaded" text
Remove redundant "Add show" buttons
Change combine the NFO and TBN columns into a single Meta column
Change reduce screen estate used by episode numbers columns
Change improve clarity of text on Add Show page.
Add "Reset fanart ratings" to show Edit/Other tab.
Add fanart usage to show Edit/Other tab.
Add fanart keys guide to show Edit/Other tab.
Change add placeholder tip to "Alternative release name(s)" on show Edit.
Change add placeholder tip to search box on shows Search.
Change hide Anime tips on show Edit when selecting its mutually exclusive options.
Change label "End upgrade on first match" to "Upgrade once" on show Edit.
Change improve performance rendering displayShow.
Add total episodes to start of show description (excludes specials if those are hidden).
Add "Add show" actions i.e. "Search", "Trakt cards", "IMDb cards", and "Anime" to Shows menu.
Add "Import (existing)" action to Tools menu.
Change SD quality from red to dark green, 2160p UHD 4K is red.
Change relocate the functions of Logs & Errors to the right side Tools menu -> View Log File.
Add warning indicator to the Tools menu in different colour depending on error count (green through red).
Change View Log error item output from reversed to natural order.
Change View Log add a typeface and some colour to improve readability.
Change View Log/Errors only display "Clear Errors" button when there are errors to clear.
Change improve performance of View Log File.
2016-02-28 23:43:40 +00:00
|
|
|
lINDEXER_API_PARMS['dvdorder'] = 0 != show_obj.dvdorder
|
2014-03-10 05:18:05 +00:00
|
|
|
|
Add fanart to Episodes View, Display Show, Edit Show, and Media Renamer page.
Add "Maximum fanart image files per show to cache" to config General/Interface.
Add populate images when the daily show updater is run with a default maximum 3 images per show.
Change force full update in a show will replace existing images with new.
Add fanart livepanel to lower right of Episodes View and Display Show page.
Add highlight panel red until button is clicked a few times.
Add flick through multiple background images on Episodes View and Display Show page.
Add persistent move poster image to right hand side or hide on Display Show page (multi-click the eye).
Add persistent translucency of background images on Episodes View and Display Show page.
Add persistent fanart rating to avoid art completely, random display, random from a group, or display fave always.
Add persistent views of the show detail on Display Show page.
Add persistent views on Episodes View.
Add persistent button to collapse and expand card images on Episode View/Layout daybyday.
Add non persistent "Open gear" and "Full fanart" image views to Episodes View and Display Show page.
Add "smart" selection of fanart image to display on Episode view.
Change insert [!] and change text shade of ended shows in drop down show list on Display Show page.
Change button graphic for next and previous show of show list on Display Show page.
Add logic to hide some livepanel buttons until artwork becomes available or in other circumstances.
Add "(Ended)" where appropriate to show title on Display Show page.
Add links to fanart.tv where appropriate on Display Show page.
Change use tense for label "Airs" or "Aired" depending on if show ended.
Change display "No files" instead of "0 files" and "Upgrade once" instead of "End upgrade on first match".
Add persistent button to newest season to "Show all" episodes.
Add persistent button to all shown seasons to "Hide most" episodes.
Add button to older seasons to toggle "Show Season n" or "Show Specials" with "Hide..." episodes.
Add season level status counts next to each season header on display show page
Add sorting to season table headers on display show page
Add filename and size to quality badge on display show page, removed its redundant "downloaded" text
Remove redundant "Add show" buttons
Change combine the NFO and TBN columns into a single Meta column
Change reduce screen estate used by episode numbers columns
Change improve clarity of text on Add Show page.
Add "Reset fanart ratings" to show Edit/Other tab.
Add fanart usage to show Edit/Other tab.
Add fanart keys guide to show Edit/Other tab.
Change add placeholder tip to "Alternative release name(s)" on show Edit.
Change add placeholder tip to search box on shows Search.
Change hide Anime tips on show Edit when selecting its mutually exclusive options.
Change label "End upgrade on first match" to "Upgrade once" on show Edit.
Change improve performance rendering displayShow.
Add total episodes to start of show description (excludes specials if those are hidden).
Add "Add show" actions i.e. "Search", "Trakt cards", "IMDb cards", and "Anime" to Shows menu.
Add "Import (existing)" action to Tools menu.
Change SD quality from red to dark green, 2160p UHD 4K is red.
Change relocate the functions of Logs & Errors to the right side Tools menu -> View Log File.
Add warning indicator to the Tools menu in different colour depending on error count (green through red).
Change View Log error item output from reversed to natural order.
Change View Log add a typeface and some colour to improve readability.
Change View Log/Errors only display "Clear Errors" button when there are errors to clear.
Change improve performance of View Log File.
2016-02-28 23:43:40 +00:00
|
|
|
if indexer_lang and not 'en' == indexer_lang:
|
2014-03-12 05:28:30 +00:00
|
|
|
lINDEXER_API_PARMS['language'] = indexer_lang
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2014-03-26 19:28:46 +00:00
|
|
|
t = sickbeard.indexerApi(show_obj.indexer).indexer(**lINDEXER_API_PARMS)
|
2017-07-17 19:29:32 +00:00
|
|
|
indexer_show_obj = t[show_obj.indexerid, False]
|
2015-06-08 12:47:01 +00:00
|
|
|
except (sickbeard.indexer_error, IOError) as e:
|
2014-03-25 05:57:24 +00:00
|
|
|
logger.log(u"Unable to look up show on " + sickbeard.indexerApi(
|
2018-05-14 00:03:33 +00:00
|
|
|
show_obj.indexer).name + ", not downloading images: " + ex(e), logger.WARNING)
|
2014-03-10 05:18:05 +00:00
|
|
|
return None
|
|
|
|
|
2018-04-07 19:49:12 +00:00
|
|
|
if not self._valid_show(indexer_show_obj, show_obj):
|
2018-04-06 23:14:13 +00:00
|
|
|
return None
|
|
|
|
|
Add fanart to Episodes View, Display Show, Edit Show, and Media Renamer page.
Add "Maximum fanart image files per show to cache" to config General/Interface.
Add populate images when the daily show updater is run with a default maximum 3 images per show.
Change force full update in a show will replace existing images with new.
Add fanart livepanel to lower right of Episodes View and Display Show page.
Add highlight panel red until button is clicked a few times.
Add flick through multiple background images on Episodes View and Display Show page.
Add persistent move poster image to right hand side or hide on Display Show page (multi-click the eye).
Add persistent translucency of background images on Episodes View and Display Show page.
Add persistent fanart rating to avoid art completely, random display, random from a group, or display fave always.
Add persistent views of the show detail on Display Show page.
Add persistent views on Episodes View.
Add persistent button to collapse and expand card images on Episode View/Layout daybyday.
Add non persistent "Open gear" and "Full fanart" image views to Episodes View and Display Show page.
Add "smart" selection of fanart image to display on Episode view.
Change insert [!] and change text shade of ended shows in drop down show list on Display Show page.
Change button graphic for next and previous show of show list on Display Show page.
Add logic to hide some livepanel buttons until artwork becomes available or in other circumstances.
Add "(Ended)" where appropriate to show title on Display Show page.
Add links to fanart.tv where appropriate on Display Show page.
Change use tense for label "Airs" or "Aired" depending on if show ended.
Change display "No files" instead of "0 files" and "Upgrade once" instead of "End upgrade on first match".
Add persistent button to newest season to "Show all" episodes.
Add persistent button to all shown seasons to "Hide most" episodes.
Add button to older seasons to toggle "Show Season n" or "Show Specials" with "Hide..." episodes.
Add season level status counts next to each season header on display show page
Add sorting to season table headers on display show page
Add filename and size to quality badge on display show page, removed its redundant "downloaded" text
Remove redundant "Add show" buttons
Change combine the NFO and TBN columns into a single Meta column
Change reduce screen estate used by episode numbers columns
Change improve clarity of text on Add Show page.
Add "Reset fanart ratings" to show Edit/Other tab.
Add fanart usage to show Edit/Other tab.
Add fanart keys guide to show Edit/Other tab.
Change add placeholder tip to "Alternative release name(s)" on show Edit.
Change add placeholder tip to search box on shows Search.
Change hide Anime tips on show Edit when selecting its mutually exclusive options.
Change label "End upgrade on first match" to "Upgrade once" on show Edit.
Change improve performance rendering displayShow.
Add total episodes to start of show description (excludes specials if those are hidden).
Add "Add show" actions i.e. "Search", "Trakt cards", "IMDb cards", and "Anime" to Shows menu.
Add "Import (existing)" action to Tools menu.
Change SD quality from red to dark green, 2160p UHD 4K is red.
Change relocate the functions of Logs & Errors to the right side Tools menu -> View Log File.
Add warning indicator to the Tools menu in different colour depending on error count (green through red).
Change View Log error item output from reversed to natural order.
Change View Log add a typeface and some colour to improve readability.
Change View Log/Errors only display "Clear Errors" button when there are errors to clear.
Change improve performance of View Log File.
2016-02-28 23:43:40 +00:00
|
|
|
return_links = False
|
|
|
|
if 'fanart_all' == image_type:
|
|
|
|
return_links = True
|
|
|
|
image_type = 'fanart'
|
|
|
|
|
|
|
|
if image_type not in ('poster', 'banner', 'fanart', 'poster_thumb', 'banner_thumb'):
|
2014-03-25 05:57:24 +00:00
|
|
|
logger.log(u"Invalid image type " + str(image_type) + ", couldn't find it in the " + sickbeard.indexerApi(
|
|
|
|
show_obj.indexer).name + " object", logger.ERROR)
|
2014-03-10 05:18:05 +00:00
|
|
|
return None
|
|
|
|
|
Add fanart to Episodes View, Display Show, Edit Show, and Media Renamer page.
Add "Maximum fanart image files per show to cache" to config General/Interface.
Add populate images when the daily show updater is run with a default maximum 3 images per show.
Change force full update in a show will replace existing images with new.
Add fanart livepanel to lower right of Episodes View and Display Show page.
Add highlight panel red until button is clicked a few times.
Add flick through multiple background images on Episodes View and Display Show page.
Add persistent move poster image to right hand side or hide on Display Show page (multi-click the eye).
Add persistent translucency of background images on Episodes View and Display Show page.
Add persistent fanart rating to avoid art completely, random display, random from a group, or display fave always.
Add persistent views of the show detail on Display Show page.
Add persistent views on Episodes View.
Add persistent button to collapse and expand card images on Episode View/Layout daybyday.
Add non persistent "Open gear" and "Full fanart" image views to Episodes View and Display Show page.
Add "smart" selection of fanart image to display on Episode view.
Change insert [!] and change text shade of ended shows in drop down show list on Display Show page.
Change button graphic for next and previous show of show list on Display Show page.
Add logic to hide some livepanel buttons until artwork becomes available or in other circumstances.
Add "(Ended)" where appropriate to show title on Display Show page.
Add links to fanart.tv where appropriate on Display Show page.
Change use tense for label "Airs" or "Aired" depending on if show ended.
Change display "No files" instead of "0 files" and "Upgrade once" instead of "End upgrade on first match".
Add persistent button to newest season to "Show all" episodes.
Add persistent button to all shown seasons to "Hide most" episodes.
Add button to older seasons to toggle "Show Season n" or "Show Specials" with "Hide..." episodes.
Add season level status counts next to each season header on display show page
Add sorting to season table headers on display show page
Add filename and size to quality badge on display show page, removed its redundant "downloaded" text
Remove redundant "Add show" buttons
Change combine the NFO and TBN columns into a single Meta column
Change reduce screen estate used by episode numbers columns
Change improve clarity of text on Add Show page.
Add "Reset fanart ratings" to show Edit/Other tab.
Add fanart usage to show Edit/Other tab.
Add fanart keys guide to show Edit/Other tab.
Change add placeholder tip to "Alternative release name(s)" on show Edit.
Change add placeholder tip to search box on shows Search.
Change hide Anime tips on show Edit when selecting its mutually exclusive options.
Change label "End upgrade on first match" to "Upgrade once" on show Edit.
Change improve performance rendering displayShow.
Add total episodes to start of show description (excludes specials if those are hidden).
Add "Add show" actions i.e. "Search", "Trakt cards", "IMDb cards", and "Anime" to Shows menu.
Add "Import (existing)" action to Tools menu.
Change SD quality from red to dark green, 2160p UHD 4K is red.
Change relocate the functions of Logs & Errors to the right side Tools menu -> View Log File.
Add warning indicator to the Tools menu in different colour depending on error count (green through red).
Change View Log error item output from reversed to natural order.
Change View Log add a typeface and some colour to improve readability.
Change View Log/Errors only display "Clear Errors" button when there are errors to clear.
Change improve performance of View Log File.
2016-02-28 23:43:40 +00:00
|
|
|
image_urls = []
|
|
|
|
init_url = None
|
|
|
|
if 'poster_thumb' == image_type:
|
2014-03-13 12:20:45 +00:00
|
|
|
if getattr(indexer_show_obj, 'poster', None) is not None:
|
2014-03-10 05:18:05 +00:00
|
|
|
image_url = re.sub('posters', '_cache/posters', indexer_show_obj['poster'])
|
Add fanart to Episodes View, Display Show, Edit Show, and Media Renamer page.
Add "Maximum fanart image files per show to cache" to config General/Interface.
Add populate images when the daily show updater is run with a default maximum 3 images per show.
Change force full update in a show will replace existing images with new.
Add fanart livepanel to lower right of Episodes View and Display Show page.
Add highlight panel red until button is clicked a few times.
Add flick through multiple background images on Episodes View and Display Show page.
Add persistent move poster image to right hand side or hide on Display Show page (multi-click the eye).
Add persistent translucency of background images on Episodes View and Display Show page.
Add persistent fanart rating to avoid art completely, random display, random from a group, or display fave always.
Add persistent views of the show detail on Display Show page.
Add persistent views on Episodes View.
Add persistent button to collapse and expand card images on Episode View/Layout daybyday.
Add non persistent "Open gear" and "Full fanart" image views to Episodes View and Display Show page.
Add "smart" selection of fanart image to display on Episode view.
Change insert [!] and change text shade of ended shows in drop down show list on Display Show page.
Change button graphic for next and previous show of show list on Display Show page.
Add logic to hide some livepanel buttons until artwork becomes available or in other circumstances.
Add "(Ended)" where appropriate to show title on Display Show page.
Add links to fanart.tv where appropriate on Display Show page.
Change use tense for label "Airs" or "Aired" depending on if show ended.
Change display "No files" instead of "0 files" and "Upgrade once" instead of "End upgrade on first match".
Add persistent button to newest season to "Show all" episodes.
Add persistent button to all shown seasons to "Hide most" episodes.
Add button to older seasons to toggle "Show Season n" or "Show Specials" with "Hide..." episodes.
Add season level status counts next to each season header on display show page
Add sorting to season table headers on display show page
Add filename and size to quality badge on display show page, removed its redundant "downloaded" text
Remove redundant "Add show" buttons
Change combine the NFO and TBN columns into a single Meta column
Change reduce screen estate used by episode numbers columns
Change improve clarity of text on Add Show page.
Add "Reset fanart ratings" to show Edit/Other tab.
Add fanart usage to show Edit/Other tab.
Add fanart keys guide to show Edit/Other tab.
Change add placeholder tip to "Alternative release name(s)" on show Edit.
Change add placeholder tip to search box on shows Search.
Change hide Anime tips on show Edit when selecting its mutually exclusive options.
Change label "End upgrade on first match" to "Upgrade once" on show Edit.
Change improve performance rendering displayShow.
Add total episodes to start of show description (excludes specials if those are hidden).
Add "Add show" actions i.e. "Search", "Trakt cards", "IMDb cards", and "Anime" to Shows menu.
Add "Import (existing)" action to Tools menu.
Change SD quality from red to dark green, 2160p UHD 4K is red.
Change relocate the functions of Logs & Errors to the right side Tools menu -> View Log File.
Add warning indicator to the Tools menu in different colour depending on error count (green through red).
Change View Log error item output from reversed to natural order.
Change View Log add a typeface and some colour to improve readability.
Change View Log/Errors only display "Clear Errors" button when there are errors to clear.
Change improve performance of View Log File.
2016-02-28 23:43:40 +00:00
|
|
|
if image_url:
|
|
|
|
image_urls.append(image_url)
|
|
|
|
for item in self._fanart_urls_from_show(show_obj, image_type, indexer_lang, True) or []:
|
|
|
|
image_urls.append(item[2])
|
|
|
|
if 0 == len(image_urls):
|
|
|
|
for item in self._tmdb_image_url(show_obj, image_type) or []:
|
|
|
|
image_urls.append(item[2])
|
|
|
|
|
|
|
|
elif 'banner_thumb' == image_type:
|
2014-03-13 12:20:45 +00:00
|
|
|
if getattr(indexer_show_obj, 'banner', None) is not None:
|
2014-03-10 05:18:05 +00:00
|
|
|
image_url = re.sub('graphical', '_cache/graphical', indexer_show_obj['banner'])
|
Add fanart to Episodes View, Display Show, Edit Show, and Media Renamer page.
Add "Maximum fanart image files per show to cache" to config General/Interface.
Add populate images when the daily show updater is run with a default maximum 3 images per show.
Change force full update in a show will replace existing images with new.
Add fanart livepanel to lower right of Episodes View and Display Show page.
Add highlight panel red until button is clicked a few times.
Add flick through multiple background images on Episodes View and Display Show page.
Add persistent move poster image to right hand side or hide on Display Show page (multi-click the eye).
Add persistent translucency of background images on Episodes View and Display Show page.
Add persistent fanart rating to avoid art completely, random display, random from a group, or display fave always.
Add persistent views of the show detail on Display Show page.
Add persistent views on Episodes View.
Add persistent button to collapse and expand card images on Episode View/Layout daybyday.
Add non persistent "Open gear" and "Full fanart" image views to Episodes View and Display Show page.
Add "smart" selection of fanart image to display on Episode view.
Change insert [!] and change text shade of ended shows in drop down show list on Display Show page.
Change button graphic for next and previous show of show list on Display Show page.
Add logic to hide some livepanel buttons until artwork becomes available or in other circumstances.
Add "(Ended)" where appropriate to show title on Display Show page.
Add links to fanart.tv where appropriate on Display Show page.
Change use tense for label "Airs" or "Aired" depending on if show ended.
Change display "No files" instead of "0 files" and "Upgrade once" instead of "End upgrade on first match".
Add persistent button to newest season to "Show all" episodes.
Add persistent button to all shown seasons to "Hide most" episodes.
Add button to older seasons to toggle "Show Season n" or "Show Specials" with "Hide..." episodes.
Add season level status counts next to each season header on display show page
Add sorting to season table headers on display show page
Add filename and size to quality badge on display show page, removed its redundant "downloaded" text
Remove redundant "Add show" buttons
Change combine the NFO and TBN columns into a single Meta column
Change reduce screen estate used by episode numbers columns
Change improve clarity of text on Add Show page.
Add "Reset fanart ratings" to show Edit/Other tab.
Add fanart usage to show Edit/Other tab.
Add fanart keys guide to show Edit/Other tab.
Change add placeholder tip to "Alternative release name(s)" on show Edit.
Change add placeholder tip to search box on shows Search.
Change hide Anime tips on show Edit when selecting its mutually exclusive options.
Change label "End upgrade on first match" to "Upgrade once" on show Edit.
Change improve performance rendering displayShow.
Add total episodes to start of show description (excludes specials if those are hidden).
Add "Add show" actions i.e. "Search", "Trakt cards", "IMDb cards", and "Anime" to Shows menu.
Add "Import (existing)" action to Tools menu.
Change SD quality from red to dark green, 2160p UHD 4K is red.
Change relocate the functions of Logs & Errors to the right side Tools menu -> View Log File.
Add warning indicator to the Tools menu in different colour depending on error count (green through red).
Change View Log error item output from reversed to natural order.
Change View Log add a typeface and some colour to improve readability.
Change View Log/Errors only display "Clear Errors" button when there are errors to clear.
Change improve performance of View Log File.
2016-02-28 23:43:40 +00:00
|
|
|
if image_url:
|
|
|
|
image_urls.append(image_url)
|
|
|
|
for item in self._fanart_urls_from_show(show_obj, image_type, indexer_lang, True) or []:
|
|
|
|
image_urls.append(item[2])
|
2014-03-13 12:20:45 +00:00
|
|
|
else:
|
Add fanart to Episodes View, Display Show, Edit Show, and Media Renamer page.
Add "Maximum fanart image files per show to cache" to config General/Interface.
Add populate images when the daily show updater is run with a default maximum 3 images per show.
Change force full update in a show will replace existing images with new.
Add fanart livepanel to lower right of Episodes View and Display Show page.
Add highlight panel red until button is clicked a few times.
Add flick through multiple background images on Episodes View and Display Show page.
Add persistent move poster image to right hand side or hide on Display Show page (multi-click the eye).
Add persistent translucency of background images on Episodes View and Display Show page.
Add persistent fanart rating to avoid art completely, random display, random from a group, or display fave always.
Add persistent views of the show detail on Display Show page.
Add persistent views on Episodes View.
Add persistent button to collapse and expand card images on Episode View/Layout daybyday.
Add non persistent "Open gear" and "Full fanart" image views to Episodes View and Display Show page.
Add "smart" selection of fanart image to display on Episode view.
Change insert [!] and change text shade of ended shows in drop down show list on Display Show page.
Change button graphic for next and previous show of show list on Display Show page.
Add logic to hide some livepanel buttons until artwork becomes available or in other circumstances.
Add "(Ended)" where appropriate to show title on Display Show page.
Add links to fanart.tv where appropriate on Display Show page.
Change use tense for label "Airs" or "Aired" depending on if show ended.
Change display "No files" instead of "0 files" and "Upgrade once" instead of "End upgrade on first match".
Add persistent button to newest season to "Show all" episodes.
Add persistent button to all shown seasons to "Hide most" episodes.
Add button to older seasons to toggle "Show Season n" or "Show Specials" with "Hide..." episodes.
Add season level status counts next to each season header on display show page
Add sorting to season table headers on display show page
Add filename and size to quality badge on display show page, removed its redundant "downloaded" text
Remove redundant "Add show" buttons
Change combine the NFO and TBN columns into a single Meta column
Change reduce screen estate used by episode numbers columns
Change improve clarity of text on Add Show page.
Add "Reset fanart ratings" to show Edit/Other tab.
Add fanart usage to show Edit/Other tab.
Add fanart keys guide to show Edit/Other tab.
Change add placeholder tip to "Alternative release name(s)" on show Edit.
Change add placeholder tip to search box on shows Search.
Change hide Anime tips on show Edit when selecting its mutually exclusive options.
Change label "End upgrade on first match" to "Upgrade once" on show Edit.
Change improve performance rendering displayShow.
Add total episodes to start of show description (excludes specials if those are hidden).
Add "Add show" actions i.e. "Search", "Trakt cards", "IMDb cards", and "Anime" to Shows menu.
Add "Import (existing)" action to Tools menu.
Change SD quality from red to dark green, 2160p UHD 4K is red.
Change relocate the functions of Logs & Errors to the right side Tools menu -> View Log File.
Add warning indicator to the Tools menu in different colour depending on error count (green through red).
Change View Log error item output from reversed to natural order.
Change View Log add a typeface and some colour to improve readability.
Change View Log/Errors only display "Clear Errors" button when there are errors to clear.
Change improve performance of View Log File.
2016-02-28 23:43:40 +00:00
|
|
|
for item in self._fanart_urls_from_show(show_obj, image_type, indexer_lang) or []:
|
|
|
|
image_urls.append(item[2])
|
|
|
|
|
2014-03-14 03:07:15 +00:00
|
|
|
if getattr(indexer_show_obj, image_type, None) is not None:
|
2014-03-10 05:18:05 +00:00
|
|
|
image_url = indexer_show_obj[image_type]
|
Add fanart to Episodes View, Display Show, Edit Show, and Media Renamer page.
Add "Maximum fanart image files per show to cache" to config General/Interface.
Add populate images when the daily show updater is run with a default maximum 3 images per show.
Change force full update in a show will replace existing images with new.
Add fanart livepanel to lower right of Episodes View and Display Show page.
Add highlight panel red until button is clicked a few times.
Add flick through multiple background images on Episodes View and Display Show page.
Add persistent move poster image to right hand side or hide on Display Show page (multi-click the eye).
Add persistent translucency of background images on Episodes View and Display Show page.
Add persistent fanart rating to avoid art completely, random display, random from a group, or display fave always.
Add persistent views of the show detail on Display Show page.
Add persistent views on Episodes View.
Add persistent button to collapse and expand card images on Episode View/Layout daybyday.
Add non persistent "Open gear" and "Full fanart" image views to Episodes View and Display Show page.
Add "smart" selection of fanart image to display on Episode view.
Change insert [!] and change text shade of ended shows in drop down show list on Display Show page.
Change button graphic for next and previous show of show list on Display Show page.
Add logic to hide some livepanel buttons until artwork becomes available or in other circumstances.
Add "(Ended)" where appropriate to show title on Display Show page.
Add links to fanart.tv where appropriate on Display Show page.
Change use tense for label "Airs" or "Aired" depending on if show ended.
Change display "No files" instead of "0 files" and "Upgrade once" instead of "End upgrade on first match".
Add persistent button to newest season to "Show all" episodes.
Add persistent button to all shown seasons to "Hide most" episodes.
Add button to older seasons to toggle "Show Season n" or "Show Specials" with "Hide..." episodes.
Add season level status counts next to each season header on display show page
Add sorting to season table headers on display show page
Add filename and size to quality badge on display show page, removed its redundant "downloaded" text
Remove redundant "Add show" buttons
Change combine the NFO and TBN columns into a single Meta column
Change reduce screen estate used by episode numbers columns
Change improve clarity of text on Add Show page.
Add "Reset fanart ratings" to show Edit/Other tab.
Add fanart usage to show Edit/Other tab.
Add fanart keys guide to show Edit/Other tab.
Change add placeholder tip to "Alternative release name(s)" on show Edit.
Change add placeholder tip to search box on shows Search.
Change hide Anime tips on show Edit when selecting its mutually exclusive options.
Change label "End upgrade on first match" to "Upgrade once" on show Edit.
Change improve performance rendering displayShow.
Add total episodes to start of show description (excludes specials if those are hidden).
Add "Add show" actions i.e. "Search", "Trakt cards", "IMDb cards", and "Anime" to Shows menu.
Add "Import (existing)" action to Tools menu.
Change SD quality from red to dark green, 2160p UHD 4K is red.
Change relocate the functions of Logs & Errors to the right side Tools menu -> View Log File.
Add warning indicator to the Tools menu in different colour depending on error count (green through red).
Change View Log error item output from reversed to natural order.
Change View Log add a typeface and some colour to improve readability.
Change View Log/Errors only display "Clear Errors" button when there are errors to clear.
Change improve performance of View Log File.
2016-02-28 23:43:40 +00:00
|
|
|
if image_url:
|
|
|
|
image_urls.append(image_url)
|
|
|
|
if 'poster' == image_type:
|
|
|
|
init_url = image_url
|
|
|
|
|
|
|
|
if 0 == len(image_urls) or 'fanart' == image_type:
|
|
|
|
for item in self._tmdb_image_url(show_obj, image_type) or []:
|
|
|
|
image_urls.append('%s?%s' % (item[2], item[0]))
|
|
|
|
|
|
|
|
image_data = len(image_urls) or None
|
|
|
|
if image_data:
|
|
|
|
if return_links:
|
|
|
|
return image_urls
|
|
|
|
else:
|
2017-07-17 19:29:32 +00:00
|
|
|
image_data = metadata_helpers.getShowImage((init_url, image_urls[0])[None is init_url], which, show_obj.name)
|
2014-03-10 05:18:05 +00:00
|
|
|
|
Add fanart to Episodes View, Display Show, Edit Show, and Media Renamer page.
Add "Maximum fanart image files per show to cache" to config General/Interface.
Add populate images when the daily show updater is run with a default maximum 3 images per show.
Change force full update in a show will replace existing images with new.
Add fanart livepanel to lower right of Episodes View and Display Show page.
Add highlight panel red until button is clicked a few times.
Add flick through multiple background images on Episodes View and Display Show page.
Add persistent move poster image to right hand side or hide on Display Show page (multi-click the eye).
Add persistent translucency of background images on Episodes View and Display Show page.
Add persistent fanart rating to avoid art completely, random display, random from a group, or display fave always.
Add persistent views of the show detail on Display Show page.
Add persistent views on Episodes View.
Add persistent button to collapse and expand card images on Episode View/Layout daybyday.
Add non persistent "Open gear" and "Full fanart" image views to Episodes View and Display Show page.
Add "smart" selection of fanart image to display on Episode view.
Change insert [!] and change text shade of ended shows in drop down show list on Display Show page.
Change button graphic for next and previous show of show list on Display Show page.
Add logic to hide some livepanel buttons until artwork becomes available or in other circumstances.
Add "(Ended)" where appropriate to show title on Display Show page.
Add links to fanart.tv where appropriate on Display Show page.
Change use tense for label "Airs" or "Aired" depending on if show ended.
Change display "No files" instead of "0 files" and "Upgrade once" instead of "End upgrade on first match".
Add persistent button to newest season to "Show all" episodes.
Add persistent button to all shown seasons to "Hide most" episodes.
Add button to older seasons to toggle "Show Season n" or "Show Specials" with "Hide..." episodes.
Add season level status counts next to each season header on display show page
Add sorting to season table headers on display show page
Add filename and size to quality badge on display show page, removed its redundant "downloaded" text
Remove redundant "Add show" buttons
Change combine the NFO and TBN columns into a single Meta column
Change reduce screen estate used by episode numbers columns
Change improve clarity of text on Add Show page.
Add "Reset fanart ratings" to show Edit/Other tab.
Add fanart usage to show Edit/Other tab.
Add fanart keys guide to show Edit/Other tab.
Change add placeholder tip to "Alternative release name(s)" on show Edit.
Change add placeholder tip to search box on shows Search.
Change hide Anime tips on show Edit when selecting its mutually exclusive options.
Change label "End upgrade on first match" to "Upgrade once" on show Edit.
Change improve performance rendering displayShow.
Add total episodes to start of show description (excludes specials if those are hidden).
Add "Add show" actions i.e. "Search", "Trakt cards", "IMDb cards", and "Anime" to Shows menu.
Add "Import (existing)" action to Tools menu.
Change SD quality from red to dark green, 2160p UHD 4K is red.
Change relocate the functions of Logs & Errors to the right side Tools menu -> View Log File.
Add warning indicator to the Tools menu in different colour depending on error count (green through red).
Change View Log error item output from reversed to natural order.
Change View Log add a typeface and some colour to improve readability.
Change View Log/Errors only display "Clear Errors" button when there are errors to clear.
Change improve performance of View Log File.
2016-02-28 23:43:40 +00:00
|
|
|
if None is not image_data:
|
2014-03-13 12:20:45 +00:00
|
|
|
return image_data
|
|
|
|
|
|
|
|
return None
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2018-04-07 19:49:12 +00:00
|
|
|
def _season_image_dict(self, show_obj, season, image_type):
|
2014-03-10 05:18:05 +00:00
|
|
|
"""
|
2017-12-09 03:53:22 +00:00
|
|
|
image_type : Type of image to fetch, 'seasons' or 'seasonwides'
|
|
|
|
image_type type : String
|
2014-03-10 05:18:05 +00:00
|
|
|
|
|
|
|
Should return a dict like:
|
|
|
|
|
|
|
|
result = {<season number>:
|
|
|
|
{1: '<url 1>', 2: <url 2>, ...},}
|
|
|
|
"""
|
|
|
|
result = {}
|
|
|
|
|
|
|
|
try:
|
|
|
|
# There's gotta be a better way of doing this but we don't wanna
|
|
|
|
# change the language value elsewhere
|
2014-03-26 19:28:46 +00:00
|
|
|
lINDEXER_API_PARMS = sickbeard.indexerApi(show_obj.indexer).api_params.copy()
|
2017-12-09 03:53:22 +00:00
|
|
|
lINDEXER_API_PARMS[image_type] = True
|
Add fanart to Episodes View, Display Show, Edit Show, and Media Renamer page.
Add "Maximum fanart image files per show to cache" to config General/Interface.
Add populate images when the daily show updater is run with a default maximum 3 images per show.
Change force full update in a show will replace existing images with new.
Add fanart livepanel to lower right of Episodes View and Display Show page.
Add highlight panel red until button is clicked a few times.
Add flick through multiple background images on Episodes View and Display Show page.
Add persistent move poster image to right hand side or hide on Display Show page (multi-click the eye).
Add persistent translucency of background images on Episodes View and Display Show page.
Add persistent fanart rating to avoid art completely, random display, random from a group, or display fave always.
Add persistent views of the show detail on Display Show page.
Add persistent views on Episodes View.
Add persistent button to collapse and expand card images on Episode View/Layout daybyday.
Add non persistent "Open gear" and "Full fanart" image views to Episodes View and Display Show page.
Add "smart" selection of fanart image to display on Episode view.
Change insert [!] and change text shade of ended shows in drop down show list on Display Show page.
Change button graphic for next and previous show of show list on Display Show page.
Add logic to hide some livepanel buttons until artwork becomes available or in other circumstances.
Add "(Ended)" where appropriate to show title on Display Show page.
Add links to fanart.tv where appropriate on Display Show page.
Change use tense for label "Airs" or "Aired" depending on if show ended.
Change display "No files" instead of "0 files" and "Upgrade once" instead of "End upgrade on first match".
Add persistent button to newest season to "Show all" episodes.
Add persistent button to all shown seasons to "Hide most" episodes.
Add button to older seasons to toggle "Show Season n" or "Show Specials" with "Hide..." episodes.
Add season level status counts next to each season header on display show page
Add sorting to season table headers on display show page
Add filename and size to quality badge on display show page, removed its redundant "downloaded" text
Remove redundant "Add show" buttons
Change combine the NFO and TBN columns into a single Meta column
Change reduce screen estate used by episode numbers columns
Change improve clarity of text on Add Show page.
Add "Reset fanart ratings" to show Edit/Other tab.
Add fanart usage to show Edit/Other tab.
Add fanart keys guide to show Edit/Other tab.
Change add placeholder tip to "Alternative release name(s)" on show Edit.
Change add placeholder tip to search box on shows Search.
Change hide Anime tips on show Edit when selecting its mutually exclusive options.
Change label "End upgrade on first match" to "Upgrade once" on show Edit.
Change improve performance rendering displayShow.
Add total episodes to start of show description (excludes specials if those are hidden).
Add "Add show" actions i.e. "Search", "Trakt cards", "IMDb cards", and "Anime" to Shows menu.
Add "Import (existing)" action to Tools menu.
Change SD quality from red to dark green, 2160p UHD 4K is red.
Change relocate the functions of Logs & Errors to the right side Tools menu -> View Log File.
Add warning indicator to the Tools menu in different colour depending on error count (green through red).
Change View Log error item output from reversed to natural order.
Change View Log add a typeface and some colour to improve readability.
Change View Log/Errors only display "Clear Errors" button when there are errors to clear.
Change improve performance of View Log File.
2016-02-28 23:43:40 +00:00
|
|
|
lINDEXER_API_PARMS['dvdorder'] = 0 != show_obj.dvdorder
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2017-12-09 03:53:22 +00:00
|
|
|
if 'en' != getattr(show_obj, 'lang', None):
|
|
|
|
lINDEXER_API_PARMS['language'] = show_obj.lang
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2014-03-26 19:28:46 +00:00
|
|
|
t = sickbeard.indexerApi(show_obj.indexer).indexer(**lINDEXER_API_PARMS)
|
2014-03-10 05:18:05 +00:00
|
|
|
indexer_show_obj = t[show_obj.indexerid]
|
2015-06-08 12:47:01 +00:00
|
|
|
except (sickbeard.indexer_error, IOError) as e:
|
2017-12-09 03:53:22 +00:00
|
|
|
logger.log(u'Unable to look up show on ' + sickbeard.indexerApi(
|
2018-05-14 00:03:33 +00:00
|
|
|
show_obj.indexer).name + ', not downloading images: ' + ex(e), logger.WARNING)
|
2014-03-27 09:42:00 +00:00
|
|
|
return result
|
|
|
|
|
2018-04-07 19:49:12 +00:00
|
|
|
if not self._valid_show(indexer_show_obj, show_obj):
|
2018-04-06 23:14:13 +00:00
|
|
|
return result
|
|
|
|
|
2017-12-09 03:53:22 +00:00
|
|
|
season_images = getattr(indexer_show_obj, '_banners', {}).get(
|
|
|
|
('season', 'seasonwide')['seasonwides' == image_type], {}).get(season, {})
|
|
|
|
for image_id in season_images.keys():
|
|
|
|
if season not in result:
|
|
|
|
result[season] = {}
|
|
|
|
result[season][image_id] = season_images[image_id]['_bannerpath']
|
2014-03-10 05:18:05 +00:00
|
|
|
|
|
|
|
return result
|
|
|
|
|
|
|
|
def retrieveShowMetadata(self, folder):
|
|
|
|
"""
|
|
|
|
Used only when mass adding Existing Shows, using previously generated Show metadata to reduce the need to query TVDB.
|
|
|
|
"""
|
|
|
|
|
2016-02-07 17:57:48 +00:00
|
|
|
from sickbeard.indexers.indexer_config import INDEXER_TVDB
|
|
|
|
|
2014-03-10 05:18:05 +00:00
|
|
|
empty_return = (None, None, None)
|
|
|
|
|
|
|
|
metadata_path = ek.ek(os.path.join, folder, self._show_metadata_filename)
|
|
|
|
|
|
|
|
if not ek.ek(os.path.isdir, folder) or not ek.ek(os.path.isfile, metadata_path):
|
|
|
|
logger.log(u"Can't load the metadata file from " + repr(metadata_path) + ", it doesn't exist", logger.DEBUG)
|
|
|
|
return empty_return
|
|
|
|
|
|
|
|
logger.log(u"Loading show info from metadata file in " + folder, logger.DEBUG)
|
|
|
|
|
|
|
|
try:
|
|
|
|
with ek.ek(open, metadata_path, 'r') as xmlFileObj:
|
|
|
|
showXML = etree.ElementTree(file=xmlFileObj)
|
|
|
|
|
2014-03-25 05:57:24 +00:00
|
|
|
if showXML.findtext('title') == None \
|
|
|
|
or (showXML.findtext('tvdbid') == None
|
|
|
|
and showXML.findtext('id') == None) \
|
|
|
|
and showXML.findtext('indexer') == None:
|
2014-03-10 05:18:05 +00:00
|
|
|
logger.log(u"Invalid info in tvshow.nfo (missing name or id):" \
|
2014-03-25 05:57:24 +00:00
|
|
|
+ str(showXML.findtext('title')) + " " \
|
|
|
|
+ str(showXML.findtext('indexer')) + " " \
|
|
|
|
+ str(showXML.findtext('tvdbid')) + " " \
|
|
|
|
+ str(showXML.findtext('id')))
|
2014-03-10 05:18:05 +00:00
|
|
|
return empty_return
|
|
|
|
|
|
|
|
name = showXML.findtext('title')
|
2014-03-25 05:57:24 +00:00
|
|
|
|
|
|
|
try:
|
|
|
|
indexer = int(showXML.findtext('indexer'))
|
|
|
|
except:
|
|
|
|
indexer = None
|
|
|
|
|
Add fanart to Episodes View, Display Show, Edit Show, and Media Renamer page.
Add "Maximum fanart image files per show to cache" to config General/Interface.
Add populate images when the daily show updater is run with a default maximum 3 images per show.
Change force full update in a show will replace existing images with new.
Add fanart livepanel to lower right of Episodes View and Display Show page.
Add highlight panel red until button is clicked a few times.
Add flick through multiple background images on Episodes View and Display Show page.
Add persistent move poster image to right hand side or hide on Display Show page (multi-click the eye).
Add persistent translucency of background images on Episodes View and Display Show page.
Add persistent fanart rating to avoid art completely, random display, random from a group, or display fave always.
Add persistent views of the show detail on Display Show page.
Add persistent views on Episodes View.
Add persistent button to collapse and expand card images on Episode View/Layout daybyday.
Add non persistent "Open gear" and "Full fanart" image views to Episodes View and Display Show page.
Add "smart" selection of fanart image to display on Episode view.
Change insert [!] and change text shade of ended shows in drop down show list on Display Show page.
Change button graphic for next and previous show of show list on Display Show page.
Add logic to hide some livepanel buttons until artwork becomes available or in other circumstances.
Add "(Ended)" where appropriate to show title on Display Show page.
Add links to fanart.tv where appropriate on Display Show page.
Change use tense for label "Airs" or "Aired" depending on if show ended.
Change display "No files" instead of "0 files" and "Upgrade once" instead of "End upgrade on first match".
Add persistent button to newest season to "Show all" episodes.
Add persistent button to all shown seasons to "Hide most" episodes.
Add button to older seasons to toggle "Show Season n" or "Show Specials" with "Hide..." episodes.
Add season level status counts next to each season header on display show page
Add sorting to season table headers on display show page
Add filename and size to quality badge on display show page, removed its redundant "downloaded" text
Remove redundant "Add show" buttons
Change combine the NFO and TBN columns into a single Meta column
Change reduce screen estate used by episode numbers columns
Change improve clarity of text on Add Show page.
Add "Reset fanart ratings" to show Edit/Other tab.
Add fanart usage to show Edit/Other tab.
Add fanart keys guide to show Edit/Other tab.
Change add placeholder tip to "Alternative release name(s)" on show Edit.
Change add placeholder tip to search box on shows Search.
Change hide Anime tips on show Edit when selecting its mutually exclusive options.
Change label "End upgrade on first match" to "Upgrade once" on show Edit.
Change improve performance rendering displayShow.
Add total episodes to start of show description (excludes specials if those are hidden).
Add "Add show" actions i.e. "Search", "Trakt cards", "IMDb cards", and "Anime" to Shows menu.
Add "Import (existing)" action to Tools menu.
Change SD quality from red to dark green, 2160p UHD 4K is red.
Change relocate the functions of Logs & Errors to the right side Tools menu -> View Log File.
Add warning indicator to the Tools menu in different colour depending on error count (green through red).
Change View Log error item output from reversed to natural order.
Change View Log add a typeface and some colour to improve readability.
Change View Log/Errors only display "Clear Errors" button when there are errors to clear.
Change improve performance of View Log File.
2016-02-28 23:43:40 +00:00
|
|
|
if None is not showXML.findtext('tvdbid'):
|
2014-03-10 05:18:05 +00:00
|
|
|
indexer_id = int(showXML.findtext('tvdbid'))
|
2016-02-07 17:57:48 +00:00
|
|
|
indexer = INDEXER_TVDB
|
Add fanart to Episodes View, Display Show, Edit Show, and Media Renamer page.
Add "Maximum fanart image files per show to cache" to config General/Interface.
Add populate images when the daily show updater is run with a default maximum 3 images per show.
Change force full update in a show will replace existing images with new.
Add fanart livepanel to lower right of Episodes View and Display Show page.
Add highlight panel red until button is clicked a few times.
Add flick through multiple background images on Episodes View and Display Show page.
Add persistent move poster image to right hand side or hide on Display Show page (multi-click the eye).
Add persistent translucency of background images on Episodes View and Display Show page.
Add persistent fanart rating to avoid art completely, random display, random from a group, or display fave always.
Add persistent views of the show detail on Display Show page.
Add persistent views on Episodes View.
Add persistent button to collapse and expand card images on Episode View/Layout daybyday.
Add non persistent "Open gear" and "Full fanart" image views to Episodes View and Display Show page.
Add "smart" selection of fanart image to display on Episode view.
Change insert [!] and change text shade of ended shows in drop down show list on Display Show page.
Change button graphic for next and previous show of show list on Display Show page.
Add logic to hide some livepanel buttons until artwork becomes available or in other circumstances.
Add "(Ended)" where appropriate to show title on Display Show page.
Add links to fanart.tv where appropriate on Display Show page.
Change use tense for label "Airs" or "Aired" depending on if show ended.
Change display "No files" instead of "0 files" and "Upgrade once" instead of "End upgrade on first match".
Add persistent button to newest season to "Show all" episodes.
Add persistent button to all shown seasons to "Hide most" episodes.
Add button to older seasons to toggle "Show Season n" or "Show Specials" with "Hide..." episodes.
Add season level status counts next to each season header on display show page
Add sorting to season table headers on display show page
Add filename and size to quality badge on display show page, removed its redundant "downloaded" text
Remove redundant "Add show" buttons
Change combine the NFO and TBN columns into a single Meta column
Change reduce screen estate used by episode numbers columns
Change improve clarity of text on Add Show page.
Add "Reset fanart ratings" to show Edit/Other tab.
Add fanart usage to show Edit/Other tab.
Add fanart keys guide to show Edit/Other tab.
Change add placeholder tip to "Alternative release name(s)" on show Edit.
Change add placeholder tip to search box on shows Search.
Change hide Anime tips on show Edit when selecting its mutually exclusive options.
Change label "End upgrade on first match" to "Upgrade once" on show Edit.
Change improve performance rendering displayShow.
Add total episodes to start of show description (excludes specials if those are hidden).
Add "Add show" actions i.e. "Search", "Trakt cards", "IMDb cards", and "Anime" to Shows menu.
Add "Import (existing)" action to Tools menu.
Change SD quality from red to dark green, 2160p UHD 4K is red.
Change relocate the functions of Logs & Errors to the right side Tools menu -> View Log File.
Add warning indicator to the Tools menu in different colour depending on error count (green through red).
Change View Log error item output from reversed to natural order.
Change View Log add a typeface and some colour to improve readability.
Change View Log/Errors only display "Clear Errors" button when there are errors to clear.
Change improve performance of View Log File.
2016-02-28 23:43:40 +00:00
|
|
|
elif None is not showXML.findtext('id'):
|
2014-03-10 05:18:05 +00:00
|
|
|
indexer_id = int(showXML.findtext('id'))
|
2016-02-07 17:57:48 +00:00
|
|
|
try:
|
|
|
|
indexer = INDEXER_TVDB if [s for s in showXML.findall('.//*') if s.text and s.text.find('thetvdb.com') != -1] else indexer
|
|
|
|
except:
|
|
|
|
pass
|
2014-03-10 05:18:05 +00:00
|
|
|
else:
|
|
|
|
logger.log(u"Empty <id> or <tvdbid> field in NFO, unable to find a ID", logger.WARNING)
|
|
|
|
return empty_return
|
|
|
|
|
|
|
|
if indexer_id is None:
|
2014-04-27 10:58:49 +00:00
|
|
|
logger.log(u"Invalid Indexer ID (" + str(indexer_id) + "), not using metadata file", logger.WARNING)
|
2014-03-10 05:18:05 +00:00
|
|
|
return empty_return
|
|
|
|
|
2015-06-08 12:47:01 +00:00
|
|
|
except Exception as e:
|
2014-03-25 05:57:24 +00:00
|
|
|
logger.log(
|
|
|
|
u"There was an error parsing your existing metadata file: '" + metadata_path + "' error: " + ex(e),
|
|
|
|
logger.WARNING)
|
2014-03-10 05:18:05 +00:00
|
|
|
return empty_return
|
|
|
|
|
|
|
|
return (indexer_id, name, indexer)
|
2014-03-13 12:20:45 +00:00
|
|
|
|
Add fanart to Episodes View, Display Show, Edit Show, and Media Renamer page.
Add "Maximum fanart image files per show to cache" to config General/Interface.
Add populate images when the daily show updater is run with a default maximum 3 images per show.
Change force full update in a show will replace existing images with new.
Add fanart livepanel to lower right of Episodes View and Display Show page.
Add highlight panel red until button is clicked a few times.
Add flick through multiple background images on Episodes View and Display Show page.
Add persistent move poster image to right hand side or hide on Display Show page (multi-click the eye).
Add persistent translucency of background images on Episodes View and Display Show page.
Add persistent fanart rating to avoid art completely, random display, random from a group, or display fave always.
Add persistent views of the show detail on Display Show page.
Add persistent views on Episodes View.
Add persistent button to collapse and expand card images on Episode View/Layout daybyday.
Add non persistent "Open gear" and "Full fanart" image views to Episodes View and Display Show page.
Add "smart" selection of fanart image to display on Episode view.
Change insert [!] and change text shade of ended shows in drop down show list on Display Show page.
Change button graphic for next and previous show of show list on Display Show page.
Add logic to hide some livepanel buttons until artwork becomes available or in other circumstances.
Add "(Ended)" where appropriate to show title on Display Show page.
Add links to fanart.tv where appropriate on Display Show page.
Change use tense for label "Airs" or "Aired" depending on if show ended.
Change display "No files" instead of "0 files" and "Upgrade once" instead of "End upgrade on first match".
Add persistent button to newest season to "Show all" episodes.
Add persistent button to all shown seasons to "Hide most" episodes.
Add button to older seasons to toggle "Show Season n" or "Show Specials" with "Hide..." episodes.
Add season level status counts next to each season header on display show page
Add sorting to season table headers on display show page
Add filename and size to quality badge on display show page, removed its redundant "downloaded" text
Remove redundant "Add show" buttons
Change combine the NFO and TBN columns into a single Meta column
Change reduce screen estate used by episode numbers columns
Change improve clarity of text on Add Show page.
Add "Reset fanart ratings" to show Edit/Other tab.
Add fanart usage to show Edit/Other tab.
Add fanart keys guide to show Edit/Other tab.
Change add placeholder tip to "Alternative release name(s)" on show Edit.
Change add placeholder tip to search box on shows Search.
Change hide Anime tips on show Edit when selecting its mutually exclusive options.
Change label "End upgrade on first match" to "Upgrade once" on show Edit.
Change improve performance rendering displayShow.
Add total episodes to start of show description (excludes specials if those are hidden).
Add "Add show" actions i.e. "Search", "Trakt cards", "IMDb cards", and "Anime" to Shows menu.
Add "Import (existing)" action to Tools menu.
Change SD quality from red to dark green, 2160p UHD 4K is red.
Change relocate the functions of Logs & Errors to the right side Tools menu -> View Log File.
Add warning indicator to the Tools menu in different colour depending on error count (green through red).
Change View Log error item output from reversed to natural order.
Change View Log add a typeface and some colour to improve readability.
Change View Log/Errors only display "Clear Errors" button when there are errors to clear.
Change improve performance of View Log File.
2016-02-28 23:43:40 +00:00
|
|
|
@staticmethod
|
|
|
|
def _tmdb_image_url(show, image_type):
|
|
|
|
types = {'poster': 'poster_path',
|
|
|
|
'banner': None,
|
|
|
|
'fanart': 'backdrop_path',
|
|
|
|
'fanart_all': 'backdrops',
|
|
|
|
'poster_thumb': 'poster_path',
|
|
|
|
'banner_thumb': None}
|
|
|
|
|
2014-03-13 12:20:45 +00:00
|
|
|
# get TMDB configuration info
|
2014-05-28 21:13:29 +00:00
|
|
|
tmdb = TMDB(sickbeard.TMDB_API_KEY)
|
2014-03-13 12:20:45 +00:00
|
|
|
config = tmdb.Configuration()
|
|
|
|
response = config.info()
|
|
|
|
base_url = response['images']['base_url']
|
|
|
|
sizes = response['images']['poster_sizes']
|
|
|
|
|
|
|
|
def size_str_to_int(x):
|
Add fanart to Episodes View, Display Show, Edit Show, and Media Renamer page.
Add "Maximum fanart image files per show to cache" to config General/Interface.
Add populate images when the daily show updater is run with a default maximum 3 images per show.
Change force full update in a show will replace existing images with new.
Add fanart livepanel to lower right of Episodes View and Display Show page.
Add highlight panel red until button is clicked a few times.
Add flick through multiple background images on Episodes View and Display Show page.
Add persistent move poster image to right hand side or hide on Display Show page (multi-click the eye).
Add persistent translucency of background images on Episodes View and Display Show page.
Add persistent fanart rating to avoid art completely, random display, random from a group, or display fave always.
Add persistent views of the show detail on Display Show page.
Add persistent views on Episodes View.
Add persistent button to collapse and expand card images on Episode View/Layout daybyday.
Add non persistent "Open gear" and "Full fanart" image views to Episodes View and Display Show page.
Add "smart" selection of fanart image to display on Episode view.
Change insert [!] and change text shade of ended shows in drop down show list on Display Show page.
Change button graphic for next and previous show of show list on Display Show page.
Add logic to hide some livepanel buttons until artwork becomes available or in other circumstances.
Add "(Ended)" where appropriate to show title on Display Show page.
Add links to fanart.tv where appropriate on Display Show page.
Change use tense for label "Airs" or "Aired" depending on if show ended.
Change display "No files" instead of "0 files" and "Upgrade once" instead of "End upgrade on first match".
Add persistent button to newest season to "Show all" episodes.
Add persistent button to all shown seasons to "Hide most" episodes.
Add button to older seasons to toggle "Show Season n" or "Show Specials" with "Hide..." episodes.
Add season level status counts next to each season header on display show page
Add sorting to season table headers on display show page
Add filename and size to quality badge on display show page, removed its redundant "downloaded" text
Remove redundant "Add show" buttons
Change combine the NFO and TBN columns into a single Meta column
Change reduce screen estate used by episode numbers columns
Change improve clarity of text on Add Show page.
Add "Reset fanart ratings" to show Edit/Other tab.
Add fanart usage to show Edit/Other tab.
Add fanart keys guide to show Edit/Other tab.
Change add placeholder tip to "Alternative release name(s)" on show Edit.
Change add placeholder tip to search box on shows Search.
Change hide Anime tips on show Edit when selecting its mutually exclusive options.
Change label "End upgrade on first match" to "Upgrade once" on show Edit.
Change improve performance rendering displayShow.
Add total episodes to start of show description (excludes specials if those are hidden).
Add "Add show" actions i.e. "Search", "Trakt cards", "IMDb cards", and "Anime" to Shows menu.
Add "Import (existing)" action to Tools menu.
Change SD quality from red to dark green, 2160p UHD 4K is red.
Change relocate the functions of Logs & Errors to the right side Tools menu -> View Log File.
Add warning indicator to the Tools menu in different colour depending on error count (green through red).
Change View Log error item output from reversed to natural order.
Change View Log add a typeface and some colour to improve readability.
Change View Log/Errors only display "Clear Errors" button when there are errors to clear.
Change improve performance of View Log File.
2016-02-28 23:43:40 +00:00
|
|
|
return float('inf') if x == 'original' else int(x[1:])
|
2014-03-25 05:57:24 +00:00
|
|
|
|
2014-03-13 12:20:45 +00:00
|
|
|
max_size = max(sizes, key=size_str_to_int)
|
|
|
|
|
|
|
|
try:
|
Add fanart to Episodes View, Display Show, Edit Show, and Media Renamer page.
Add "Maximum fanart image files per show to cache" to config General/Interface.
Add populate images when the daily show updater is run with a default maximum 3 images per show.
Change force full update in a show will replace existing images with new.
Add fanart livepanel to lower right of Episodes View and Display Show page.
Add highlight panel red until button is clicked a few times.
Add flick through multiple background images on Episodes View and Display Show page.
Add persistent move poster image to right hand side or hide on Display Show page (multi-click the eye).
Add persistent translucency of background images on Episodes View and Display Show page.
Add persistent fanart rating to avoid art completely, random display, random from a group, or display fave always.
Add persistent views of the show detail on Display Show page.
Add persistent views on Episodes View.
Add persistent button to collapse and expand card images on Episode View/Layout daybyday.
Add non persistent "Open gear" and "Full fanart" image views to Episodes View and Display Show page.
Add "smart" selection of fanart image to display on Episode view.
Change insert [!] and change text shade of ended shows in drop down show list on Display Show page.
Change button graphic for next and previous show of show list on Display Show page.
Add logic to hide some livepanel buttons until artwork becomes available or in other circumstances.
Add "(Ended)" where appropriate to show title on Display Show page.
Add links to fanart.tv where appropriate on Display Show page.
Change use tense for label "Airs" or "Aired" depending on if show ended.
Change display "No files" instead of "0 files" and "Upgrade once" instead of "End upgrade on first match".
Add persistent button to newest season to "Show all" episodes.
Add persistent button to all shown seasons to "Hide most" episodes.
Add button to older seasons to toggle "Show Season n" or "Show Specials" with "Hide..." episodes.
Add season level status counts next to each season header on display show page
Add sorting to season table headers on display show page
Add filename and size to quality badge on display show page, removed its redundant "downloaded" text
Remove redundant "Add show" buttons
Change combine the NFO and TBN columns into a single Meta column
Change reduce screen estate used by episode numbers columns
Change improve clarity of text on Add Show page.
Add "Reset fanart ratings" to show Edit/Other tab.
Add fanart usage to show Edit/Other tab.
Add fanart keys guide to show Edit/Other tab.
Change add placeholder tip to "Alternative release name(s)" on show Edit.
Change add placeholder tip to search box on shows Search.
Change hide Anime tips on show Edit when selecting its mutually exclusive options.
Change label "End upgrade on first match" to "Upgrade once" on show Edit.
Change improve performance rendering displayShow.
Add total episodes to start of show description (excludes specials if those are hidden).
Add "Add show" actions i.e. "Search", "Trakt cards", "IMDb cards", and "Anime" to Shows menu.
Add "Import (existing)" action to Tools menu.
Change SD quality from red to dark green, 2160p UHD 4K is red.
Change relocate the functions of Logs & Errors to the right side Tools menu -> View Log File.
Add warning indicator to the Tools menu in different colour depending on error count (green through red).
Change View Log error item output from reversed to natural order.
Change View Log add a typeface and some colour to improve readability.
Change View Log/Errors only display "Clear Errors" button when there are errors to clear.
Change improve performance of View Log File.
2016-02-28 23:43:40 +00:00
|
|
|
itemlist = []
|
|
|
|
for (src, name) in [(indexer_config.INDEXER_TVDB, 'tvdb'), (indexer_config.INDEXER_IMDB, 'imdb'),
|
|
|
|
(indexer_config.INDEXER_TVRAGE, 'tvrage')]:
|
|
|
|
is_id = show.ids.get(src, {}).get('id', None)
|
|
|
|
if not is_id:
|
|
|
|
continue
|
|
|
|
|
|
|
|
result = tmdb.Find(is_id).info({'external_source': '%s_id' % name})
|
|
|
|
if 'tv_results' not in result or not len(result['tv_results']):
|
|
|
|
continue
|
|
|
|
|
|
|
|
tmdb_show = result['tv_results'][0]
|
|
|
|
|
|
|
|
if 'fanart' == image_type:
|
|
|
|
tv_obj = tmdb.TV(tmdb_show['id'])
|
|
|
|
rjson_info = tv_obj.info({'append_to_response': 'images', 'include_image_language': 'en,null'})
|
|
|
|
rjson_img = rjson_info['images']
|
|
|
|
for art in rjson_img[types['fanart_all']] or []:
|
|
|
|
if 'vote_average' not in art or 'file_path' not in art:
|
|
|
|
continue
|
|
|
|
art_likes = art['vote_average']
|
|
|
|
url = u'%s%s%s' % (base_url, max_size, art['file_path'])
|
|
|
|
itemlist += [[tmdb_show['id'], art_likes, url]]
|
|
|
|
|
|
|
|
itemlist.sort(lambda a, b: cmp((a[1]), (b[1])), reverse=True)
|
|
|
|
return itemlist
|
|
|
|
|
|
|
|
elif tmdb_show[types[image_type]]:
|
|
|
|
return [[tmdb_show['id'], tmdb_show['vote_average'], '%s%s%s' % (base_url, max_size, tmdb_show[types[image_type]])]]
|
|
|
|
|
|
|
|
except (StandardError, Exception):
|
|
|
|
pass
|
2014-05-29 05:40:12 +00:00
|
|
|
|
Add fanart to Episodes View, Display Show, Edit Show, and Media Renamer page.
Add "Maximum fanart image files per show to cache" to config General/Interface.
Add populate images when the daily show updater is run with a default maximum 3 images per show.
Change force full update in a show will replace existing images with new.
Add fanart livepanel to lower right of Episodes View and Display Show page.
Add highlight panel red until button is clicked a few times.
Add flick through multiple background images on Episodes View and Display Show page.
Add persistent move poster image to right hand side or hide on Display Show page (multi-click the eye).
Add persistent translucency of background images on Episodes View and Display Show page.
Add persistent fanart rating to avoid art completely, random display, random from a group, or display fave always.
Add persistent views of the show detail on Display Show page.
Add persistent views on Episodes View.
Add persistent button to collapse and expand card images on Episode View/Layout daybyday.
Add non persistent "Open gear" and "Full fanart" image views to Episodes View and Display Show page.
Add "smart" selection of fanart image to display on Episode view.
Change insert [!] and change text shade of ended shows in drop down show list on Display Show page.
Change button graphic for next and previous show of show list on Display Show page.
Add logic to hide some livepanel buttons until artwork becomes available or in other circumstances.
Add "(Ended)" where appropriate to show title on Display Show page.
Add links to fanart.tv where appropriate on Display Show page.
Change use tense for label "Airs" or "Aired" depending on if show ended.
Change display "No files" instead of "0 files" and "Upgrade once" instead of "End upgrade on first match".
Add persistent button to newest season to "Show all" episodes.
Add persistent button to all shown seasons to "Hide most" episodes.
Add button to older seasons to toggle "Show Season n" or "Show Specials" with "Hide..." episodes.
Add season level status counts next to each season header on display show page
Add sorting to season table headers on display show page
Add filename and size to quality badge on display show page, removed its redundant "downloaded" text
Remove redundant "Add show" buttons
Change combine the NFO and TBN columns into a single Meta column
Change reduce screen estate used by episode numbers columns
Change improve clarity of text on Add Show page.
Add "Reset fanart ratings" to show Edit/Other tab.
Add fanart usage to show Edit/Other tab.
Add fanart keys guide to show Edit/Other tab.
Change add placeholder tip to "Alternative release name(s)" on show Edit.
Change add placeholder tip to search box on shows Search.
Change hide Anime tips on show Edit when selecting its mutually exclusive options.
Change label "End upgrade on first match" to "Upgrade once" on show Edit.
Change improve performance rendering displayShow.
Add total episodes to start of show description (excludes specials if those are hidden).
Add "Add show" actions i.e. "Search", "Trakt cards", "IMDb cards", and "Anime" to Shows menu.
Add "Import (existing)" action to Tools menu.
Change SD quality from red to dark green, 2160p UHD 4K is red.
Change relocate the functions of Logs & Errors to the right side Tools menu -> View Log File.
Add warning indicator to the Tools menu in different colour depending on error count (green through red).
Change View Log error item output from reversed to natural order.
Change View Log add a typeface and some colour to improve readability.
Change View Log/Errors only display "Clear Errors" button when there are errors to clear.
Change improve performance of View Log File.
2016-02-28 23:43:40 +00:00
|
|
|
logger.log(u'Could not find any %s images on TMDB for %s' % (image_type, show.name), logger.DEBUG)
|
|
|
|
|
|
|
|
def _fanart_urls_from_show(self, show, image_type='banner', lang='en', thumb=False):
|
|
|
|
try:
|
|
|
|
tvdb_id = show.ids.get(indexer_config.INDEXER_TVDB, {}).get('id', None)
|
|
|
|
if tvdb_id:
|
|
|
|
return self._fanart_urls(tvdb_id, image_type, lang, thumb)
|
|
|
|
except (StandardError, Exception):
|
2014-05-28 21:13:29 +00:00
|
|
|
pass
|
2014-03-13 12:20:45 +00:00
|
|
|
|
Add fanart to Episodes View, Display Show, Edit Show, and Media Renamer page.
Add "Maximum fanart image files per show to cache" to config General/Interface.
Add populate images when the daily show updater is run with a default maximum 3 images per show.
Change force full update in a show will replace existing images with new.
Add fanart livepanel to lower right of Episodes View and Display Show page.
Add highlight panel red until button is clicked a few times.
Add flick through multiple background images on Episodes View and Display Show page.
Add persistent move poster image to right hand side or hide on Display Show page (multi-click the eye).
Add persistent translucency of background images on Episodes View and Display Show page.
Add persistent fanart rating to avoid art completely, random display, random from a group, or display fave always.
Add persistent views of the show detail on Display Show page.
Add persistent views on Episodes View.
Add persistent button to collapse and expand card images on Episode View/Layout daybyday.
Add non persistent "Open gear" and "Full fanart" image views to Episodes View and Display Show page.
Add "smart" selection of fanart image to display on Episode view.
Change insert [!] and change text shade of ended shows in drop down show list on Display Show page.
Change button graphic for next and previous show of show list on Display Show page.
Add logic to hide some livepanel buttons until artwork becomes available or in other circumstances.
Add "(Ended)" where appropriate to show title on Display Show page.
Add links to fanart.tv where appropriate on Display Show page.
Change use tense for label "Airs" or "Aired" depending on if show ended.
Change display "No files" instead of "0 files" and "Upgrade once" instead of "End upgrade on first match".
Add persistent button to newest season to "Show all" episodes.
Add persistent button to all shown seasons to "Hide most" episodes.
Add button to older seasons to toggle "Show Season n" or "Show Specials" with "Hide..." episodes.
Add season level status counts next to each season header on display show page
Add sorting to season table headers on display show page
Add filename and size to quality badge on display show page, removed its redundant "downloaded" text
Remove redundant "Add show" buttons
Change combine the NFO and TBN columns into a single Meta column
Change reduce screen estate used by episode numbers columns
Change improve clarity of text on Add Show page.
Add "Reset fanart ratings" to show Edit/Other tab.
Add fanart usage to show Edit/Other tab.
Add fanart keys guide to show Edit/Other tab.
Change add placeholder tip to "Alternative release name(s)" on show Edit.
Change add placeholder tip to search box on shows Search.
Change hide Anime tips on show Edit when selecting its mutually exclusive options.
Change label "End upgrade on first match" to "Upgrade once" on show Edit.
Change improve performance rendering displayShow.
Add total episodes to start of show description (excludes specials if those are hidden).
Add "Add show" actions i.e. "Search", "Trakt cards", "IMDb cards", and "Anime" to Shows menu.
Add "Import (existing)" action to Tools menu.
Change SD quality from red to dark green, 2160p UHD 4K is red.
Change relocate the functions of Logs & Errors to the right side Tools menu -> View Log File.
Add warning indicator to the Tools menu in different colour depending on error count (green through red).
Change View Log error item output from reversed to natural order.
Change View Log add a typeface and some colour to improve readability.
Change View Log/Errors only display "Clear Errors" button when there are errors to clear.
Change improve performance of View Log File.
2016-02-28 23:43:40 +00:00
|
|
|
logger.log(u'Could not find any %s images on Fanart.tv for %s' % (image_type, show.name), logger.DEBUG)
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def _fanart_urls(tvdb_id, image_type='banner', lang='en', thumb=False):
|
|
|
|
types = {'poster': fanart.TYPE.TV.POSTER,
|
|
|
|
'banner': fanart.TYPE.TV.BANNER,
|
|
|
|
'fanart': fanart.TYPE.TV.BACKGROUND,
|
|
|
|
'poster_thumb': fanart.TYPE.TV.POSTER,
|
|
|
|
'banner_thumb': fanart.TYPE.TV.BANNER}
|
|
|
|
|
|
|
|
try:
|
|
|
|
if tvdb_id:
|
|
|
|
request = fanartRequest(apikey=sickbeard.FANART_API_KEY, tvdb_id=tvdb_id)
|
|
|
|
resp = request.response()
|
|
|
|
itemlist = []
|
|
|
|
for art in resp[types[image_type]]:
|
|
|
|
if ('url' in art and 10 > len(art['url']))\
|
|
|
|
or ('lang' in art and lang != art['lang']):
|
|
|
|
continue
|
|
|
|
try:
|
|
|
|
art_id = int(art['id'])
|
|
|
|
art_likes = int(art['likes'])
|
|
|
|
url = (art['url'], re.sub('/fanart/', '/preview/', art['url']))[thumb]
|
|
|
|
except:
|
|
|
|
continue
|
|
|
|
|
|
|
|
itemlist += [[art_id, art_likes, url]]
|
|
|
|
|
|
|
|
itemlist.sort(lambda a, b: cmp((a[1], a[0]), (b[1], b[0])), reverse=True)
|
|
|
|
return itemlist
|
|
|
|
|
|
|
|
except Exception as e:
|
|
|
|
raise
|
|
|
|
|
|
|
|
def retrieve_show_image(self, image_type, show_obj, which=None):
|
|
|
|
return self._retrieve_show_image(image_type=image_type, show_obj=show_obj, which=which)
|
|
|
|
|
|
|
|
def write_image(self, image_data, image_path):
|
|
|
|
return self._write_image(image_data=image_data, image_path=image_path)
|