| version 1.8, 2005/04/01 01:20:15 |
version 1.11, 2005/05/02 21:26:04 |
|
|
| use warnings; |
use warnings; |
| use diagnostics; |
use diagnostics; |
| |
|
| use BT::MetaInfo; |
use BT::OBTMetaInfo; |
| use LWP::UserAgent; |
use LWP::UserAgent; |
| use Time::Local; |
use Time::Local; |
| |
|
|
|
| |
|
| justme(); |
justme(); |
| |
|
| my $url_torrents = 'http://openbsd.somedomain.net/dumptorrents.php'; |
|
| my $url_upload = 'http://openbsd.somedomain.net/newtorrents.php'; |
|
| my $url_delete = 'http://openbsd.somedomain.net/deltorrents.php'; |
|
| my $url_sanity = 'http://openbsd.somedomain.net/sanity.php'; |
|
| |
|
| my $user = 'torrentup'; |
|
| my $pass = 'ssapword'; |
|
| |
|
| my @Sizes = ('', 'Ki', 'Mi', 'Gi', 'Ti'); |
my @Sizes = ('', 'Ki', 'Mi', 'Gi', 'Ti'); |
| my $ua = LWP::UserAgent->new; |
my $ua = LWP::UserAgent->new; |
| |
|
| my $response = $ua->get($url_torrents); |
my $response = $ua->get($OBT->{URL_TORRENTS}); |
| |
|
| my %server_torrents; |
my %server_torrents; |
| if ($response->is_success) { |
if ($response->is_success) { |
|
|
| |
|
| |
|
| my %files; |
my %files; |
| opendir DIR, $TorrentDir or die "Couldn't opendir $TorrentDir: $!"; |
opendir DIR, $OBT->{DIR_TORRENT} or die "Couldn't opendir $OBT->{DIR_TORRENT}: $!"; |
| foreach (readdir DIR) { |
foreach (readdir DIR) { |
| chomp; |
chomp; |
| if (/^([^\/]+)$/) { |
if (/^([^\/]+)$/) { |
|
|
| my ($name, $year, $mon, $mday, $hour, $min) = |
my ($name, $year, $mon, $mday, $hour, $min) = |
| /^(.*)-(\d{4})-(\d{2})-(\d{2})-(\d{2})(\d{2})/; |
/^(.*)-(\d{4})-(\d{2})-(\d{2})-(\d{2})(\d{2})/; |
| |
|
| |
my $time = "$year.$mon.$mday $hour:$min"; |
| |
|
| $mon--; |
$mon--; |
| |
|
| my $epoch = timegm(0,$min,$hour,$mday,$mon,$year); |
my $epoch = timegm(0,$min,$hour,$mday,$mon,$year); |
|
|
| mday => $mday, |
mday => $mday, |
| hour => $hour, |
hour => $hour, |
| min => $min, |
min => $min, |
| |
time => $time, |
| epoch => $epoch, |
epoch => $epoch, |
| }; |
}; |
| |
|
|
|
| #print "\t$epoch\n"; |
#print "\t$epoch\n"; |
| my $torrent = $files{$name}{$epoch}{file}; |
my $torrent = $files{$name}{$epoch}{file}; |
| unless (exists $server_torrents{$torrent} ) { |
unless (exists $server_torrents{$torrent} ) { |
| my $time = |
#my $time = |
| $files{$name}{$epoch}{year} . '-' . |
# $files{$name}{$epoch}{year} . '-' . |
| $files{$name}{$epoch}{mon} . '-' . |
# $files{$name}{$epoch}{mon} . '-' . |
| $files{$name}{$epoch}{mday} . ' ' . |
# $files{$name}{$epoch}{mday} . ' ' . |
| $files{$name}{$epoch}{hour} . ':' . |
# $files{$name}{$epoch}{hour} . ':' . |
| $files{$name}{$epoch}{min} . ':00'; |
# $files{$name}{$epoch}{min} . ':00'; |
| |
|
| Upload_Torrent($torrent, $time); |
Upload_Torrent($torrent, $files{$name}{$epoch}{time}); |
| } |
} |
| next; |
next; |
| } |
} |
|
|
| } |
} |
| } |
} |
| |
|
| $ua->get($url_sanity); |
$ua->get($OBT->{URL_SANITY}); |
| |
|
| sub Upload_Torrent |
sub Upload_Torrent |
| { |
{ |
|
|
| print "Uploading $file\n"; |
print "Uploading $file\n"; |
| |
|
| my $t; |
my $t; |
| eval { $t = BT::MetaInfo->new("$TorrentDir/$file"); }; |
eval { $t = BT::OBTMetaInfo->new("$OBT->{DIR_TORRENT}/$file"); }; |
| if ($@) { |
if ($@) { |
| warn "Error reading torrent $file\n"; |
warn "Error reading torrent $file\n"; |
| return undef; |
return undef; |
|
|
| $comment .= " [$size]"; |
$comment .= " [$size]"; |
| $filename .= " [$time]"; |
$filename .= " [$time]"; |
| |
|
| my $response = $ua->post($url_upload, { |
my $response = $ua->post($OBT->{URL_UPLOAD}, { |
| username => $user, |
username => $OBT->{UPLOAD_USER}, |
| password => $pass, |
password => $OBT->{UPLOAD_PASS}, |
| torrent => [ "$TorrentDir/$file" ], |
torrent => [ $OBT->{DIR_TORRENT} . "/$file" ], |
| url => "/torrents/$file", |
url => "/torrents/$file", |
| filename => $filename, |
filename => $filename, |
| filedate => $time, |
filedate => $time, |