2012-12-16 17:57:02 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import lib.feedparser as feedparser
|
|
|
|
#import feedparser
|
|
|
|
import re
|
2013-01-02 17:56:46 +00:00
|
|
|
import logger
|
2013-02-09 03:34:02 +00:00
|
|
|
import mylar
|
2013-04-12 02:14:27 +00:00
|
|
|
import unicodedata
|
2012-12-16 17:57:02 +00:00
|
|
|
|
2013-04-12 02:14:27 +00:00
|
|
|
|
2013-12-09 19:44:26 +00:00
|
|
|
def Startit(searchName, searchIssue, searchYear, ComicVersion, IssDateFix):
|
2012-12-16 17:57:02 +00:00
|
|
|
#searchName = "Uncanny Avengers"
|
|
|
|
#searchIssue = "01"
|
|
|
|
#searchYear = "2012"
|
|
|
|
#clean up searchName due to webparse.
|
|
|
|
searchName = searchName.replace("%20", " ")
|
2013-05-09 02:22:47 +00:00
|
|
|
if "," in searchName:
|
|
|
|
searchName = searchName.replace(",", "")
|
2013-01-02 17:56:46 +00:00
|
|
|
logger.fdebug("name:" + str(searchName))
|
|
|
|
logger.fdebug("issue:" + str(searchIssue))
|
|
|
|
logger.fdebug("year:" + str(searchYear))
|
2012-12-16 17:57:02 +00:00
|
|
|
splitSearch = searchName.split(" ")
|
|
|
|
joinSearch = "+".join(splitSearch)+"+"+searchIssue
|
|
|
|
searchIsOne = "0"+searchIssue
|
|
|
|
searchIsTwo = "00"+searchIssue
|
|
|
|
|
2013-04-12 02:14:27 +00:00
|
|
|
if "-" in searchName:
|
|
|
|
searchName = searchName.replace("-", '((\\s)?[-:])?(\\s)?')
|
|
|
|
|
|
|
|
regexName = searchName.replace(" ", '((\\s)?[-:])?(\\s)?')
|
|
|
|
|
2013-09-20 05:17:04 +00:00
|
|
|
|
|
|
|
#logger.fdebug('searchName:' + searchName)
|
|
|
|
#logger.fdebug('regexName:' + regexName)
|
2013-04-12 02:14:27 +00:00
|
|
|
|
2013-02-09 03:34:02 +00:00
|
|
|
if mylar.USE_MINSIZE:
|
|
|
|
size_constraints = "minsize=" + str(mylar.MINSIZE)
|
|
|
|
else:
|
|
|
|
size_constraints = "minsize=10"
|
2012-12-16 17:57:02 +00:00
|
|
|
|
2013-02-09 03:34:02 +00:00
|
|
|
if mylar.USE_MAXSIZE:
|
|
|
|
size_constraints = size_constraints + "&maxsize=" + str(mylar.MAXSIZE)
|
|
|
|
|
2013-03-01 20:20:39 +00:00
|
|
|
if mylar.USENET_RETENTION != None:
|
|
|
|
max_age = "&age=" + str(mylar.USENET_RETENTION)
|
|
|
|
|
2013-09-20 05:17:04 +00:00
|
|
|
feeds = []
|
|
|
|
feeds.append(feedparser.parse("http://nzbindex.nl/rss/alt.binaries.comics.dcp/?sort=agedesc&" + str(size_constraints) + str(max_age) + "&dq=%s&max=50&more=1" %joinSearch))
|
|
|
|
if mylar.ALTEXPERIMENTAL:
|
|
|
|
feeds.append(feedparser.parse("http://nzbindex.nl/rss/?dq=%s&g[]=41&g[]=510&sort=agedesc&hidespam=0&max=&more=1" %joinSearch))
|
2012-12-16 17:57:02 +00:00
|
|
|
|
|
|
|
entries = []
|
|
|
|
mres = {}
|
2013-09-20 05:17:04 +00:00
|
|
|
tallycount = 0
|
|
|
|
|
|
|
|
for feed in feeds:
|
|
|
|
totNum = len(feed.entries)
|
|
|
|
tallycount += len(feed.entries)
|
|
|
|
|
|
|
|
keyPair = {}
|
|
|
|
regList = []
|
|
|
|
countUp = 0
|
2012-12-16 17:57:02 +00:00
|
|
|
|
2013-09-20 05:17:04 +00:00
|
|
|
logger.fdebug(str(totNum) + " results")
|
2012-12-16 17:57:02 +00:00
|
|
|
|
2013-09-20 05:17:04 +00:00
|
|
|
while countUp < totNum:
|
|
|
|
urlParse = feed.entries[countUp].enclosures[0]
|
|
|
|
#keyPair[feed.entries[countUp].title] = feed.entries[countUp].link
|
|
|
|
keyPair[feed.entries[countUp].title] = urlParse["href"]
|
2012-12-16 17:57:02 +00:00
|
|
|
|
2013-09-20 05:17:04 +00:00
|
|
|
countUp=countUp+1
|
2012-12-16 17:57:02 +00:00
|
|
|
|
|
|
|
|
2013-09-20 05:17:04 +00:00
|
|
|
# thanks to SpammyHagar for spending the time in compiling these regEx's!
|
2012-12-16 17:57:02 +00:00
|
|
|
|
2013-09-20 05:17:04 +00:00
|
|
|
regExTest=""
|
2012-12-16 17:57:02 +00:00
|
|
|
|
2013-09-20 05:17:04 +00:00
|
|
|
regEx = "(%s\\s*(0)?(0)?%s\\s*\\(%s\\))" %(regexName, searchIssue, searchYear)
|
|
|
|
regExOne = "(%s\\s*(0)?(0)?%s\\s*\\(.*?\\)\\s*\\(%s\\))" %(regexName, searchIssue, searchYear)
|
2012-12-16 17:57:02 +00:00
|
|
|
|
2013-09-20 05:17:04 +00:00
|
|
|
#Sometimes comics aren't actually published the same year comicVine says - trying to adjust for these cases
|
|
|
|
regExTwo = "(%s\\s*(0)?(0)?%s\\s*\\(%s\\))" %(regexName, searchIssue, int(searchYear)+1)
|
|
|
|
regExThree = "(%s\\s*(0)?(0)?%s\\s*\\(%s\\))" %(regexName, searchIssue, int(searchYear)-1)
|
|
|
|
regExFour = "(%s\\s*(0)?(0)?%s\\s*\\(.*?\\)\\s*\\(%s\\))" %(regexName, searchIssue, int(searchYear)+1)
|
|
|
|
regExFive = "(%s\\s*(0)?(0)?%s\\s*\\(.*?\\)\\s*\\(%s\\))" %(regexName, searchIssue, int(searchYear)-1)
|
2012-12-16 17:57:02 +00:00
|
|
|
|
2013-09-20 05:17:04 +00:00
|
|
|
regexList=[regEx, regExOne, regExTwo, regExThree, regExFour, regExFive]
|
2012-12-16 17:57:02 +00:00
|
|
|
|
2013-09-20 05:17:04 +00:00
|
|
|
except_list=['releases', 'gold line', 'distribution', '0-day', '0 day']
|
2013-07-17 04:20:52 +00:00
|
|
|
|
2013-09-20 05:17:04 +00:00
|
|
|
for title, link in keyPair.items():
|
|
|
|
#logger.fdebug("titlesplit: " + str(title.split("\"")))
|
|
|
|
splitTitle = title.split("\"")
|
IMP: Added ForceRSS Check and Test SABnzbd Connection buttons in Config, FIX: If Annuals not enabled, would error on home screen, IMP: updated mylar.init.d (thnx Kalinon), FIX: Manual Post-Processing fix for Manual Run (thnx Kalinon), IMP: Library Monitor working (check folder every X minutes and Post-Process), IMP: Future Upcoming introduction, IMP: Experimental search better handling of year inclusions, FIX: Filechecker will now pick up series with years in the series title accordingly, FIX: Torrent seedbox sending would lockup occassionally when attempting to send torrent file, FIX: malformed image url on some series, IMP: Moved issue updating to a seperate function, IMP: When series was refreshed, would download the last issue (or few issues depending on date), regardless of status, IMP: When series is volume 1 or volume label doesn't exist, either assume V1 or remove volume requirements to improve matching hits, IMP: StoryArcs will now check in StoryArc folder for existing issues and change status in StoryArc accordingly...
2013-11-28 15:48:59 +00:00
|
|
|
noYear = 'False'
|
2013-04-12 02:14:27 +00:00
|
|
|
|
2013-09-20 05:17:04 +00:00
|
|
|
for subs in splitTitle:
|
|
|
|
logger.fdebug(subs)
|
|
|
|
regExCount = 0
|
|
|
|
if len(subs) > 10 and not any(d in subs.lower() for d in except_list):
|
2013-04-12 02:14:27 +00:00
|
|
|
#Looping through dictionary to run each regEx - length + regex is determined by regexList up top.
|
2013-07-10 01:45:10 +00:00
|
|
|
# while regExCount < len(regexList):
|
|
|
|
# regExTest = re.findall(regexList[regExCount], subs, flags=re.IGNORECASE)
|
|
|
|
# regExCount = regExCount +1
|
|
|
|
# if regExTest:
|
|
|
|
# logger.fdebug(title)
|
|
|
|
# entries.append({
|
|
|
|
# 'title': subs,
|
|
|
|
# 'link': str(link)
|
|
|
|
# })
|
2013-12-09 19:44:26 +00:00
|
|
|
if IssDateFix != "no":
|
|
|
|
if IssDateFix == "01" or IssDateFix == "02": ComicYearFix = str(int(searchYear) - 1)
|
|
|
|
else: ComicYearFix = str(int(searchYear) + 1)
|
|
|
|
else:
|
|
|
|
ComicYearFix = searchYear
|
|
|
|
|
|
|
|
if searchYear not in subs and ComicYearFix not in subs:
|
IMP: Added ForceRSS Check and Test SABnzbd Connection buttons in Config, FIX: If Annuals not enabled, would error on home screen, IMP: updated mylar.init.d (thnx Kalinon), FIX: Manual Post-Processing fix for Manual Run (thnx Kalinon), IMP: Library Monitor working (check folder every X minutes and Post-Process), IMP: Future Upcoming introduction, IMP: Experimental search better handling of year inclusions, FIX: Filechecker will now pick up series with years in the series title accordingly, FIX: Torrent seedbox sending would lockup occassionally when attempting to send torrent file, FIX: malformed image url on some series, IMP: Moved issue updating to a seperate function, IMP: When series was refreshed, would download the last issue (or few issues depending on date), regardless of status, IMP: When series is volume 1 or volume label doesn't exist, either assume V1 or remove volume requirements to improve matching hits, IMP: StoryArcs will now check in StoryArc folder for existing issues and change status in StoryArc accordingly...
2013-11-28 15:48:59 +00:00
|
|
|
noYear = 'True'
|
|
|
|
noYearline = subs
|
|
|
|
|
2013-12-09 19:44:26 +00:00
|
|
|
if (searchYear in subs or ComicYearFix in subs) and noYear == 'True':
|
IMP: Added ForceRSS Check and Test SABnzbd Connection buttons in Config, FIX: If Annuals not enabled, would error on home screen, IMP: updated mylar.init.d (thnx Kalinon), FIX: Manual Post-Processing fix for Manual Run (thnx Kalinon), IMP: Library Monitor working (check folder every X minutes and Post-Process), IMP: Future Upcoming introduction, IMP: Experimental search better handling of year inclusions, FIX: Filechecker will now pick up series with years in the series title accordingly, FIX: Torrent seedbox sending would lockup occassionally when attempting to send torrent file, FIX: malformed image url on some series, IMP: Moved issue updating to a seperate function, IMP: When series was refreshed, would download the last issue (or few issues depending on date), regardless of status, IMP: When series is volume 1 or volume label doesn't exist, either assume V1 or remove volume requirements to improve matching hits, IMP: StoryArcs will now check in StoryArc folder for existing issues and change status in StoryArc accordingly...
2013-11-28 15:48:59 +00:00
|
|
|
#this would occur on the next check in the line, if year exists and
|
|
|
|
#the noYear check in the first check came back valid append it
|
|
|
|
subs = noYearline + ' (' + searchYear + ')'
|
|
|
|
noYear = 'False'
|
|
|
|
|
|
|
|
if noYear == 'False':
|
|
|
|
|
|
|
|
entries.append({
|
|
|
|
'title': subs,
|
|
|
|
'link': str(link)
|
|
|
|
})
|
|
|
|
break # break out so we don't write more shit.
|
2012-12-16 17:57:02 +00:00
|
|
|
|
2013-09-20 05:17:04 +00:00
|
|
|
# if len(entries) >= 1:
|
|
|
|
if tallycount >= 1:
|
2012-12-16 17:57:02 +00:00
|
|
|
mres['entries'] = entries
|
|
|
|
return mres
|
|
|
|
# print("Title: "+regList[0])
|
|
|
|
# print("Link: "+keyPair[regList[0]])
|
|
|
|
else:
|
2013-01-02 17:56:46 +00:00
|
|
|
logger.fdebug("No Results Found")
|
2012-12-16 17:57:02 +00:00
|
|
|
return "no results"
|