Merge branch 'master' of https://github.com/DarkstaIkers/youtube-dl into DarkstaIkers...
[youtube-dl] / youtube_dl / extractor / tube8.py
1 from __future__ import unicode_literals
2
3 import re
4
5 from ..utils import (
6     int_or_none,
7     str_to_int,
8 )
9 from .keezmovies import KeezMoviesIE
10
11
12 class Tube8IE(KeezMoviesIE):
13     _VALID_URL = r'https?://(?:www\.)?tube8\.com/(?:[^/]+/)+(?P<display_id>[^/]+)/(?P<id>\d+)'
14     _TESTS = [{
15         'url': 'http://www.tube8.com/teen/kasia-music-video/229795/',
16         'md5': '65e20c48e6abff62ed0c3965fff13a39',
17         'info_dict': {
18             'id': '229795',
19             'display_id': 'kasia-music-video',
20             'ext': 'mp4',
21             'description': 'hot teen Kasia grinding',
22             'uploader': 'unknown',
23             'title': 'Kasia music video',
24             'age_limit': 18,
25             'duration': 230,
26             'categories': ['Teen'],
27             'tags': ['dancing'],
28         },
29     }, {
30         'url': 'http://www.tube8.com/shemale/teen/blonde-cd-gets-kidnapped-by-two-blacks-and-punished-for-being-a-slutty-girl/19569151/',
31         'only_matching': True,
32     }]
33
34     def _real_extract(self, url):
35         webpage, info = self._extract_info(url)
36
37         if not info['title']:
38             info['title'] = self._html_search_regex(
39                 r'videoTitle\s*=\s*"([^"]+)', webpage, 'title')
40
41         description = self._html_search_regex(
42             r'>Description:</strong>\s*(.+?)\s*<', webpage, 'description', fatal=False)
43         uploader = self._html_search_regex(
44             r'<span class="username">\s*(.+?)\s*<',
45             webpage, 'uploader', fatal=False)
46
47         like_count = int_or_none(self._search_regex(
48             r'rupVar\s*=\s*"(\d+)"', webpage, 'like count', fatal=False))
49         dislike_count = int_or_none(self._search_regex(
50             r'rdownVar\s*=\s*"(\d+)"', webpage, 'dislike count', fatal=False))
51         view_count = str_to_int(self._search_regex(
52             r'<strong>Views: </strong>([\d,\.]+)\s*</li>',
53             webpage, 'view count', fatal=False))
54         comment_count = str_to_int(self._search_regex(
55             r'<span id="allCommentsCount">(\d+)</span>',
56             webpage, 'comment count', fatal=False))
57
58         category = self._search_regex(
59             r'Category:\s*</strong>\s*<a[^>]+href=[^>]+>([^<]+)',
60             webpage, 'category', fatal=False)
61         categories = [category] if category else None
62
63         tags_str = self._search_regex(
64             r'(?s)Tags:\s*</strong>(.+?)</(?!a)',
65             webpage, 'tags', fatal=False)
66         tags = [t for t in re.findall(
67             r'<a[^>]+href=[^>]+>([^<]+)', tags_str)] if tags_str else None
68
69         info.update({
70             'description': description,
71             'uploader': uploader,
72             'view_count': view_count,
73             'like_count': like_count,
74             'dislike_count': dislike_count,
75             'comment_count': comment_count,
76             'categories': categories,
77             'tags': tags,
78         })
79
80         return info