2011-06-25 20:59:50 +00:00
|
|
|
#!/mod/bin/jimsh
|
|
|
|
|
|
|
|
package require cgi
|
2013-02-09 22:46:15 +00:00
|
|
|
source /mod/webif/lib/setup
|
2011-06-25 20:59:50 +00:00
|
|
|
|
2013-02-09 22:46:15 +00:00
|
|
|
httpheader "application/json"
|
2011-06-25 20:59:50 +00:00
|
|
|
|
2013-02-09 22:46:15 +00:00
|
|
|
set dir [cgi_get dir]
|
2012-08-07 22:22:30 +00:00
|
|
|
set dlen [string length "$dir/"]
|
2011-06-25 20:59:50 +00:00
|
|
|
|
|
|
|
#9.4G /media/My Video/Archive
|
|
|
|
#1.4G /media/My Video/CSI_ Crime Scene Investigation
|
|
|
|
puts "{"
|
2012-01-18 00:02:55 +00:00
|
|
|
foreach line [split [exec /mod/bin/busybox/du -h -d 1 "$dir/"] "\n"] {
|
|
|
|
lassign [split $line "\t"] size node
|
2012-08-07 22:22:30 +00:00
|
|
|
set node [string range $node $dlen end]
|
2011-06-25 20:59:50 +00:00
|
|
|
puts "\"$node\" : \"$size\","
|
|
|
|
}
|
2011-08-20 20:45:23 +00:00
|
|
|
|
|
|
|
# Handle symbolic links.
|
2012-08-07 22:22:30 +00:00
|
|
|
foreach file [readdir $dir] {
|
|
|
|
set file "$dir/$file"
|
2011-08-20 20:45:23 +00:00
|
|
|
if {[catch {set lk [file readlink $file]}]} continue
|
2011-08-20 21:30:43 +00:00
|
|
|
|
|
|
|
if {![string match "/*" $lk]} { set lk "$dir/$lk" }
|
|
|
|
|
2011-08-20 20:50:40 +00:00
|
|
|
if {![file isdirectory $lk]} continue
|
2011-08-20 20:45:23 +00:00
|
|
|
foreach line [split [exec /mod/bin/busybox/du -h "$lk"] "\n"] {
|
|
|
|
set fields [split $line "\t"]
|
|
|
|
if {[lindex $fields 1] eq $lk} {
|
|
|
|
set node [file tail $file]
|
|
|
|
set size [lindex $fields 0]
|
|
|
|
puts "\"$node\" : \"@$size\","
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-25 20:59:50 +00:00
|
|
|
puts "\"dummy\" : \"\""
|
|
|
|
puts "}"
|
|
|
|
|