1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
|
# -*- coding: utf-8 -*-
# Copyright 2019-2023 Mike Fährmann
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
"""Extractors for https://www.sex.com/"""
from .common import Extractor, Message
from .. import text
from datetime import datetime
BASE_PATTERN = r"(?:https?://)?(?:www\.)?sex\.com"
class SexcomExtractor(Extractor):
"""Base class for sexcom extractors"""
category = "sexcom"
directory_fmt = ("{category}")
filename_fmt = "{pin_id}{title:? //}.{extension}"
archive_fmt = "{pin_id}"
root = "https://www.sex.com"
def items(self):
yield Message.Directory, self.metadata()
for pin in map(self._parse_pin, self.pins()):
if not pin:
continue
url = pin["url"]
parts = url.rsplit("/", 4)
try:
pin["date_url"] = dt = datetime(
int(parts[1]), int(parts[2]), int(parts[3]))
if "date" not in pin:
pin["date"] = dt
except Exception:
pass
yield Message.Url, url, pin
def metadata(self):
return {}
def pins(self):
return ()
def _pagination(self, url):
while True:
extr = text.extract_from(self.request(url).text)
url = extr('<link rel="next" href="', '"')
while True:
href = extr('<a class="image_wrapper" href="', '"')
if not href:
break
yield self.root + href
if not url:
return
url = text.urljoin(self.root, text.unescape(url))
def _parse_pin(self, url):
response = self.request(url, fatal=False)
if response.status_code >= 400:
self.log.warning('Unable to fetch %s ("%s %s")',
url, response.status_code, response.reason)
return None
if "/pin/" in response.url:
return self._parse_pin_legacy(response)
if "/videos/" in response.url:
return self._parse_pin_video(response)
return self._parse_pin_gifs(response)
def _parse_pin_legacy(self, response):
extr = text.extract_from(response.text)
data = {}
data["_http_headers"] = {"Referer": response.url}
data["thumbnail"] = extr('itemprop="thumbnail" content="', '"')
data["type"] = extr('<h1>' , '<').rstrip(" -").strip().lower()
data["title"] = text.unescape(extr('itemprop="name">' , '<'))
data["repins"] = text.parse_int(text.extract(
extr('"btn-group"', '</div>'), '"btn btn-primary">' , '<')[0])
data["likes"] = text.parse_int(text.extract(
extr('"btn-group"', '</div>'), '"btn btn-default">' , '<')[0])
data["pin_id"] = text.parse_int(extr('data-id="', '"'))
if data["type"] == "video":
info = extr("player.updateSrc(", ");")
if info:
try:
path, _ = text.rextract(
info, "src: '", "'", info.index("label: 'HD'"))
except ValueError:
path = text.extr(info, "src: '", "'")
text.nameext_from_url(path, data)
data["url"] = path
else:
iframe = extr('<iframe', '>')
src = (text.extr(iframe, ' src="', '"') or
text.extr(iframe, " src='", "'"))
if not src:
self.log.warning(
"Unable to fetch media from %s", response.url)
return None
data["extension"] = None
data["url"] = "ytdl:" + src
else:
data["_http_validate"] = _check_empty
url = text.unescape(extr(' src="', '"'))
data["url"] = url.partition("?")[0]
data["_fallback"] = (url,)
text.nameext_from_url(data["url"], data)
data["uploader"] = extr('itemprop="author">', '<')
data["date"] = text.parse_datetime(extr('datetime="', '"'))
data["tags"] = text.split_html(extr('class="tags"> Tags', '</div>'))
data["comments"] = text.parse_int(extr('Comments (', ')'))
return data
def _parse_pin_gifs(self, response):
extr = text.extract_from(response.text)
data = {
"_http_headers": {"Referer": response.url},
"type": "gif",
"url": extr(' href="', '"'),
"title": text.unescape(extr("<title>", " Gif | Sex.com<")),
"pin_id": text.parse_int(extr(
'rel="canonical" href="', '"').rpartition("/")[2]),
"tags": text.split_html(extr("</h1>", "</section>")),
}
return text.nameext_from_url(data["url"], data)
def _parse_pin_video(self, response):
extr = text.extract_from(response.text)
if not self.cookies.get("CloudFront-Key-Pair-Id", domain=".sex.com"):
self.log.warning("CloudFront cookies required for video downloads")
data = {
"_ytdl_manifest": "hls",
"extension": "mp4",
"type": "video",
"title": text.unescape(extr("<title>", " | Sex.com<")),
"pin_id": text.parse_int(extr(
'rel="canonical" href="', '"').rpartition("/")[2]),
"tags": text.split_html(extr(
'event_name="video_tags_click"', "<div data-testid=")
.partition(">")[2]),
"url": "ytdl:" + extr('<source src="', '"'),
}
return data
class SexcomPinExtractor(SexcomExtractor):
"""Extractor for a pinned image or video on www.sex.com"""
subcategory = "pin"
directory_fmt = ("{category}",)
pattern = (BASE_PATTERN +
r"(/(?:pin|\w\w/(?:gif|video)s)/\d+/?)(?!.*#related$)")
example = "https://www.sex.com/pin/12345-TITLE/"
def pins(self):
return (self.root + self.groups[0],)
class SexcomRelatedPinExtractor(SexcomPinExtractor):
"""Extractor for related pins on www.sex.com"""
subcategory = "related-pin"
directory_fmt = ("{category}", "related {original_pin[pin_id]}")
pattern = BASE_PATTERN + r"(/pin/(\d+)/?).*#related$"
example = "https://www.sex.com/pin/12345#related"
def metadata(self):
pin = self._parse_pin(SexcomPinExtractor.pins(self)[0])
return {"original_pin": pin}
def pins(self):
url = "{}/pin/related?pinId={}&limit=24&offset=0".format(
self.root, self.groups[1])
return self._pagination(url)
class SexcomPinsExtractor(SexcomExtractor):
"""Extractor for a user's pins on www.sex.com"""
subcategory = "pins"
directory_fmt = ("{category}", "{user}")
pattern = BASE_PATTERN + r"/user/([^/?#]+)/pins/"
example = "https://www.sex.com/user/USER/pins/"
def metadata(self):
return {"user": text.unquote(self.groups[0])}
def pins(self):
url = "{}/user/{}/pins/".format(self.root, self.groups[0])
return self._pagination(url)
class SexcomLikesExtractor(SexcomExtractor):
"""Extractor for a user's liked pins on www.sex.com"""
subcategory = "likes"
directory_fmt = ("{category}", "{user}", "Likes")
pattern = BASE_PATTERN + r"/user/([^/?#]+)/likes/"
example = "https://www.sex.com/user/USER/likes/"
def metadata(self):
return {"user": text.unquote(self.groups[0])}
def pins(self):
url = "{}/user/{}/likes/".format(self.root, self.groups[0])
return self._pagination(url)
class SexcomBoardExtractor(SexcomExtractor):
"""Extractor for pins from a board on www.sex.com"""
subcategory = "board"
directory_fmt = ("{category}", "{user}", "{board}")
pattern = (BASE_PATTERN + r"/user"
r"/([^/?#]+)/(?!(?:following|pins|repins|likes)/)([^/?#]+)")
example = "https://www.sex.com/user/USER/BOARD/"
def metadata(self):
self.user, self.board = self.groups
return {
"user" : text.unquote(self.user),
"board": text.unquote(self.board),
}
def pins(self):
url = "{}/user/{}/{}/".format(self.root, self.user, self.board)
return self._pagination(url)
class SexcomSearchExtractor(SexcomExtractor):
"""Extractor for search results on www.sex.com"""
subcategory = "search"
directory_fmt = ("{category}", "search", "{search[query]}")
pattern = (BASE_PATTERN + r"/((?:"
r"(pic|gif|video)s/([^/?#]*)|search/(pic|gif|video)s"
r")/?(?:\?([^#]+))?)")
example = "https://www.sex.com/search/pics?query=QUERY"
def _init(self):
self.path, t1, query_alt, t2, query = self.groups
self.search = text.parse_query(query)
self.search["type"] = t1 or t2
if "query" not in self.search:
self.search["query"] = query_alt or ""
def metadata(self):
return {"search": self.search}
def pins(self):
url = "{}/{}".format(self.root, self.path)
return self._pagination(url)
def _check_empty(response):
return response.headers.get("content-length") != "0"
|