mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-24 04:05:39 +01:00
30fdeef25d
Silly me. :(
37 lines
1.3 KiB
Python
37 lines
1.3 KiB
Python
# ex:ts=4:sw=4:sts=4:et
|
|
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
from __future__ import absolute_import
|
|
import sys
|
|
import re
|
|
|
|
from svtplay_dl.utils import get_http_data
|
|
from svtplay_dl.service.svtplay import Svtplay
|
|
from svtplay_dl.log import log
|
|
|
|
class OppetArkiv(Svtplay):
|
|
supported_domains = ['oppetarkiv.se']
|
|
|
|
def find_all_episodes(self, options):
|
|
page = 1
|
|
match = re.search(r'"http://www.oppetarkiv.se/etikett/titel/([^"/]+)', self.get_urldata())
|
|
if match is None:
|
|
match = re.search(r'"http://www.oppetarkiv.se/etikett/titel/([^"/]+)', self.url)
|
|
if match is None:
|
|
log.error("Couldn't find title")
|
|
sys.exit(2)
|
|
program = match.group(1)
|
|
more = True
|
|
episodes = []
|
|
while more:
|
|
url = "http://www.oppetarkiv.se/etikett/titel/%s/?sida=%s&sort=tid_stigande&embed=true" % (program, page)
|
|
data = get_http_data(url)
|
|
visa = re.search(r'svtXColorDarkLightGrey', data)
|
|
if not visa:
|
|
more = False
|
|
regex = re.compile(r'(http://www.oppetarkiv.se/video/[^"]+)')
|
|
for match in regex.finditer(data):
|
|
episodes.append(match.group(1))
|
|
page += 1
|
|
|
|
return episodes
|