mirror of
https://github.com/9001/copyparty.git
synced 2026-08-13 13:53:06 -06:00
show subvolume size in listings;
* descends recursively to all nested volumes * values are static, update on volume-rescan * closes #634 #1033 #1390 Co-authored-by: Victor Phillips <victor.m.phillips@protonmail.com>
This commit is contained in:
parent
9f5f9d8884
commit
5c157be955
|
|
@ -7624,6 +7624,26 @@ class HttpCli(object):
|
||||||
(fe["sz"], fe["tags"][".files"]) = hit
|
(fe["sz"], fe["tags"][".files"]) = hit
|
||||||
except:
|
except:
|
||||||
pass # 404 or mojibake
|
pass # 404 or mojibake
|
||||||
|
if vfs_virt:
|
||||||
|
q = "select sz, nf from ds where rd='' limit 1"
|
||||||
|
try:
|
||||||
|
for fe in [x for x in dirs if x["name"] in vfs_virt]:
|
||||||
|
if ".files" not in fe["tags"]:
|
||||||
|
fe["tags"][".files"] = 0
|
||||||
|
vols = [vn.nodes[fe["name"]]]
|
||||||
|
while vols:
|
||||||
|
vn2 = vols.pop()
|
||||||
|
if self.uname not in vn2.axs.uread:
|
||||||
|
continue
|
||||||
|
vols += list(vn2.nodes.values())
|
||||||
|
if vn2.dbv not in (vn2, None):
|
||||||
|
continue
|
||||||
|
hit = idx.get_cur(vn2).execute(q).fetchone()
|
||||||
|
if hit:
|
||||||
|
fe["sz"] += hit[0]
|
||||||
|
fe["tags"][".files"] += hit[1]
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
|
||||||
taglist = [k for k in lmte if k in tagset]
|
taglist = [k for k in lmte if k in tagset]
|
||||||
else:
|
else:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue