2011-06-26 23:05:38 +00:00
|
|
|
#!/mod/bin/jimsh
|
|
|
|
|
|
|
|
package require cgi
|
2012-05-21 20:23:41 +00:00
|
|
|
source /mod/webif/lib/setup
|
|
|
|
require ts.class
|
2011-06-26 23:05:38 +00:00
|
|
|
|
2013-02-09 22:46:15 +00:00
|
|
|
httpheader
|
2011-06-26 23:05:38 +00:00
|
|
|
|
2012-11-18 12:07:53 +00:00
|
|
|
set file [cgi_get renamefile "-"]
|
|
|
|
if {$file eq "-"} exit
|
2011-06-26 23:05:38 +00:00
|
|
|
|
2012-11-18 12:07:53 +00:00
|
|
|
set newfile [string trim [cgi_get rename]]
|
|
|
|
set dir [file dirname $file]
|
2011-06-26 23:05:38 +00:00
|
|
|
|
|
|
|
if {[file isdirectory $file]} {
|
|
|
|
#puts "Directory."
|
|
|
|
if {$newfile ne ""} {
|
|
|
|
set newfile "${dir}/${newfile}"
|
|
|
|
file rename $file $newfile
|
|
|
|
}
|
|
|
|
} elseif {[set ts [ts fetch $file]] != 0} {
|
|
|
|
#puts "TS file."
|
|
|
|
|
2013-01-06 23:50:39 +00:00
|
|
|
foreach attr {title synopsis guidance genre} {
|
2012-11-18 12:07:53 +00:00
|
|
|
if {[catch {
|
|
|
|
set new [string trim [cgi_get "rename_$attr"]]
|
|
|
|
set old [$ts get $attr]
|
2013-02-12 00:08:54 +00:00
|
|
|
if {$new ne $old} {
|
|
|
|
if {$attr eq "guidance" ||
|
|
|
|
[string length $new] > 0} {
|
|
|
|
$ts set$attr $new
|
|
|
|
}
|
2012-11-18 12:07:53 +00:00
|
|
|
}
|
|
|
|
} msg]} {
|
|
|
|
puts "$attr: $msg"
|
2011-06-26 23:05:38 +00:00
|
|
|
}
|
|
|
|
}
|
2012-11-18 12:07:53 +00:00
|
|
|
|
|
|
|
if {"$dir/$newfile.ts" ne "$file"} { ts renamegroup $file $newfile }
|
2011-06-26 23:05:38 +00:00
|
|
|
} else {
|
|
|
|
#puts "Normal file."
|
2013-01-08 22:43:43 +00:00
|
|
|
if {$newfile ne ""} {
|
|
|
|
set newfile "$dir/$newfile[file extension $file]"
|
|
|
|
puts "Rename ($file) -> ($newfile)"
|
|
|
|
file rename $file $newfile
|
|
|
|
}
|
2011-06-26 23:05:38 +00:00
|
|
|
}
|
|
|
|
|