Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add date field to eztv #292

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion nova3/engines/eztv.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
#VERSION: 1.14
#VERSION: 1.16
# AUTHORS: nindogo
# CONTRIBUTORS: Diego de las Heras ([email protected])

import re
from datetime import datetime, timedelta
from html.parser import HTMLParser

from novaprinter import prettyPrinter
Expand Down Expand Up @@ -35,6 +37,7 @@ def handle_starttag(self, tag, attrs):
self.current_item['leech'] = -1
self.current_item['size'] = -1
self.current_item['engine_url'] = self.url
self.current_item['pub_date'] = -1

if (tag == self.A
and self.in_table_row and params.get('class') == 'magnet'):
Expand All @@ -54,6 +57,23 @@ def handle_data(self, data):
elif self.in_table_row and data.isnumeric():
self.current_item['seeds'] = int(data)

elif self.in_table_row: # Check for a relative time
if m := re.match(r'(\d+)h\s+(\d+)m', data):
date = datetime.now() - timedelta(hours=int(m.group(1)), minutes=int(m.group(2)))
self.current_item['pub_date'] = int(date.timestamp())
elif m := re.match(r'(\d+)d\s+(\d+)h', data):
date = datetime.now() - timedelta(days=int(m.group(1)), hours=int(m.group(2)))
self.current_item['pub_date'] = int(date.timestamp())
elif m := re.match(r'(\d+)\s+weeks?', data):
date = datetime.now() - timedelta(weeks=int(m.group(1)))
self.current_item['pub_date'] = int(date.timestamp())
elif m := re.match(r'(\d+)\s+mo', data):
date = datetime.now() - timedelta(weeks=int(m.group(1)) * 4)
self.current_item['pub_date'] = int(date.timestamp())
elif m := re.match(r'(\d+)\s+years?', data):
date = datetime.now() - timedelta(weeks=int(m.group(1)) * 52)
self.current_item['pub_date'] = int(date.timestamp())

def handle_endtag(self, tag):
if self.in_table_row and tag == self.TR:
prettyPrinter(self.current_item)
Expand Down
2 changes: 1 addition & 1 deletion nova3/engines/versions.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
eztv: 1.14
eztv: 1.16
jackett: 4.0
limetorrents: 4.7
piratebay: 3.3
Expand Down
Loading