2011-07-08 20:39:57 +00:00
|
|
|
#!/mod/bin/jimsh
|
|
|
|
|
|
|
|
package require cgi
|
2012-05-21 20:23:41 +00:00
|
|
|
source /mod/webif/lib/ts.class
|
2011-07-08 20:39:57 +00:00
|
|
|
|
|
|
|
puts "Content-Type: text/html"
|
|
|
|
puts ""
|
|
|
|
|
|
|
|
cgi_input
|
|
|
|
#cgi_dump
|
|
|
|
|
|
|
|
#set _cgi(file) "/media/My Video/The Walking Dead/The Walking Dead S01E06.ts"
|
|
|
|
|
|
|
|
set file [dict get $_cgi file]
|
|
|
|
set ts [ts fetch $file]
|
|
|
|
if {[set ts [ts fetch $file]] != 0} {
|
|
|
|
set action enc
|
|
|
|
if {[$ts flag "Encrypted"]} { set action unenc }
|
|
|
|
|
|
|
|
if {[$ts $action]} {
|
|
|
|
puts "Successfully [set action]ed $file."
|
|
|
|
} else {
|
|
|
|
puts "Problem [set action]ing $file,
|
|
|
|
[$ts get error]"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|