mirror of
https://github.com/moparisthebest/SickRage
synced 2024-10-31 23:45:02 -04:00
0d9fbc1ad7
This version of SickBeard uses both TVDB and TVRage to search and gather it's series data from allowing you to now have access to and download shows that you couldn't before because of being locked into only what TheTVDB had to offer. Also this edition is based off the code we used in our XEM editon so it does come with scene numbering support as well as all the other features our XEM edition has to offer. Please before using this with your existing database (sickbeard.db) please make a backup copy of it and delete any other database files such as cache.db and failed.db if present, we HIGHLY recommend starting out with no database files at all to make this a fresh start but the choice is at your own risk! Enjoy!
74 lines
2.8 KiB
Python
74 lines
2.8 KiB
Python
#!/usr/bin/env python2
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# GuessIt - A library for guessing information from filenames
|
|
# Copyright (c) 2012 Nicolas Wack <wackou@gmail.com>
|
|
#
|
|
# GuessIt is free software; you can redistribute it and/or modify it under
|
|
# the terms of the Lesser GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# GuessIt is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# Lesser GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the Lesser GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
|
|
from __future__ import unicode_literals
|
|
from guessit.patterns import subtitle_exts
|
|
from guessit.textutils import reorder_title, find_words
|
|
import logging
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
def process(mtree):
|
|
# 1- try to promote language to subtitle language where it makes sense
|
|
for node in mtree.nodes():
|
|
if 'language' not in node.guess:
|
|
continue
|
|
|
|
def promote_subtitle():
|
|
# pylint: disable=W0631
|
|
node.guess.set('subtitleLanguage', node.guess['language'],
|
|
confidence=node.guess.confidence('language'))
|
|
del node.guess['language']
|
|
|
|
# - if we matched a language in a file with a sub extension and that
|
|
# the group is the last group of the filename, it is probably the
|
|
# language of the subtitle
|
|
# (eg: 'xxx.english.srt')
|
|
if (mtree.node_at((-1,)).value.lower() in subtitle_exts and
|
|
node == mtree.leaves()[-2]):
|
|
promote_subtitle()
|
|
|
|
# - if we find the word 'sub' before the language, and in the same explicit
|
|
# group, then upgrade the language
|
|
explicit_group = mtree.node_at(node.node_idx[:2])
|
|
group_str = explicit_group.value.lower()
|
|
|
|
if ('sub' in find_words(group_str) and
|
|
0 <= group_str.find('sub') < (node.span[0] - explicit_group.span[0])):
|
|
promote_subtitle()
|
|
|
|
# - if a language is in an explicit group just preceded by "st",
|
|
# it is a subtitle language (eg: '...st[fr-eng]...')
|
|
try:
|
|
idx = node.node_idx
|
|
previous = mtree.node_at((idx[0], idx[1] - 1)).leaves()[-1]
|
|
if previous.value.lower()[-2:] == 'st':
|
|
promote_subtitle()
|
|
except IndexError:
|
|
pass
|
|
|
|
# 2- ", the" at the end of a series title should be prepended to it
|
|
for node in mtree.nodes():
|
|
if 'series' not in node.guess:
|
|
continue
|
|
|
|
node.guess['series'] = reorder_title(node.guess['series'])
|