mirror of
https://github.com/moparisthebest/SickRage
synced 2024-10-31 23:45:02 -04:00
d02c0bd6eb
Fixed charmap issues for anime show names. Fixed issues with display show page and epCat key errors. Fixed duplicate log messages for clearing provider caches. Fixed issues with email notifier ep names not properly being encoded to UTF-8. TVDB<->TVRAGE Indexer ID mapping is now performed on demand to be used when needed such as newznab providers can be searched with tvrage_id's and some will return tvrage_id's that later can be used to create show objects from for faster and more accurate name parsing, mapping is done via Trakt API calls. Added stop event signals to schedualed tasks, SR now waits indefinate till task has been fully stopped before completing a restart or shutdown event. NameParserCache is now persistent and stores 200 parsed results at any given time for quicker lookups and better performance, this helps maintain results between updates or shutdown/startup events. Black and White lists for anime now only get used for anime shows as intended, performance gain for non-anime shows that dont need to load these lists. Internal name cache now builds it self on demand when needed per show request plus checks if show is already in cache and if true exits routine to save time. Schedualer and QueueItems classes are now a sub-class of threading.Thread and a stop threading event signal has been added to each. If I forgot to list something it doesn't mean its not fixed so please test and report back if anything is wrong or has been corrected by this new release.
210 lines
9.3 KiB
Python
210 lines
9.3 KiB
Python
# Authors:
|
|
# Derek Battams <derek@battams.ca>
|
|
# Pedro Jose Pereira Vieito (@pvieito) <pvieito@gmail.com>
|
|
#
|
|
# URL: https://github.com/echel0n/SickRage
|
|
#
|
|
# 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/>.
|
|
|
|
import smtplib
|
|
from email.mime.multipart import MIMEMultipart
|
|
from email.mime.text import MIMEText
|
|
|
|
import re
|
|
|
|
import sickbeard
|
|
|
|
from sickbeard import logger, common
|
|
from sickbeard import db
|
|
from sickbeard.exceptions import ex
|
|
|
|
|
|
class EmailNotifier:
|
|
def __init__(self):
|
|
self.last_err = None
|
|
|
|
def test_notify(self, host, port, smtp_from, use_tls, user, pwd, to):
|
|
msg = MIMEText('This is a test message from SickRage. If you\'re reading this, the test succeeded.')
|
|
msg['Subject'] = 'SickRage: Test Message'
|
|
msg['From'] = smtp_from
|
|
msg['To'] = to
|
|
return self._sendmail(host, port, smtp_from, use_tls, user, pwd, [to], msg, True)
|
|
|
|
def notify_snatch(self, ep_name, title="Snatched:"):
|
|
"""
|
|
Send a notification that an episode was snatched
|
|
|
|
ep_name: The name of the episode that was snatched
|
|
title: The title of the notification (optional)
|
|
"""
|
|
ep_name = ep_name.encode('utf-8', 'replace')
|
|
|
|
if sickbeard.EMAIL_NOTIFY_ONSNATCH:
|
|
show = self._parseEp(ep_name)
|
|
to = self._generate_recepients(show)
|
|
if len(to) == 0:
|
|
logger.log('Skipping email notify because there are no configured recepients', logger.WARNING)
|
|
else:
|
|
try:
|
|
msg = MIMEMultipart('alternative')
|
|
msg.attach(MIMEText(
|
|
"<body style='font-family:Helvetica, Arial, sans-serif;'><h3>SickRage Notification - Snatched</h3>\n<p>Show: <b>" + re.search(
|
|
"(.+?) -.+", ep_name).group(1) + "</b></p>\n<p>Episode: <b>" + re.search(
|
|
".+ - (.+?-.+) -.+", ep_name).group(
|
|
1) + "</b></p>\n\n<footer style='margin-top: 2.5em; padding: .7em 0; color: #777; border-top: #BBB solid 1px;'>Powered by SickRage.</footer></body>",
|
|
'html'))
|
|
except:
|
|
msg = MIMEText(ep_name)
|
|
|
|
msg['Subject'] = 'Snatched: ' + ep_name
|
|
msg['From'] = sickbeard.EMAIL_FROM
|
|
msg['To'] = ','.join(to)
|
|
if self._sendmail(sickbeard.EMAIL_HOST, sickbeard.EMAIL_PORT, sickbeard.EMAIL_FROM, sickbeard.EMAIL_TLS,
|
|
sickbeard.EMAIL_USER, sickbeard.EMAIL_PASSWORD, to, msg):
|
|
logger.log("Snatch notification sent to [%s] for '%s'" % (to, ep_name), logger.DEBUG)
|
|
else:
|
|
logger.log("Snatch notification ERROR: %s" % self.last_err, logger.ERROR)
|
|
|
|
def notify_download(self, ep_name, title="Completed:"):
|
|
"""
|
|
Send a notification that an episode was downloaded
|
|
|
|
ep_name: The name of the episode that was downloaded
|
|
title: The title of the notification (optional)
|
|
"""
|
|
ep_name = ep_name.encode('utf-8', 'replace')
|
|
|
|
if sickbeard.EMAIL_NOTIFY_ONDOWNLOAD:
|
|
show = self._parseEp(ep_name)
|
|
to = self._generate_recepients(show)
|
|
if len(to) == 0:
|
|
logger.log('Skipping email notify because there are no configured recepients', logger.WARNING)
|
|
else:
|
|
try:
|
|
msg = MIMEMultipart('alternative')
|
|
msg.attach(MIMEText(
|
|
"<body style='font-family:Helvetica, Arial, sans-serif;'><h3>SickRage Notification - Downloaded</h3>\n<p>Show: <b>" + re.search(
|
|
"(.+?) -.+", ep_name).group(1) + "</b></p>\n<p>Episode: <b>" + re.search(
|
|
".+ - (.+?-.+) -.+", ep_name).group(
|
|
1) + "</b></p>\n\n<footer style='margin-top: 2.5em; padding: .7em 0; color: #777; border-top: #BBB solid 1px;'>Powered by SickRage.</footer></body>",
|
|
'html'))
|
|
except:
|
|
msg = MIMEText(ep_name)
|
|
|
|
msg['Subject'] = 'Downloaded: ' + ep_name
|
|
msg['From'] = sickbeard.EMAIL_FROM
|
|
msg['To'] = ','.join(to)
|
|
if self._sendmail(sickbeard.EMAIL_HOST, sickbeard.EMAIL_PORT, sickbeard.EMAIL_FROM, sickbeard.EMAIL_TLS,
|
|
sickbeard.EMAIL_USER, sickbeard.EMAIL_PASSWORD, to, msg):
|
|
logger.log("Download notification sent to [%s] for '%s'" % (to, ep_name), logger.DEBUG)
|
|
else:
|
|
logger.log("Download notification ERROR: %s" % self.last_err, logger.ERROR)
|
|
|
|
def notify_subtitle_download(self, ep_name, lang, title="Downloaded subtitle:"):
|
|
"""
|
|
Send a notification that an subtitle was downloaded
|
|
|
|
ep_name: The name of the episode that was downloaded
|
|
lang: Subtitle language wanted
|
|
"""
|
|
ep_name = ep_name.encode('utf-8', 'replace')
|
|
|
|
if sickbeard.EMAIL_NOTIFY_ONSUBTITLEDOWNLOAD:
|
|
show = self._parseEp(ep_name)
|
|
to = self._generate_recepients(show)
|
|
if len(to) == 0:
|
|
logger.log('Skipping email notify because there are no configured recepients', logger.WARNING)
|
|
else:
|
|
try:
|
|
msg = MIMEMultipart('alternative')
|
|
msg.attach(MIMEText(
|
|
"<body style='font-family:Helvetica, Arial, sans-serif;'><h3>SickRage Notification - Subtitle Downloaded</h3>\n<p>Show: <b>" + re.search(
|
|
"(.+?) -.+", ep_name).group(1) + "</b></p>\n<p>Episode: <b>" + re.search(
|
|
".+ - (.+?-.+) -.+", ep_name).group(
|
|
1) + "</b></p>\n<p>Language: <b>" + lang + "</b></p>\n\n<footer style='margin-top: 2.5em; padding: .7em 0; color: #777; border-top: #BBB solid 1px;'>Powered by SickRage.</footer></body>",
|
|
'html'))
|
|
except:
|
|
msg = MIMEText(ep_name + ": " + lang)
|
|
|
|
msg['Subject'] = lang + ' Subtitle Downloaded: ' + ep_name
|
|
msg['From'] = sickbeard.EMAIL_FROM
|
|
msg['To'] = ','.join(to)
|
|
if self._sendmail(sickbeard.EMAIL_HOST, sickbeard.EMAIL_PORT, sickbeard.EMAIL_FROM, sickbeard.EMAIL_TLS,
|
|
sickbeard.EMAIL_USER, sickbeard.EMAIL_PASSWORD, to, msg):
|
|
logger.log("Download notification sent to [%s] for '%s'" % (to, ep_name), logger.DEBUG)
|
|
else:
|
|
logger.log("Download notification ERROR: %s" % self.last_err, logger.ERROR)
|
|
|
|
|
|
def notify_git_update(self, new_version="??"):
|
|
pass
|
|
|
|
def _generate_recepients(self, show):
|
|
addrs = []
|
|
|
|
# Grab the global recipients
|
|
for addr in sickbeard.EMAIL_LIST.split(','):
|
|
if (len(addr.strip()) > 0):
|
|
addrs.append(addr)
|
|
|
|
# Grab the recipients for the show
|
|
myDB = db.DBConnection()
|
|
for s in show:
|
|
for subs in myDB.select("SELECT notify_list FROM tv_shows WHERE show_name = ?", (s,)):
|
|
if subs['notify_list']:
|
|
for addr in subs['notify_list'].split(','):
|
|
if (len(addr.strip()) > 0):
|
|
addrs.append(addr)
|
|
|
|
addrs = set(addrs)
|
|
logger.log('Notification recepients: %s' % addrs, logger.DEBUG)
|
|
return addrs
|
|
|
|
def _sendmail(self, host, port, smtp_from, use_tls, user, pwd, to, msg, smtpDebug=False):
|
|
logger.log('HOST: %s; PORT: %s; FROM: %s, TLS: %s, USER: %s, PWD: %s, TO: %s' % (
|
|
host, port, smtp_from, use_tls, user, pwd, to), logger.DEBUG)
|
|
srv = smtplib.SMTP(host, int(port))
|
|
if smtpDebug:
|
|
srv.set_debuglevel(1)
|
|
try:
|
|
if (use_tls == '1' or use_tls == True) or (len(user) > 0 and len(pwd) > 0):
|
|
srv.ehlo()
|
|
logger.log('Sent initial EHLO command!', logger.DEBUG)
|
|
if use_tls == '1' or use_tls == True:
|
|
srv.starttls()
|
|
logger.log('Sent STARTTLS command!', logger.DEBUG)
|
|
if len(user) > 0 and len(pwd) > 0:
|
|
srv.login(user, pwd)
|
|
logger.log('Sent LOGIN command!', logger.DEBUG)
|
|
srv.sendmail(smtp_from, to, msg.as_string())
|
|
srv.quit()
|
|
return True
|
|
except Exception as e:
|
|
self.last_err = '%s' % e
|
|
return False
|
|
|
|
def _parseEp(self, ep_name):
|
|
ep_name = ep_name.encode('utf-8', 'replace')
|
|
|
|
sep = " - "
|
|
titles = ep_name.split(sep)
|
|
titles.sort(key=len, reverse=True)
|
|
logger.log("TITLES: %s" % titles, logger.DEBUG)
|
|
return titles
|
|
|
|
|
|
notifier = EmailNotifier
|