138 lines
4.2 KiB
Python
138 lines
4.2 KiB
Python
|
# coding: utf-8
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
import re
|
||
|
|
||
|
from .common import InfoExtractor
|
||
|
from ..compat import compat_str
|
||
|
from ..utils import (
|
||
|
merge_dicts,
|
||
|
urljoin,
|
||
|
)
|
||
|
|
||
|
|
||
|
class KanaldBaseIE(InfoExtractor):
|
||
|
|
||
|
def _real_extract(self, url):
|
||
|
video_id = self._match_id(url)
|
||
|
|
||
|
webpage = self._download_webpage(url, video_id)
|
||
|
|
||
|
info = {
|
||
|
'id': video_id,
|
||
|
}
|
||
|
|
||
|
"""FIXME: https://www.kanald.com.tr/kuzeyguney/80-bolum-izle/19364 -> Invalid control character at: line 5 column 146 (char 255)"""
|
||
|
|
||
|
json_ld = self._search_regex(
|
||
|
r'(?is)<script[^>]+type=(["\'])application/ld\+json\1[^>]*>(?:\s+)?(?P<json_ld>{[^<]+VideoObject[^<]+})(?:\s+)?</script>', webpage, 'JSON-LD', group='json_ld')
|
||
|
ld_info = self._json_ld(json_ld, video_id)
|
||
|
|
||
|
if not re.match(r'dogannet\.tv', ld_info['url']):
|
||
|
ld_info.update({
|
||
|
'url': 'https://soledge13.dogannet.tv/%s' % ld_info['url']
|
||
|
})
|
||
|
|
||
|
return merge_dicts(ld_info, info)
|
||
|
|
||
|
|
||
|
class KanaldIE(KanaldBaseIE):
|
||
|
_VALID_URL = r'''(?x)
|
||
|
https?://(?:www\.)?kanald\.com\.tr/(?:[a-zA-Z0-9-]+)/
|
||
|
(?:
|
||
|
(?:[0-9]+)-bolum|
|
||
|
(?:[0-9]+)-bolum-izle|
|
||
|
bolumler|
|
||
|
bolum
|
||
|
)/
|
||
|
(?P<id>[a-zA-Z0-9-]+)
|
||
|
'''
|
||
|
|
||
|
_TESTS = [{
|
||
|
'url': 'https://www.kanald.com.tr/kuzeyguney/1-bolum/10115',
|
||
|
'md5': '8a32b6e894d45d618360b8b01173de9a',
|
||
|
'info_dict': {
|
||
|
'id': '10115',
|
||
|
'title': '1.Bölüm',
|
||
|
'description': 'md5:64edbdd153b7eefdf92c31bf5a6e5c1b',
|
||
|
'upload_date': '20110907',
|
||
|
'timestamp': 1315426815,
|
||
|
'ext': 'm3u8',
|
||
|
}
|
||
|
}, {
|
||
|
'url': 'https://www.kanald.com.tr/kuzeyguney/79-bolum-izle/19270',
|
||
|
'only_matching': True
|
||
|
}, {
|
||
|
'url': 'https://www.kanald.com.tr/sevdanin-bahcesi/bolumler/sevdanin-bahcesi-2-bolum',
|
||
|
'only_matching': True
|
||
|
}, {
|
||
|
'url': 'https://www.kanald.com.tr/yarim-elma/bolum/yarim-elma-36-bolum',
|
||
|
'only_matching': True
|
||
|
}, {
|
||
|
'url': 'https://www.kanald.com.tr/ask-ve-gunah/bolumler/ask-ve-gunah-120-bolum-final',
|
||
|
'only_matching': True
|
||
|
}]
|
||
|
|
||
|
|
||
|
class KanaldEmbedIE(KanaldBaseIE):
|
||
|
_VALID_URL = r'https?://(?:www\.)?kanald\.com\.tr/embed/(?P<id>[a-zA-Z0-9]+)'
|
||
|
|
||
|
_TESTS = [{
|
||
|
'url': 'https://www.kanald.com.tr/embed/5465f0d2cf45af1064b73077',
|
||
|
'md5': '8a32b6e894d45d618360b8b01173de9a',
|
||
|
'info_dict': {
|
||
|
'id': '5465f0d2cf45af1064b73077',
|
||
|
'title': '1.Bölüm',
|
||
|
'description': 'md5:64edbdd153b7eefdf92c31bf5a6e5c1b',
|
||
|
'upload_date': '20110907',
|
||
|
'timestamp': 1315426815,
|
||
|
'ext': 'm3u8',
|
||
|
}
|
||
|
}]
|
||
|
|
||
|
|
||
|
class KanaldSerieIE(InfoExtractor):
|
||
|
_VALID_URL = r'https?://(?:www\.)?kanald\.com\.tr/(?P<id>[a-zA-Z0-9-]+)/(?:bolum|bolumler)$'
|
||
|
|
||
|
_TESTS = [{
|
||
|
'url': 'https://www.kanald.com.tr/kuzeyguney/bolum',
|
||
|
'info_dict': {
|
||
|
'id': 'kuzeyguney'
|
||
|
},
|
||
|
'playlist_mincount': 80
|
||
|
}, {
|
||
|
'url': 'https://www.kanald.com.tr/iki-yalanci/bolumler',
|
||
|
'only_matching': True
|
||
|
}]
|
||
|
|
||
|
def extract_episodes(self, url, playlist_id):
|
||
|
page = 1
|
||
|
has_more = True
|
||
|
|
||
|
while has_more:
|
||
|
webpage = self._download_webpage(
|
||
|
url, playlist_id, 'Downloading page %s' % page, query={
|
||
|
'page': page,
|
||
|
})
|
||
|
|
||
|
episode_urls = re.findall(r'<a class=(["\'])title\1 href=\1/(?P<url>' + re.escape(playlist_id) + r'[a-zA-Z0-9-/]+)\1[^>]*>', webpage)
|
||
|
|
||
|
if len(episode_urls) is 0:
|
||
|
has_more = False
|
||
|
continue
|
||
|
|
||
|
for episode_url in episode_urls:
|
||
|
episode_url = episode_url[1]
|
||
|
if not episode_url:
|
||
|
continue
|
||
|
yield self.url_result(
|
||
|
'https://www.kanald.com.tr/%s' % episode_url,
|
||
|
ie=KanaldIE.ie_key())
|
||
|
|
||
|
page += 1
|
||
|
|
||
|
def _real_extract(self, url):
|
||
|
playlist_id = self._match_id(url)
|
||
|
|
||
|
return self.playlist_result(self.extract_episodes(url, playlist_id), playlist_id)
|