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
|
# -*- coding: utf-8 -*-
# Copyright 2019-2025 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.mangoxo.com/"""
from .common import Extractor, Message
from .. import text, exception
from ..cache import cache
import hashlib
import time
class MangoxoExtractor(Extractor):
"""Base class for mangoxo extractors"""
category = "mangoxo"
root = "https://www.mangoxo.com"
cookies_domain = "www.mangoxo.com"
cookies_names = ("SESSION",)
_warning = True
def login(self):
username, password = self._get_auth_info()
if username:
self.cookies_update(self._login_impl(username, password))
elif MangoxoExtractor._warning:
MangoxoExtractor._warning = False
self.log.warning("Unauthenticated users cannot see "
"more than 5 images per album")
@cache(maxage=3*3600, keyarg=1)
def _login_impl(self, username, password):
self.log.info("Logging in as %s", username)
url = self.root + "/login"
page = self.request(url).text
token = text.extr(page, 'id="loginToken" value="', '"')
url = self.root + "/api/login"
headers = {
"X-Requested-With": "XMLHttpRequest",
"Referer": self.root + "/login",
}
data = self._sign_by_md5(username, password, token)
response = self.request(url, method="POST", headers=headers, data=data)
data = response.json()
if str(data.get("result")) != "1":
raise exception.AuthenticationError(data.get("msg"))
return {"SESSION": self.cookies.get("SESSION")}
def _sign_by_md5(self, username, password, token):
# https://dns.mangoxo.com/libs/plugins/phoenix-ui/js/phoenix-ui.js
params = [
("username" , username),
("password" , password),
("token" , token),
("timestamp", str(int(time.time()))),
]
query = "&".join("=".join(item) for item in sorted(params))
query += "&secretKey=340836904"
sign = hashlib.md5(query.encode()).hexdigest()
params.append(("sign", sign.upper()))
return params
def _total_pages(self, page):
return text.parse_int(text.extract(page, "total :", ",")[0])
class MangoxoAlbumExtractor(MangoxoExtractor):
"""Extractor for albums on mangoxo.com"""
subcategory = "album"
filename_fmt = "{album[id]}_{num:>03}.{extension}"
directory_fmt = ("{category}", "{channel[name]}", "{album[name]}")
archive_fmt = "{album[id]}_{num}"
pattern = r"(?:https?://)?(?:www\.)?mangoxo\.com/album/(\w+)"
example = "https://www.mangoxo.com/album/ID"
def __init__(self, match):
MangoxoExtractor.__init__(self, match)
self.album_id = match[1]
def items(self):
self.login()
url = f"{self.root}/album/{self.album_id}/"
page = self.request(url).text
data = self.metadata(page)
imgs = self.images(url, page)
yield Message.Directory, data
data["extension"] = None
for data["num"], path in enumerate(imgs, 1):
data["id"] = text.parse_int(text.extr(path, "=", "&"))
url = self.root + "/external/" + path.rpartition("url=")[2]
yield Message.Url, url, text.nameext_from_url(url, data)
def metadata(self, page):
"""Return general metadata"""
extr = text.extract_from(page)
title = extr('<img id="cover-img" alt="', '"')
cid = extr('href="https://www.mangoxo.com/user/', '"')
cname = extr('<img alt="', '"')
cover = extr(' src="', '"')
count = extr('id="pic-count">', '<')
date = extr('class="fa fa-calendar"></i>', '<')
descr = extr('<pre>', '</pre>')
return {
"channel": {
"id": cid,
"name": text.unescape(cname),
"cover": cover,
},
"album": {
"id": self.album_id,
"name": text.unescape(title),
"date": text.parse_datetime(date.strip(), "%Y.%m.%d %H:%M"),
"description": text.unescape(descr),
},
"count": text.parse_int(count),
}
def images(self, url, page):
"""Generator; Yields all image URLs"""
total = self._total_pages(page)
num = 1
while True:
yield from text.extract_iter(
page, 'class="lightgallery-item" href="', '"')
if num >= total:
return
num += 1
page = self.request(url + str(num)).text
class MangoxoChannelExtractor(MangoxoExtractor):
"""Extractor for all albums on a mangoxo channel"""
subcategory = "channel"
pattern = r"(?:https?://)?(?:www\.)?mangoxo\.com/(\w+)/album"
example = "https://www.mangoxo.com/USER/album"
def __init__(self, match):
MangoxoExtractor.__init__(self, match)
self.user = match[1]
def items(self):
self.login()
num = total = 1
url = f"{self.root}/{self.user}/album/"
data = {"_extractor": MangoxoAlbumExtractor}
while True:
page = self.request(url + str(num)).text
for album in text.extract_iter(
page, '<a class="link black" href="', '"'):
yield Message.Queue, album, data
if num == 1:
total = self._total_pages(page)
if num >= total:
return
num += 1
|