2012-02-07 00:17:33 +00:00
|
|
|
#!/mod/bin/jimsh
|
|
|
|
|
|
|
|
package require sqlite3
|
|
|
|
package require cgi
|
2012-05-21 20:23:41 +00:00
|
|
|
source /mod/webif/lib/setup
|
2012-06-15 21:34:07 +00:00
|
|
|
require ts.class system.class
|
2012-02-07 00:17:33 +00:00
|
|
|
|
|
|
|
puts "Content-Type: text/html\r\n\r\n"
|
|
|
|
|
|
|
|
cgi_input
|
|
|
|
#cgi_dump
|
|
|
|
|
|
|
|
set rfile [cgi_get file]
|
|
|
|
set ts [ts fetch $rfile]
|
|
|
|
set dir [file dirname $rfile]
|
|
|
|
set len [$ts duration 1]
|
|
|
|
lassign [$ts dlnaloc] url
|
|
|
|
|
2012-03-11 00:26:14 +00:00
|
|
|
if {$url eq ""} {
|
|
|
|
puts "This file has not been indexed by the media server.
|
|
|
|
Cannot decrypt."
|
|
|
|
exit
|
|
|
|
}
|
|
|
|
|
2012-06-15 21:34:07 +00:00
|
|
|
if {[system inuse $rfile]} {
|
|
|
|
puts "This file is in use. Cannot decrypt at the moment."
|
|
|
|
exit
|
|
|
|
}
|
|
|
|
|
2012-02-07 00:17:33 +00:00
|
|
|
set xstart [clock milliseconds]
|
|
|
|
|
|
|
|
set base [file rootname $rfile]
|
|
|
|
set origdir "$dir/_original"
|
|
|
|
if {![file exists $origdir]} { file mkdir $origdir }
|
|
|
|
|
|
|
|
set shname [file tail $base]
|
|
|
|
puts "Processing $shname"
|
|
|
|
|
2012-03-11 00:26:14 +00:00
|
|
|
if {[file exists "$origdir/$shname.ts"]} {
|
|
|
|
puts "The file already exists in _original, cannot decrypt."
|
|
|
|
exit
|
|
|
|
}
|
|
|
|
|
2012-02-07 00:17:33 +00:00
|
|
|
exec wget -O "$rfile.decrypting" $url
|
|
|
|
|
|
|
|
puts "Moving recording to $origdir"
|
|
|
|
|
|
|
|
foreach f [glob -nocomplain "${base}.*"] {
|
|
|
|
if {[file extension $f] eq ".decrypting"} { continue }
|
|
|
|
set tail [file tail $f]
|
|
|
|
puts " $tail"
|
|
|
|
file rename $f "${origdir}/$tail"
|
|
|
|
}
|
|
|
|
|
|
|
|
file rename "$rfile.decrypting" $rfile
|
|
|
|
|
|
|
|
foreach ext {nts hmt thm} {
|
|
|
|
set sidecar "$shname.$ext"
|
|
|
|
if {[file exists "$origdir/$sidecar"]} {
|
|
|
|
puts "Copying back sidecar $ext"
|
|
|
|
file copy "$origdir/$sidecar" "$dir/$sidecar"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if {[file exists "$dir/$shname.hmt"]} {
|
|
|
|
exec /mod/bin/hmt -encrypted "$dir/$shname.hmt"
|
|
|
|
}
|
|
|
|
|
|
|
|
set xtime [expr [expr [clock milliseconds] - $xstart] / 1000.0]
|
|
|
|
puts "Time taken: $xtime"
|
|
|
|
|