mirror of
https://github.com/moparisthebest/SickRage
synced 2024-10-31 15:35:01 -04:00
ee458bd211
Show root dirs can not be set from general config menu. Mass editing shows now has the ability to delete root dirs as well as edit them. Daily search no longer is restricted to just 1 week of results for searching from which now allows for replacing lower quality downloads with higher quality ones if available. RSS Cache is updated for each provider on demand now when performing manual, failed, backlog, or daily searches.
76 lines
2.5 KiB
Python
76 lines
2.5 KiB
Python
# Author: Nic Wolfe <nic@wolfeden.ca>
|
|
# URL: http://code.google.com/p/sickbeard/
|
|
#
|
|
# This file is part of SickRage.
|
|
#
|
|
# SickRage is free software: you can redistribute it and/or modify
|
|
# 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.
|
|
#
|
|
# SickRage 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
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with SickRage. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
from __future__ import with_statement
|
|
|
|
import datetime
|
|
import threading
|
|
import traceback
|
|
|
|
import sickbeard
|
|
from sickbeard import logger
|
|
from sickbeard import db
|
|
from sickbeard import common
|
|
from sickbeard import helpers
|
|
from sickbeard import exceptions
|
|
from sickbeard.exceptions import ex
|
|
|
|
|
|
class DailySearcher():
|
|
def __init__(self):
|
|
self.lock = threading.Lock()
|
|
self.amActive = False
|
|
|
|
def run(self, force=False):
|
|
|
|
self.amActive = True
|
|
|
|
logger.log(u"Searching for coming episodes and 1 weeks worth of previously WANTED episodes ...")
|
|
|
|
curDate = datetime.date.today().toordinal()
|
|
|
|
myDB = db.DBConnection()
|
|
sqlResults = myDB.select("SELECT * FROM tv_episodes WHERE status = ? AND season > 0 AND airdate <= ?",
|
|
[common.UNAIRED, curDate])
|
|
|
|
sql_l = []
|
|
for sqlEp in sqlResults:
|
|
try:
|
|
show = helpers.findCertainShow(sickbeard.showList, int(sqlEp["showid"]))
|
|
except exceptions.MultipleShowObjectsException:
|
|
logger.log(u"ERROR: expected to find a single show matching " + sqlEp["showid"])
|
|
continue
|
|
|
|
ep = show.getEpisode(int(sqlEp["season"]), int(sqlEp["episode"]))
|
|
with ep.lock:
|
|
if ep.show.paused:
|
|
ep.status = common.SKIPPED
|
|
else:
|
|
ep.status = common.WANTED
|
|
|
|
sql_l.append(ep.get_sql())
|
|
|
|
if len(sql_l) > 0:
|
|
myDB = db.DBConnection()
|
|
myDB.mass_action(sql_l)
|
|
|
|
# queue episode for daily search
|
|
dailysearch_queue_item = sickbeard.search_queue.DailySearchQueueItem()
|
|
sickbeard.searchQueueScheduler.action.add_item(dailysearch_queue_item)
|
|
|
|
self.amActive = False |