first commit
This commit is contained in:
@@ -0,0 +1,158 @@
|
||||
#coding=utf-8
|
||||
#!/usr/bin/python
|
||||
import sys
|
||||
sys.path.append('..')
|
||||
from base.spider import Spider
|
||||
import re
|
||||
import math
|
||||
|
||||
class Spider(Spider):
|
||||
def getName(self):
|
||||
return "企鹅体育"
|
||||
def init(self,extend=""):
|
||||
pass
|
||||
def isVideoFormat(self,url):
|
||||
pass
|
||||
def manualVideoCheck(self):
|
||||
pass
|
||||
def homeContent(self,filter):
|
||||
result = {}
|
||||
cateManual = {
|
||||
"全部": ""
|
||||
}
|
||||
classes = []
|
||||
for k in cateManual:
|
||||
classes.append({
|
||||
'type_name': k,
|
||||
'type_id': cateManual[k]
|
||||
})
|
||||
|
||||
result['class'] = classes
|
||||
if (filter):
|
||||
result['filters'] = self.config['filter']
|
||||
return result
|
||||
def homeVideoContent(self):
|
||||
result = {}
|
||||
return result
|
||||
|
||||
def categoryContent(self,tid,pg,filter,extend):
|
||||
result = {}
|
||||
url = 'https://m.jrskbs.com'
|
||||
rsp = self.fetch(url)
|
||||
html = self.html(rsp.text)
|
||||
aList = html.xpath("//div[contains(@class, 'contentList')]/a")
|
||||
videos = []
|
||||
numvL = len(aList)
|
||||
pgc = math.ceil(numvL/15)
|
||||
for a in aList:
|
||||
aid = a.xpath("./@href")[0]
|
||||
aid = self.regStr(reg=r'/live/(.*?).html', src=aid)
|
||||
img = a.xpath(".//div[@class='contentLeft']/p/img/@src")[0]
|
||||
home = a.xpath(".//div[@class='contentLeft']/p[@class='false false']/text()")[0]
|
||||
away = a.xpath(".//div[@class='contentRight']/p[@class='false false']/text()")[0]
|
||||
infoArray = a.xpath(".//div[@class='contentCenter']/p")
|
||||
remark = ''
|
||||
for info in infoArray:
|
||||
content = info.xpath('string(.)').replace(' ','')
|
||||
remark = remark + '|' + content
|
||||
videos.append({
|
||||
"vod_id": aid,
|
||||
"vod_name": home + 'vs' + away,
|
||||
"vod_pic": img,
|
||||
"vod_remarks": remark.strip('|')
|
||||
})
|
||||
result['list'] = videos
|
||||
result['page'] = pg
|
||||
result['pagecount'] = pgc
|
||||
result['limit'] = numvL
|
||||
result['total'] = numvL
|
||||
return result
|
||||
|
||||
def detailContent(self,array):
|
||||
aid = array[0]
|
||||
url = "http://m.jrskbs.com/live/{0}.html".format(aid)
|
||||
rsp = self.fetch(url)
|
||||
root = self.html(rsp.text)
|
||||
divContent = root.xpath("//div[@class='today']")[0]
|
||||
home = divContent.xpath(".//p[@class='onePlayer homeTeam']/text()")[0]
|
||||
away = divContent.xpath(".//div[3]/text()")[0].strip()
|
||||
title = home + 'vs' + away
|
||||
pic = divContent.xpath(".//img[@class='gameLogo1 homeTeam_img']/@src")[0]
|
||||
typeName = divContent.xpath(".//div/p[@class='name1 matchTime_wap']/text()")[0]
|
||||
remark = divContent.xpath(".//div/p[@class='time1 matchTitle']/text()")[0].replace(' ','')
|
||||
url = divContent.xpath("//div[@class='liveCotainer']/iframe[@id='pp']/@src")[0]
|
||||
vod = {
|
||||
"vod_id": aid,
|
||||
"vod_name": title,
|
||||
"vod_pic": pic,
|
||||
"type_name": typeName,
|
||||
"vod_year": "",
|
||||
"vod_area": "",
|
||||
"vod_remarks": remark,
|
||||
"vod_actor": '',
|
||||
"vod_director":'',
|
||||
"vod_content": ''
|
||||
}
|
||||
playUrl = '{0}${1}#'.format(title, url)
|
||||
vod['vod_play_from'] = '体育直播'
|
||||
vod['vod_play_url'] = playUrl
|
||||
|
||||
result = {
|
||||
'list': [
|
||||
vod
|
||||
]
|
||||
}
|
||||
return result
|
||||
|
||||
def searchContent(self,key,quick):
|
||||
result = {}
|
||||
return result
|
||||
|
||||
def playerContent(self,flag,id,vipFlags):
|
||||
result = {}
|
||||
url = id
|
||||
rsp = self.fetch(url)
|
||||
html = rsp.text
|
||||
strList = re.findall(r"eval\((.*?)\);", html)
|
||||
fuctList = strList[1].split('+')
|
||||
scrpit = ''
|
||||
for fuc in fuctList:
|
||||
if fuc.endswith(')'):
|
||||
append = fuc.split(')')[-1]
|
||||
else:
|
||||
append = ''
|
||||
Unicode = int(self.regStr(reg=r'l\((.*?)\)', src=fuc))
|
||||
char = chr(Unicode%256)
|
||||
char = char + append
|
||||
scrpit = scrpit + char
|
||||
par= self.regStr(reg=r'/(.*)/', src=scrpit).replace(')','')
|
||||
pars= par.split('/')
|
||||
infoList = strList[2].split('+')
|
||||
str = ''
|
||||
for info in infoList:
|
||||
if info.startswith('O'):
|
||||
Unicode = int(int(self.regStr(reg=r'O\((.*?)\)', src=info))/int(pars[0])/int(pars[1]))
|
||||
char = chr(Unicode % 256)
|
||||
str = str +char
|
||||
url = self.regStr(reg=r"play_url=\'(.*?)\'", src=str)
|
||||
result["parse"] = 0
|
||||
result["playUrl"] = ''
|
||||
result["url"] = url
|
||||
result["header"] = ''
|
||||
return result
|
||||
|
||||
config = {
|
||||
"player": {},
|
||||
"filter": {}
|
||||
}
|
||||
header = {}
|
||||
|
||||
def localProxy(self,param):
|
||||
action = {
|
||||
'url':'',
|
||||
'header':'',
|
||||
'param':'',
|
||||
'type':'string',
|
||||
'after':''
|
||||
}
|
||||
return [200, "video/MP2T", action, ""]
|
||||
Reference in New Issue
Block a user