You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
691 B
24 lines
691 B
from couchpotato import get_session
|
|
from couchpotato.core.helpers.encoding import toUnicode
|
|
from couchpotato.core.logger import CPLog
|
|
from couchpotato.core.notifications.base import Notification
|
|
from couchpotato.core.settings.model import History as Hist
|
|
import time
|
|
|
|
log = CPLog(__name__)
|
|
|
|
|
|
class History(Notification):
|
|
|
|
listen_to = ['movie.downloaded', 'movie.snatched', 'renamer.canceled']
|
|
|
|
def notify(self, message = '', data = {}, listener = None):
|
|
|
|
db = get_session()
|
|
history = Hist(
|
|
added = int(time.time()),
|
|
message = toUnicode(message),
|
|
release_id = data.get('id', 0)
|
|
)
|
|
db.add(history)
|
|
db.commit()
|
|
|