-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathblobs_act.py
317 lines (270 loc) · 12 KB
/
blobs_act.py
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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
#!/usr/bin/env python3
# --------------------------------------------------------------------------- #
# The MIT License (MIT) #
# #
# Copyright (c) 2021 Eliud Cabrera Castillo <[email protected]> #
# #
# Permission is hereby granted, free of charge, to any person obtaining #
# a copy of this software and associated documentation files #
# (the "Software"), to deal in the Software without restriction, including #
# without limitation the rights to use, copy, modify, merge, publish, #
# distribute, sublicense, and/or sell copies of the Software, and to permit #
# persons to whom the Software is furnished to do so, subject to the #
# following conditions: #
# #
# The above copyright notice and this permission notice shall be included #
# in all copies or substantial portions of the Software. #
# #
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, #
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL #
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER #
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING #
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER #
# DEALINGS IN THE SOFTWARE. #
# --------------------------------------------------------------------------- #
"""Functions to perform a few actions with the blobs from LBRY content."""
import os
import requests
import lbrytools.funcs as funcs
import lbrytools.download as dld
import lbrytools.clean as clean
import lbrytools.blobs as blobs
def blob_get(blob=None, action="get", out="",
server="http://localhost:5279"):
"""Get or announce one blob from the LBRY network.
At the moment it cannot be used with missing blobs;
the command hangs and never timeouts.
It can only be used with a blob that is already downloaded.
This bug is reported in lbryio/lbry-sdk, issue #2070.
Therefore, at this moment this function is not very useful.
Parameters
----------
blob: str
The 96-alphanumeric character that denotes a blob.
This will be downloaded to the `blobfiles` directory,
which in Linux is normally
`'$HOME/.locals/share/lbry/lbrynet/blobfiles'`
action: str, optional
It defaults to `'get'`, in which case it downloads
the specified `blob`.
It can be `'get'`, `'announce'`, or `'both'`.
out: str, optional
It defaults to an empty string `""`.
It is an arbitrary string that will be printed before the string
`'lbrynet blob get <blob>'`.
server: str, optional
It defaults to `'http://localhost:5279'`.
This is the address of the `lbrynet` daemon, which should be running
in your computer before using any `lbrynet` command.
Normally, there is no need to change this parameter from its default
value.
Returns
-------
bool
It returns `True` if it finished downloading or announcing
the indicated blob successfully.
If there is a problem or non existing blob hash,
it will return `False`.
"""
if not funcs.server_exists(server=server):
return False
if not isinstance(blob, str) or len(blob) < 96:
print(">>> Error: blob must be a 96-character alphanumeric string")
print(f"blob={blob}")
return False
if (not isinstance(action, str)
or action not in ("get", "announce", "both")):
print(">>> Error: action can only be 'announce', 'get', 'both'")
print(f"action={action}")
return False
cmd = ["lbrynet",
"blob",
"get",
blob]
if action in "announce":
cmd[2] = "announce"
print(out + " ".join(cmd))
msg = {"method": cmd[1] + "_" + cmd[2],
"params": {"blob_hash": blob}}
output = requests.post(server, json=msg).json()
if "error" in output:
print(output["error"]["data"]["name"])
if action in "both":
cmd[2] = "announce"
print(out + " ".join(cmd))
msg = {"method": cmd[1] + "_" + cmd[2],
"params": {"blob_hash": blob}}
output = requests.post(server, json=msg).json()
if "error" in output:
print(output["error"]["data"]["name"])
return True
def blobs_action(blobfiles=None, action="get",
start=1, end=0,
server="http://localhost:5279"):
"""Get or announce all binary blobs from the blobfiles directory.
Parameters
----------
blobfiles: str
It defaults to `'$HOME/.local/share/lbry/lbrynet/blobfiles'`.
The path to the directory where the blobs were downloaded.
This is normally seen with `lbrynet settings get`, under `'data_dir'`.
It can be any other directory if it is symbolically linked
to it, such as `'/opt/lbryblobfiles'`
action: str, optional
It defaults to `'get'`, in which case it re-downloads all blobs
in the `blobfiles` directory.
It can be `'get'`, `'announce'`, or `'both'`.
start: int, optional
It defaults to 1.
Operate on the blob starting from this index in the
directory of blobs `blobfiles`.
end: int, optional
It defaults to 0.
Operate until and including this index in the list of blobs
in the directory of blobs `blobfiles`.
If it is 0, it is the same as the last index in the list.
server: str, optional
It defaults to `'http://localhost:5279'`.
This is the address of the `lbrynet` daemon, which should be running
in your computer before using any `lbrynet` command.
Normally, there is no need to change this parameter from its default
value.
Returns
-------
bool
It returns `True` if it finished refreshing all blobs successfully
although this may take some time if all blobs are considered.
If there is a problem or non existing blobfiles directory,
it will return `False`.
"""
if not funcs.server_exists(server=server):
return False
if (not blobfiles or not isinstance(blobfiles, str)
or not os.path.exists(blobfiles)):
print("Perform an action with the blobs from the blobfiles directory")
print(f"blobfiles={blobfiles}, action={action}")
print("This is typically '$HOME/.local/share/lbry/lbrynet/blobfiles'")
home = os.path.expanduser("~")
blobfiles = os.path.join(home,
".local", "share",
"lbry", "lbrynet", "blobfiles")
if not os.path.exists(blobfiles):
print(f"Blobfiles directory does not exist: {blobfiles}")
return False
if (not isinstance(action, str)
or action not in ("get", "announce", "both")):
print(">>> Error: action can only be 'announce', 'get', 'both'")
print(f"action={action}")
return False
list_blobs = os.listdir(blobfiles)
n_blobs = len(list_blobs)
for it, blob in enumerate(list_blobs, start=1):
if it < start:
continue
if end != 0 and it > end:
break
out = "{:6d}/{:6d}, ".format(it, n_blobs)
blob_get(blob=blob, action=action, out=out,
server=server)
return True
def redownload_blobs(uri=None, cid=None, name=None,
ddir=None, own_dir=True,
blobfiles=None, print_each=False,
server="http://localhost:5279"):
"""Redownload the blobs from a claim.
If all blobs from a given claim are present, the function does nothing.
Parameters
----------
uri: str
A unified resource identifier (URI) to a claim on the LBRY network.
It can be full or partial.
::
uri = 'lbry://@MyChannel#3/some-video-name#2'
uri = '@MyChannel#3/some-video-name#2'
uri = 'some-video-name'
The URI is also called the `'canonical_url'` of the claim.
cid: str, optional
A `'claim_id'` for a claim on the LBRY network.
It is a 40 character alphanumeric string.
name: str, optional
A name of a claim on the LBRY network.
It is normally the last part of a full URI.
::
uri = 'lbry://@MyChannel#3/some-video-name#2'
name = 'some-video-name'
ddir: str, optional
It defaults to `$HOME`.
The path to the download directory.
own_dir: bool, optional
It defaults to `True`, in which case it places the downloaded
content inside a subdirectory named after the channel in `ddir`.
blobfiles: str, optional
It defaults to `'$HOME/.local/share/lbry/lbrynet/blobfiles'`.
The path to the directory where the blobs were downloaded.
This is normally seen with `lbrynet settings get`, under `'data_dir'`.
It can be any other directory if it is symbolically linked
to it, such as `'/opt/lbryblobfiles'`
print_each: bool, optional
It defaults to `False`.
If it is `True` it will not print all blobs
that belong to the claim, and whether each of them is already
in `blobfiles`.
server: str, optional
It defaults to `'http://localhost:5279'`.
This is the address of the `lbrynet` daemon, which should be running
in your computer before using any `lbrynet` command.
Normally, there is no need to change this parameter from its default
value.
Returns
-------
bool
It returns `True` if all blobs are already present in the system
so nothing needs to be downloaded.
It returns `False` if the item does not exist,
of if at least one blob was downloaded.
Bug
---
At the moment downloading missing blobs is not possible;
the command hangs and never timeouts.
::
lbrynet blob get <hash>
This bug is reported in lbryio/lbry-sdk, issue #2070.
If the bug is solved, `blob_get` could be called with the missing blob
hash to only get that piece.
"""
if not funcs.server_exists(server=server):
return False
blob_info = blobs.count_blobs(uri=uri, cid=cid, name=name,
blobfiles=blobfiles,
print_each=print_each,
server=server)
if "error_not_found" in blob_info:
return False
print(80 * "-")
if "error_no_sd_hash" in blob_info:
print(blob_info["error_no_sd_hash"]
+ "; start download from the start.")
elif blob_info["all_present"]:
print("All blobs files present, nothing to download.")
return True
else:
print("Blobs missing; redownload claim.")
print()
# If the bug #2070 is solved, this could be run.
# print("Blobs missing; redownload blobs")
# for blob in blob_info["missing"]:
# out = f"{blob[0]}, "
# blob_get(blob=blob[1], action="get", out=out,
# server=server)
# The missing blobs will only be downloaded if the media file
# is not present so we must make sure it is deleted.
# print("Blobs missing; redownload claim")
print("Ensure the media file is deleted.")
clean.delete_single(cid=blob_info["claim_id"], what="media",
server=server)
print()
dld.download_single(cid=blob_info["claim_id"],
ddir=ddir, own_dir=own_dir,
server=server)
return False