- 优化提取extrafanart,trailer等,直接使用xpath expr,不需要正则匹配 - 优化 getchu 获取cover方法,直接使用og标签信息 - 优化 www.getchu 识别 getchu-id 的资源 - 统一获取 tag 方法,返回值 list
53 lines
2.3 KiB
Python
53 lines
2.3 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
import re
|
|
from lxml import etree
|
|
from . import httprequest
|
|
from .parser import Parser
|
|
|
|
|
|
class Jav321(Parser):
|
|
source = 'jav321'
|
|
|
|
expr_title = "/html/body/div[2]/div[1]/div[1]/div[1]/h3/text()"
|
|
expr_cover = "/html/body/div[2]/div[2]/div[1]/p/a/img/@src"
|
|
expr_outline = "/html/body/div[2]/div[1]/div[1]/div[2]/div[3]/div/text()"
|
|
expr_number = '//b[contains(text(),"品番")]/following-sibling::node()'
|
|
expr_actor = '//b[contains(text(),"出演者")]/following-sibling::a[starts-with(@href,"/star")]/text()'
|
|
expr_label = '//b[contains(text(),"メーカー")]/following-sibling::a[starts-with(@href,"/company")]/text()'
|
|
expr_tags = '//b[contains(text(),"ジャンル")]/following-sibling::a[starts-with(@href,"/genre")]/text()'
|
|
expr_studio = '//b[contains(text(),"メーカー")]/following-sibling::a[starts-with(@href,"/company")]/text()'
|
|
expr_release = '//b[contains(text(),"配信開始日")]/following-sibling::node()'
|
|
expr_runtime = '//b[contains(text(),"収録時間")]/following-sibling::node()'
|
|
expr_series = '//b[contains(text(),"シリーズ")]/following-sibling::node()'
|
|
expr_extrafanart = '//div[@class="col-md-3"]/div[@class="col-xs-12 col-md-12"]/p/a/img/@src'
|
|
|
|
def queryNumberUrl(self, number):
|
|
return 'https://www.jav321.com/search'
|
|
|
|
def getHtmlTree(self, url):
|
|
resp = httprequest.post(url, data={"sn": self.number}, cookies=self.cookies, proxies=self.proxies, verify=self.verify)
|
|
if "/video/" in resp.url:
|
|
self.detailurl = resp.url
|
|
self.detailhtml = resp.text
|
|
return etree.fromstring(resp.text, etree.HTMLParser())
|
|
return None
|
|
|
|
def getNum(self, htmltree):
|
|
return super().getNum(htmltree).split(": ")[1]
|
|
|
|
def getTrailer(self, htmltree):
|
|
videourl_pather = re.compile(r'<source src=\"(.*?)\"')
|
|
videourl = videourl_pather.findall(self.detailhtml)
|
|
if videourl:
|
|
url = videourl[0].replace('awscc3001.r18.com', 'cc3001.dmm.co.jp').replace('cc3001.r18.com', 'cc3001.dmm.co.jp')
|
|
return url
|
|
else:
|
|
return ''
|
|
|
|
def getRelease(self, htmltree):
|
|
return super().getRelease(htmltree).split(": ")[1]
|
|
|
|
def getRuntime(self, htmltree):
|
|
return super().getRuntime(htmltree).split(": ")[1]
|