implement ICapVideoProvider.get_video()
This commit is contained in:
parent
f02f0ec717
commit
6327e73b3a
3 changed files with 82 additions and 12 deletions
|
|
@ -18,19 +18,75 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
|
||||
"""
|
||||
|
||||
import re
|
||||
import datetime
|
||||
from logging import warning
|
||||
|
||||
from .base import PornPage
|
||||
from weboob.capabilities.video import Video
|
||||
|
||||
class VideoPage(PornPage):
|
||||
URL_REGEXP = re.compile("https?://[w\.]*youporn.com/watch/(\d+)/?.*")
|
||||
|
||||
def loaded(self):
|
||||
if not PornPage.loaded(self):
|
||||
return
|
||||
|
||||
self.video = Video(self.get_id(),
|
||||
self.get_title(),
|
||||
self.get_url())
|
||||
|
||||
self.set_details(self.video)
|
||||
|
||||
def get_id(self):
|
||||
m = self.URL_REGEXP.match(self.url)
|
||||
if m:
|
||||
return int(m.group(1))
|
||||
warning("Unable to parse ID")
|
||||
return 0
|
||||
|
||||
def get_url(self):
|
||||
el = self.document.getroot().cssselect('div[id=download]')
|
||||
if el:
|
||||
self.url = el[0].cssselect('a')[0].attrib['href']
|
||||
else:
|
||||
self.url = None
|
||||
return el[0].cssselect('a')[0].attrib['href']
|
||||
|
||||
def get_title(self):
|
||||
el = self.document.getroot().cssselect('h1')
|
||||
if el:
|
||||
self.title = unicode(el[0].getchildren()[0].tail).strip()
|
||||
return unicode(el[0].getchildren()[0].tail).strip()
|
||||
|
||||
DATE_REGEXP = re.compile("\w+ (\w+) (\d+) (\d+):(\d+):(\d+) (\d+)")
|
||||
MONTH2I = ['', 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
|
||||
|
||||
def set_details(self, v):
|
||||
div = self.document.getroot().cssselect('div[id=details]')
|
||||
if not div:
|
||||
return
|
||||
|
||||
for li in div[0].getiterator('li'):
|
||||
span = li.find('span')
|
||||
name = span.text.strip()
|
||||
value = span.tail.strip()
|
||||
|
||||
if name == 'Duration:':
|
||||
duration = 0
|
||||
for word in value.split():
|
||||
if word.endswith('min'):
|
||||
duration += 60 * int(word[:word.find('min')])
|
||||
elif word.endswith('sec'):
|
||||
duration += int(word[:word.find('sec')])
|
||||
v.duration = duration
|
||||
elif name == 'Submitted:':
|
||||
v.author = li.find('i').text
|
||||
elif name == 'Rating:':
|
||||
v.rating = float(value[:value.find(' ')])
|
||||
elif name == 'Date:':
|
||||
m = self.DATE_REGEXP.match(value)
|
||||
if m:
|
||||
month = self.MONTH2I.index(m.group(1))
|
||||
day = int(m.group(2))
|
||||
hour = int(m.group(3))
|
||||
minute = int(m.group(4))
|
||||
second = int(m.group(5))
|
||||
year = int(m.group(6))
|
||||
v.date = datetime.datetime(year, month, day, hour, minute, second)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue