2014-03-10 01:18:05 -04:00
|
|
|
# Author: Dieter Blomme <dieterblomme@gmail.com>
|
|
|
|
# URL: http://code.google.com/p/sickbeard/
|
|
|
|
#
|
2014-05-23 08:37:22 -04:00
|
|
|
# This file is part of SickRage.
|
2014-03-10 01:18:05 -04:00
|
|
|
#
|
2014-05-23 08:37:22 -04:00
|
|
|
# SickRage is free software: you can redistribute it and/or modify
|
2014-03-10 01:18:05 -04: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-05-23 08:37:22 -04:00
|
|
|
# SickRage is distributed in the hope that it will be useful,
|
2014-03-10 01:18:05 -04: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-05-23 08:37:22 -04:00
|
|
|
# along with SickRage. If not, see <http://www.gnu.org/licenses/>.
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
import sickbeard
|
|
|
|
from sickbeard import logger
|
|
|
|
from lib.trakt import *
|
|
|
|
|
2014-03-25 01:57:24 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
class TraktNotifier:
|
|
|
|
"""
|
|
|
|
A "notifier" for trakt.tv which keeps track of what has and hasn't been added to your library.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def notify_snatch(self, ep_name):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def notify_download(self, ep_name):
|
|
|
|
pass
|
2014-03-25 01:57:24 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
def notify_subtitle_download(self, ep_name, lang):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def update_library(self, ep_obj):
|
|
|
|
"""
|
|
|
|
Sends a request to trakt indicating that the given episode is part of our library.
|
|
|
|
|
|
|
|
ep_obj: The TVEpisode object to add to trakt
|
|
|
|
"""
|
2014-03-25 01:57:24 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
if sickbeard.USE_TRAKT:
|
2014-03-25 01:57:24 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
# URL parameters
|
|
|
|
data = {
|
|
|
|
'indexer_id': ep_obj.show.indexerid,
|
|
|
|
'title': ep_obj.show.name,
|
|
|
|
'year': ep_obj.show.startyear,
|
2014-03-25 01:57:24 -04:00
|
|
|
'episodes': [{
|
|
|
|
'season': ep_obj.season,
|
|
|
|
'episode': ep_obj.episode
|
|
|
|
}]
|
|
|
|
}
|
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
if data is not None:
|
|
|
|
TraktCall("show/episode/library/%API%", self._api(), self._username(), self._password(), data)
|
|
|
|
if sickbeard.TRAKT_REMOVE_WATCHLIST:
|
|
|
|
TraktCall("show/episode/unwatchlist/%API%", self._api(), self._username(), self._password(), data)
|
|
|
|
|
|
|
|
def test_notify(self, api, username, password):
|
|
|
|
"""
|
|
|
|
Sends a test notification to trakt with the given authentication info and returns a boolean
|
|
|
|
representing success.
|
|
|
|
|
|
|
|
api: The api string to use
|
|
|
|
username: The username to use
|
|
|
|
password: The password to use
|
|
|
|
|
|
|
|
Returns: True if the request succeeded, False otherwise
|
|
|
|
"""
|
2014-03-25 01:57:24 -04:00
|
|
|
|
2014-03-10 01:18:05 -04:00
|
|
|
data = TraktCall("account/test/%API%", api, username, password, {})
|
|
|
|
if data["status"] == "success":
|
|
|
|
return True
|
|
|
|
|
|
|
|
def _username(self):
|
|
|
|
return sickbeard.TRAKT_USERNAME
|
|
|
|
|
|
|
|
def _password(self):
|
|
|
|
return sickbeard.TRAKT_PASSWORD
|
|
|
|
|
|
|
|
def _api(self):
|
|
|
|
return sickbeard.TRAKT_API
|
|
|
|
|
|
|
|
def _use_me(self):
|
|
|
|
return sickbeard.USE_TRAKT
|
|
|
|
|
|
|
|
|
|
|
|
notifier = TraktNotifier
|