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
|
from dataclasses import dataclass
from io import StringIO
from lxml import html, etree
import multiprocessing
import pihole as ph
import qbittorrent
import requests
import datetime
import urllib
import docker
import clutch
import random
import queue
import json
import time
import app
import os
theLastId = 0
def humanbytes(B):
'Return the given bytes as a human friendly KB, MB, GB, or TB string'
B = float(B)
KB = float(1024)
MB = float(KB ** 2) # 1,048,576
GB = float(KB ** 3) # 1,073,741,824
TB = float(KB ** 4) # 1,099,511,627,776
if B < KB:
return '{0} {1}'.format(B,'Bytes' if 0 == B > 1 else 'Byte')
elif KB <= B < MB:
return '{0:.2f} KB'.format(B/KB)
elif MB <= B < GB:
return '{0:.2f} MB'.format(B/MB)
elif GB <= B < TB:
return '{0:.2f} GB'.format(B/GB)
elif TB <= B:
return '{0:.2f} TB'.format(B/TB)
def timeout(func):
# cant get this to work with queue.Queue() for some reason?
# this works but Manager() uses an extra thread than Queue()
manager = multiprocessing.Manager()
returnVan = manager.list()
# ti = time.time()
def runFunc(q, func):
q.append(func())
def beginTimeout():
t = multiprocessing.Process(target = runFunc, args = (returnVan, func))
t.start()
t.join(timeout = app.CONFIG["servicetimeout"].getint("seconds"))
# print("Request took:", time.time() - ti)
try:
return returnVan[0]
except IndexError:
if t.is_alive():
t.terminate()
return beginTimeout
@timeout
def get_docker_stats():
client = docker.DockerClient(base_url = "tcp://%s:%s" % (app.CONFIG["docker"]["url"], app.CONFIG["docker"]["port"]))
return {
container.name: container.status
for container in client.containers.list(all = True)
}
# currently unused
@timeout
def get_qbit_stats():
numtorrents = 0
bytes_dl = 0
bytes_up = 0
qb = qbittorrent.Client('http://%s:%s/' % (app.CONFIG["qbittorrent"]["url"], app.CONFIG["qbittorrent"]["port"]))
qb.login(username = app.CONFIG["qbittorrent"]["user"], password = app.CONFIG["qbittorrent"]["passwd"])
for torrent in qb.torrents():
numtorrents += 1
bytes_up += torrent["uploaded"]
bytes_dl += torrent["downloaded"]
return {
"bytes_dl": humanbytes(bytes_dl),
"bytes_up": humanbytes(bytes_up),
"num": numtorrents,
"ratio": "%.3f" % (float(bytes_up) / float(bytes_dl))
}
@timeout
def get_trans_stats():
client = clutch.client.Client(
address = "http://%s:%s/transmission/rpc" % (app.CONFIG["transmission"]["url"], app.CONFIG["transmission"]["port"]),
# username = app.CONFIG["transmission"]["username"],
# password = app.CONFIG["transmission"]["password"]
)
stats = json.loads(client.session.stats().json())
active_for = datetime.timedelta(seconds = stats["arguments"]["cumulative_stats"]["seconds_active"])
return {
"bytes_dl": humanbytes(stats["arguments"]["cumulative_stats"]["downloaded_bytes"]),
"bytes_up": humanbytes(stats["arguments"]["cumulative_stats"]["uploaded_bytes"]),
"num": stats["arguments"]["torrent_count"],
"ratio": "%.3f" % (float(stats["arguments"]["cumulative_stats"]["uploaded_bytes"]) / float(stats["arguments"]["cumulative_stats"]["downloaded_bytes"])),
"active_for": str(active_for)
}
@timeout
def get_pihole_stats():
pihole = ph.PiHole(app.CONFIG["pihole"]["url"])
return {
"status": pihole.status,
"queries": pihole.total_queries,
"clients": pihole.unique_clients,
"percentage": pihole.ads_percentage,
"blocked": pihole.blocked,
"domains": pihole.domain_count,
"last_updated": str(datetime.datetime.fromtimestamp(pihole.gravity_last_updated["absolute"]))
}
@dataclass
class SafebooruImage:
id_: int
url: str
searchTags: list
tags: list
source: str
imurl: str
def remove_tag(self, tag):
return list(set(self.searchTags).difference(set([tag])))
@dataclass
class DownloadedImage:
imurl: str
def __enter__(self):
self.filename = os.path.join("static", "images", "random.jpg")
req = urllib.request.Request(self.imurl, headers = {'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_5_8) AppleWebKit/534.50.2 (KHTML, like Gecko) Version/5.0.6 Safari/533.22.3'})
mediaContent = urllib.request.urlopen(req).read()
with open(self.filename, "wb") as f:
f.write(mediaContent)
return self.filename
def __exit__(self, type, value, traceback):
os.remove(self.filename)
def get_num_pages(tags):
pages_url = "https://safebooru.org/index.php?page=post&s=list&tags=%s" % "+".join(tags)
tree = html.fromstring(requests.get(pages_url).content)
try:
finalpage_element = tree.xpath("/html/body/div[6]/div/div[2]/div[2]/div/a[12]")[0]
except IndexError:
return 1
else:
return int(int(urllib.parse.parse_qs(finalpage_element.get("href"))["pid"][0]) / (5*8))
def get_id_from_url(url):
return int(urllib.parse.parse_qs(url)["id"][0])
def get_random_image(tags):
global theLastId
searchPage = random.randint(1, get_num_pages(tags)) * 5 * 8
url = "https://safebooru.org/index.php?page=post&s=list&tags=%s&pid=%i" % ("+".join(tags), searchPage)
tree = html.fromstring(requests.get(url).content)
imageElements = [e for e in tree.xpath("/html/body/div[6]/div/div[2]/div[1]")[0].iter(tag = "a")]
try:
element = random.choice(imageElements)
except IndexError:
# raise ConnectionError("Couldn't find any images")
return get_random_image(tags)
url = "https://safebooru.org/" + element.get("href")
if get_id_from_url(url) == theLastId:
return get_random_image(tags)
theLastId = get_id_from_url(url)
try:
sbi = SafebooruImage(
id_ = get_id_from_url(url),
url = url,
tags = element.find("img").get("alt").split(),
searchTags = tags,
source = fix_source_url(get_source(url)),
imurl = get_imurl(url)
)
except (ConnectionError, KeyError) as e:
print("[ERROR]", e)
return get_random_image(tags)
if link_deleted(sbi.url):
print("Retried since the source was deleted...")
return get_random_image(tags)
return sbi
def get_source(url):
tree = html.fromstring(requests.get(url).content)
for element in tree.xpath('//*[@id="stats"]')[0].iter("li"):
if element.text.startswith("Source: h"):
return element.text[8:]
elif element.text.startswith("Source:"):
for child in element.iter():
if child.get("href") is not None:
return child.get("href")
raise ConnectionError("Couldn't find source image for id %i" % get_id_from_url(url))
def fix_source_url(url):
parsed = urllib.parse.urlparse(url)
if parsed.netloc == "www.pixiv.net":
return "https://www.pixiv.net/en/artworks/" + urllib.parse.parse_qs(parsed.query)["illust_id"][0]
elif parsed.netloc in ["bishie.booru.org", "www.secchan.net"]:
return ConnectionError("Couldn't get source")
elif "pximg.net" in parsed.netloc or "pixiv.net" in parsed.netloc:
return "https://www.pixiv.net/en/artworks/" + parsed.path.split("/")[-1][:8]
elif parsed.netloc == "twitter.com":
return url.replace("twitter.com", "nitter.eda.gay")
return url
def get_imurl(url):
tree = html.fromstring(requests.get(url).content)
return tree.xpath('//*[@id="image"]')[0].get("src")
def link_deleted(url):
text = requests.get(url).text
return text[text.find("<title>") + 7 : text.find("</title>")] in ["Error | nitter", "イラストコミュニケーションサービス[pixiv]"]
if __name__ == "__main__":
print(get_trans_stats())
|