-
Notifications
You must be signed in to change notification settings - Fork 10
/
adbren.pl
executable file
·903 lines (820 loc) · 26.9 KB
/
adbren.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
#!/usr/bin/perl -w
# Copyright (c) 2008, clip9 <[email protected]>
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
# AniDB Renamer.
use strict;
use warnings;
use File::Copy;
use File::Path;
use File::Find;
use File::HomeDir;
use File::Pid;
use Getopt::Long;
use Storable qw(nstore retrieve);
use Data::Dumper;
use Carp;
### DEFAULTS ###
my $format_presets = [
"\%anime_name_english\%_\%episode\%\%version\%-\%group_short\%.\%filetype\%",
"\%anime_name_english\%_\%episode\%\%version\%_\%episode_name\%-\%group_short\%.\%filetype\%",
"\%anime_name_english\%_\%episode\%\%version\%_\%episode_name\%-\%group_short\%(\%crc32\%).\%filetype\%",
"\%anime_name_english\% - \%episode\% - \%episode_name\% - [\%group_short\%](\%crc32\%).\%filetype\%",
"[\%group_short\%] \%anime_name_english\% - \%episode\% - \%episode_name\% (\%crc32\%).\%filetype\%",
];
my $mylist = 0;
my $norename = 0;
my $noclean = 0;
my $strict = 0;
my $debug = 0;
my $nocorrupt = 0;
my $nolog = 0;
my $noskip = 0;
my $onlyhash = 0;
my $format_preset = 0;
my $ping = 0;
my $state = -1;
my $viewed = -1;
my $storage = undef;
my $rootpath = File::HomeDir->my_data() . "/adbren";
my $logfile = File::Spec->catfile( $rootpath, "adbren.log" );
my $format = undef;
my $config_file = $ENV{"ADBREN_CONFIG"} ||
File::Spec->catfile( $rootpath, "adbren.config" );
if ( not -e $rootpath ) {
mkdir $rootpath;
}
if ( not -f $config_file ) {
configure($config_file);
}
my $config = retrieve($config_file)
or die(
"There was a problem loading your configuration from $config_file, please delete it. ($!)"
);
my $result = GetOptions(
"mylist" => \$mylist,
"norename" => \$norename,
"noclean" => \$noclean,
"debug" => \$debug,
"format=s" => \$format,
"preset=i" => \$format_preset,
"onlyhash" => \$onlyhash,
"nocorrupt" => \$nocorrupt,
"logfile=s" => \$logfile,
"nolog" => \$nolog,
"noskip" => \$noskip,
"strict" => \$strict,
"ping" => \$ping,
"state=s" => \$state,
"viewed=s" => \$viewed,
"storage=s" => \$storage,
);
if ( not defined $format ) {
$format = $format_presets->[$format_preset];
}
my $a = AniDB::UDPClient->new(
username => $config->{username},
password => $config->{password},
client => "adbren",
clientver => "6",
debug => $debug,
);
if ($ping) {
print $a->ping(), "\n";
exit(1);
}
if ( $state !~ m/[0-3]/ ) {
if ( $state eq "unknown" ) { $state = "0"; }
elsif ( $state eq "hdd" ) { $state = "1"; }
elsif ( $state eq "cd" ) { $state = "2"; }
elsif ( $state eq "deleted" ) { $state = "3"; }
else {
croak "State " . $state . " is not supported.";
}
}
if ( $viewed !~ m/[0-1]/ ) {
if ( $viewed eq "false" ){ $viewed = "0"; }
elsif ( $viewed eq "true" ) { $viewed = "1"; }
else {
croak "Viewed should be set to true or false.";
}
}
my @files;
while ( ( my $file = shift ) ) {
if ( -d $file ) {
find(
sub {
if ( -f $_ ) { push @files, $File::Find::name; }
},
$file
);
}
elsif ( -f $file ) {
push @files, $file;
}
else {
croak "$file not found, bailing.\n";
}
}
if ( scalar @files < 1 ) {
print_help();
exit;
}
if ($onlyhash) {
foreach my $file (@files) {
my $ed2k = AniDB::UDPClient::ed2k_hash($file);
my $size = -s $file;
print "ed2k://|file|" . $file . "|" . $size . "|" . $ed2k . "|\n";
}
exit;
}
$SIG{'INT'} = 'CLEANUP';
my $pidfile = File::Pid->new;
my $pid = $pidfile->running;
die "Client already running: $pid\n" if $pid;
$pidfile->write;
sub CLEANUP {
exit(1);
}
my $fileinfo;
my $newname;
foreach my $filepath (@files) {
if ( not -e $filepath ) {
print "$filepath Not found\n";
next;
}
my $retry;
my ( $volume, $directory, $filename ) = File::Spec->splitpath($filepath);
print "File: $volume $directory, $filename" if $debug;
if ( not $noskip and -f $logfile ) {
open my $log, "<", $logfile;
$/ = 1;
my @raw_data = <$log>;
my $filename_qm = quotemeta $filename;
my @matches = grep { /$filename_qm/ } @raw_data;
if ( scalar @matches > 0 ) {
print "Skipped: $filename\n";
next;
}
}
RETRY:;
$fileinfo = $a->file($filepath);
if ( !defined $fileinfo ) {
print $filename. ": Not Found in AniDB\n";
if ( not $nocorrupt and not $filename =~ m/^_corrupt_/xmsi ) {
move(
$filepath,
File::Spec->catpath(
$volume, $directory, '_corrupt_' . $filename
)
);
}
next;
}
$newname = $format;
if ( not defined $fileinfo->{'anime_name_english'}
or not defined $fileinfo->{'anime_name_romaji'} )
{
carp "Sanitycheck failed. Corrupt data from server?" if $retry <= 3;
croak "Sanitycheck failed. Corrupt data from server?" if $retry > 3;
$retry++;
sleep 5;
goto RETRY;
}
if ( $fileinfo->{'anime_name_english'} eq "" ) {
$fileinfo->{'anime_name_english'} = $fileinfo->{'anime_name_romaji'};
}
if ( $fileinfo->{'anime_name_romaji'} eq "" ) {
$fileinfo->{'anime_name_romaji'} = $fileinfo->{'anime_name_english'};
}
$newname =~ s/\%orginal_name\%/$filename/xmsig;
while ( $newname =~ /\%([^\%]+)\%/ ) {
my $key = $1;
if ( defined $fileinfo->{$key} ) {
$fileinfo->{$key} = substr $fileinfo->{$key}, 0, 180;
if ( !$noclean ) {
$fileinfo->{$key} =~ s/[?:%\/]//g;
if ($strict) {
$fileinfo->{$key} =~ s/[^a-zA-Z0-9-]/_/g;
}
else {
$fileinfo->{$key} =~ s/[^a-zA-Z0-9-&!`',.~+\- ]/_/g;
}
$fileinfo->{$key} =~ s/[_]+/_/g;
}
$newname =~ s/\%$key\%/$fileinfo->{$key}/;
}
else {
$newname =~ s/\%$key\%//;
}
}
$newname =~ s/[_]+/_/g;
$newname =~ s/_\./\./g;
$newname =~ s/_-\./-/g;
$newname =~ s/_\ /\ /g;
$newname =~ s/\ _/\ /g;
my $newpath;
my ( $fvol, $fdir, $ffile ) = File::Spec->splitpath($newname);
if ( $fdir ne "" ) {
$newpath = $newname;
}
else {
$newpath = File::Spec->catpath( $volume, $directory, $newname );
}
print $filepath. ": Renamed to " . $newpath . "\n";
if ($norename) {
}
else {
if ( -e $newpath ) {
print $filename. ": " . $newpath
. " Already exists. Refusing to overwrite\n";
}
else {
#This really dosen't make any sence.
my ( $newvolume, $newdirectory, $newfile ) =
File::Spec->splitpath($newname);
print "Directory: $newdirectory\n" if $debug == 1;
mkpath( File::Spec->catpath( $volume, $newdirectory, "" ) );
move( $filepath, $newpath )
or print( $filename. ": Rename: " . $! . "\n" );
if ( not $nolog ) {
open( my $log, ">>", $logfile ) or die $!;
print $log "$newname\n";
close $log;
}
}
}
if ($mylist) {
$a->mylistadd( $fileinfo, $state, $viewed, $storage );
}
}
sub print_help {
print <<EOF;
adbren.pl [options] <file1\/dir1> [file2\/dir2] ...
Options:
--format Format. Default is preset 0
--preset Format preset number. See list below;
--strict Use stricter cleaning. Only allow [a-Z0-9._]
--noclean Do not clean values from API for format vars.
(Don't remove special characters)
--norename Do not rename files. Just print the new names.
--mylist Add hashed files to mylist.
--state Set anime state; can be: hdd, cd or deleted.
--viewed Set anime to viewed; can be: true or false.
--storage Set storage name (free text).
--onlyhash Only print ed2k hashes.
--nocorrupt Don't rename "corrupt" files. (Files not found in AniDB)
--logfile Log files renamed to this file. Default: ~\/adbren.log
This log is used to avoid hashing files already processed.
--noskip Do not skip files found in the log.
--nolog Do not do any logging.
--debug Debug mode.
Format vars:
\%fid\%, \%aid\%, \%eid\%, \%gid\%, \%lid\%, \%status\%, \%size\%, \%ed2k\%,
\%md5\%, \%sha1\%, \%crc32\%, \%lang_dub\%, \%lang_sub\%, \%quaility\%, \%source\%,
\%audio_codec\%, \%audio_bitrate\%, \%video_codec\%, \%video_bitrate\%,
\%resolution\%, \%filetype\%, \%length\%, \%description\%, \%group\%,
\%group_short\%, \%episode\%, \%episode_name\%, \%episode_name_romaji\%,
\%episode_name_kanji\%, \%episode_total\%, \%episode_last\%, \%anime_year\%,
\%anime_type\%, \%anime_name_romaji\%, \%anime_name_kanji\%,
\%anime_name_english\%, \%anime_name_other\%, \%anime_name_short\%,
\%anime_synonyms\%, \%anime_category\%, \%version\%, \%censored\%,
\%orginal_name\%
Note:
Directories on the command line are scanned recursivly. Files are renamed in the same directory.
Preset List:
EOF
my $i = 0;
foreach my $f ( @{$format_presets} ) {
print "$i: $f\n";
$i++;
}
exit;
}
sub configure {
my ($config_file) = @_;
print "Configuration file not found. Running first time configuration.\n";
print "Configuration is stored in $config_file\n";
print "Type your AniDB username followed by return:\n";
my %hash;
$hash{username} = <STDIN>;
chomp( $hash{username} );
print "Type your AniDB password followed by return:\n";
$hash{password} = <STDIN>;
chomp( $hash{password} );
nstore \%hash, $config_file
or die "There was a problem storing the configuration: $!";
print
"Your adbren configuration is now stored in: $config_file. You can delete this file to rerun this configuration.\n";
return;
}
package AniDB::UDPClient;
use strict;
no strict 'refs';
use warnings;
use IO::Socket;
use Digest::MD4;
use File::Spec;
use File::HomeDir ();
use Data::Dumper;
use Storable qw(nstore retrieve);
use Carp;
use IO::Uncompress::Inflate qw(inflate $InflateError);
my $default_delay = 30;
#acodes:
use constant GROUP_NAME => 0x00000001;
use constant GROUP_NAME_SHORT => 0x00000002;
use constant EPISODE_NUMBER => 0x00000100;
use constant EPISODE_NAME => 0x00000200;
use constant EPISODE_NAME_ROMAJI => 0x00000400;
use constant EPISODE_NAME_KANJI => 0x00000800;
use constant EPISODE_TOTAL => 0x00010000;
use constant EPISODE_LAST => 0x00020000;
use constant ANIME_YEAR => 0x00040000;
use constant ANIME_TYPE => 0x00080000;
use constant ANIME_NAME_ROMAJI => 0x00100000;
use constant ANIME_NAME_KANJI => 0x00200000;
use constant ANIME_NAME_ENGLISH => 0x00400000;
use constant ANIME_NAME_OTHER => 0x00800000;
use constant ANIME_NAME_SHORT => 0x01000000;
use constant ANIME_SYNONYMS => 0x02000000;
use constant ANIME_CATAGORY => 0x04000000;
#fcodes:
use constant AID => 0x00000002;
use constant EID => 0x00000004;
use constant GID => 0x00000008;
use constant LID => 0x00000010;
use constant STATUS => 0x00000100;
use constant SIZE => 0x00000200;
use constant ED2K => 0x00000400;
use constant MD5 => 0x00000800;
use constant SHA1 => 0x00001000;
use constant CRC32 => 0x00002000;
use constant LANG_DUB => 0x00010000;
use constant LANG_SUB => 0x00020000;
use constant QUALITY => 0x00040000;
use constant SOURCE => 0x00080000;
use constant CODEC_AUDIO => 0x00100000;
use constant BITRATE_AUDIO => 0x00200000;
use constant CODEC_VIDEO => 0x00400000;
use constant BITRATE_VIDEO => 0x00800000;
use constant RESOLUTION => 0x01000000;
use constant FILETYPE => 0x02000000;
use constant LENGTH => 0x04000000;
use constant DESCRIPTION => 0x08000000;
#Status Codes
use constant STATUS_CRCOK => 0x01;
use constant STATUS_CRCERR => 0x02;
use constant STATUS_ISV2 => 0x04;
use constant STATUS_ISV3 => 0x08;
use constant STATUS_ISV4 => 0x10;
use constant STATUS_ISV5 => 0x20;
use constant STATUS_UNC => 0x40;
use constant STATUS_CEN => 0x80;
use constant FILE_ENUM => qw/fid aid eid gid lid status_code size ed2k md5 sha1
crc32 lang_dub lang_sub quaility source audio_codec audio_bitrate video_codec
video_bitrate resolution filetype length description group group_short
episode episode_name episode_name_romaji episode_name_kanji episode_total
episode_last anime_year anime_type anime_name_romaji anime_name_kanji
anime_name_english anime_name_other anime_name_short anime_synonyms
anime_category/;
use constant ANIME_ENUM => qw/aid episodes episode_count special rating
votes tmprating tmpvotes review_rating reviews year type romaji kanji
english other short_name synonyms category/;
use constant MYLIST_ENUM => qw/lid fid eid aid gid date state viewdate storage
source other filestate/;
use subs 'debug';
sub new {
my $class = shift;
my $self = bless {}, $class;
my %args = @_;
foreach my $key ( keys %args ) {
$self->{$key} = $args{$key};
}
# Quick debugging hack! Sorry ;)
if ( $self->{debug} == 1 ) {
*debug = sub {
if (@_) {
foreach my $x (@_) {
if ( ref $x eq 'ARRAY' || ref $x eq 'HASH' ) {
print STDERR Dumper($x);
}
else {
my $clean = $x;
$clean =~ s/[\n\r]*$//;
print STDERR $clean . " ";
}
}
print STDERR "\n";
}
}
}
else {
*debug = sub { };
}
$self->{dbpath} = $rootpath . "/adbren.db";
$self->{dbpath_tmp} = $rootpath . "/adbren.db.tmp";
$self->load_cache();
$self->{delay} = 0;
$self->{hostname} = "api.anidb.info";
$self->{port} = 9000;
$self->{handle} = IO::Socket::INET->new( Proto => 'udp' ) or die($!);
$self->{ipaddr} = gethostbyname( $self->{hostname} )
or die( "Gethostbyname(" . $self->{hostname} . "):" . $! );
$self->{sockaddr} = sockaddr_in( $self->{port}, $self->{ipaddr} )
or die($!);
$self->{last_command_file} =
File::Spec->catfile( File::Spec->tmpdir(), "adbren_last_command.tmp" );
if ( -e $self->{last_command_file} ) {
my $last_command_ref = retrieve( $self->{last_command_file} );
$self->{last_command} = $$last_command_ref;
}
else {
$self->{last_command} = 0;
}
defined $self->{username} or die "Username not defined!\n";
defined $self->{password} or die "Password not defined!\n";
defined $self->{client} or die "Client not defined!\n";
defined $self->{clientver} or die "Clientver not defined!\n";
$self->{state_file} =
File::Spec->catfile( File::Spec->tmpdir(), "adbren_state.tmp" );
return $self;
}
sub anime {
my ( $self, $anime ) = @_;
my %parameters;
$parameters{s} = $self->{skey};
if ( $anime =~ /\d+/ ) {
$parameters{aid} = $anime;
}
else {
$parameters{aname} = $anime;
}
my $msg = $self->_sendrecv( "ANIME", \%parameters );
$msg =~ s/.*\n//im;
my @f = split /\|/, $msg;
my %animeinfo;
if ( scalar @f > 0 ) {
for ( my $i = 0 ; $i < ( scalar @f ) ; $i++ ) {
$animeinfo{ (ANIME_ENUM)[$i] } = $f[$i];
}
}
else {
return undef;
}
debug "Animeinfo Hash:", \%animeinfo;
return \%animeinfo;
}
sub file {
my ( $self, $file ) = @_;
my %parameters;
$parameters{s} = $self->{skey};
if ( -e $file ) {
print $file. ": Hashing\n";
$parameters{ed2k} = ed2k_hash($file);
$parameters{size} = -s $file;
$parameters{viewdate} = (stat($file))[9];
if ( defined $self->{db}->{ $parameters{ed2k} }
and defined $self->{db}->{ $parameters{ed2k} }->{fid} )
{
return $self->{db}->{ $parameters{ed2k} };
}
}
else {
$parameters{fid} = $file;
}
# the reason i'm not using -1 is that the api might change to include other
# fields so the the ENUM might change.
my $acode =
GROUP_NAME | GROUP_NAME_SHORT | EPISODE_NUMBER | EPISODE_NAME |
EPISODE_NAME_ROMAJI | EPISODE_NAME_KANJI | EPISODE_TOTAL | EPISODE_LAST |
ANIME_YEAR | ANIME_TYPE | ANIME_NAME_ROMAJI | ANIME_NAME_KANJI |
ANIME_NAME_ENGLISH | ANIME_NAME_OTHER | ANIME_NAME_SHORT |
ANIME_SYNONYMS | ANIME_CATAGORY;
my $fcode =
AID | EID | GID | LID | STATUS | SIZE | ED2K | MD5 | SHA1 | CRC32 |
LANG_DUB | LANG_SUB | QUALITY | SOURCE | CODEC_AUDIO | BITRATE_AUDIO |
CODEC_VIDEO | BITRATE_VIDEO | RESOLUTION | FILETYPE | LENGTH |
DESCRIPTION;
$parameters{acode} = $acode;
$parameters{fcode} = $fcode;
print $file. ": Getting info.\n";
my $msg = $self->_sendrecv( "FILE", \%parameters, 1 );
$msg =~ s/.*\n//im;
my @f = split /\|/, $msg;
my %fileinfo;
if ( scalar @f > 0 ) {
for ( my $i = 0 ; $i < ( scalar @f ) ; $i++ ) {
$fileinfo{ (FILE_ENUM)[$i] } = $f[$i];
}
return $fileinfo if not defined $fileinfo{anime_name_short};
$fileinfo{anime_name_short} =~ s/'/,/g;
$fileinfo{anime_synonyms} =~ s/'/,/g;
$fileinfo{lang_sub} =~ s/'/,/g;
$fileinfo{lang_dub} =~ s/'/,/g;
$fileinfo{censored} = "cen"
if ( $fileinfo{status_code} & STATUS_CEN );
$fileinfo{censored} = "unc"
if ( $fileinfo{status_code} & STATUS_UNC );
if ( $fileinfo{status_code} & STATUS_ISV2 ) {
$fileinfo{version} = "v2";
}
elsif ( $fileinfo{status_code} & STATUS_ISV3 ) {
$fileinfo{version} = "v3";
}
elsif ( $fileinfo{status_code} & STATUS_ISV4 ) {
$fileinfo{version} = "v4";
}
elsif ( $fileinfo{status_code} & STATUS_ISV5 ) {
$fileinfo{version} = "v5";
}
$fileinfo{crcok} = $fileinfo{status_code} & STATUS_CRCOK;
$fileinfo{crcerr} = $fileinfo{status_code} & STATUS_CRCERR;
$self->{db}->{ $parameters{ed2k} } = \%fileinfo;
$self->save_cache();
return \%fileinfo;
}
return undef;
}
sub load_cache {
my ($self) = @_;
return if not defined $self->{dbpath};
if ( -e $self->{dbpath} ) {
$self->{db} = retrieve( $self->{dbpath} ) or die $!;
debug "Using cache: ", $self->{dbpath};
}
else {
debug "Creating cache: ", $self->{dbpath};
$self->{db} = {};
}
foreach my $key ( keys %{ $self->{db} } ) {
next if $key eq 'session';
if ( not defined $self->{db}->{$key}->{fid}
or not defined $self->{db}->{$key}->{anime_name_short} )
{
delete $self->{db}->{$key};
}
elsif ( not $self->{db}->{$key}->{fid} =~ m/^\d+$/ ) {
delete $self->{db}->{$key};
}
}
}
sub save_cache {
my ($self) = @_;
debug "Saving Cache.";
nstore $self->{db}, $self->{dbpath_tmp} or die $!;
rename $self->{dbpath_tmp}, $self->{dbpath} or die $!;
}
sub mylistadd {
my ( $self, $file, $astate, $aviewed, $astorage ) = @_;
my %parameters;
$parameters{s} = $self->{skey};
if ( -e $file ) {
print $file. ": Hashing.\n";
$parameters{ed2k} = ed2k_hash($file);
$parameters{size} = -s $file;
}
else {
$parameters{fid} = $file->{fid};
}
if ( defined $astate and $astate > -1 ) {
$parameters{state} = $astate;
}
if ( defined $aviewed and $aviewed > -1 ) {
$parameters{viewed} = $aviewed;
}
if ( defined $astorage ) {
$parameters{storage} = $storage;
}
my $msg = $self->_sendrecv( "MYLISTADD", \%parameters, 1 );
if ( $msg =~ /^210/ ) {
print $file->{fid}. ": Added to mylist.\n";
}
elsif ( $msg =~ /^310/ ) {
$msg =~ s/.*\n//;
my %res;
@res{ MYLIST_ENUM() } = split /\|/, $msg;
if ( defined $parameters{state} && $parameters{state} ne $res{state} ||
$aviewed == 0 && $res{viewdate} ne "" ||
$aviewed == 1 && $res{viewdate} eq "" ||
defined $parameters{storage} && $parameters{storage} ne $res{storage}) {
$parameters{lid} = $res{lid};
$parameters{edit} = "1";
delete $parameters{ed2k};
delete $parameters{size};
delete $parameters{fid};
$msg = $self->_sendrecv( "MYLISTADD", \%parameters, 1 );
if ( $msg =~ /^311/ ) {
print $file->{fid}. ": Edited mylist entry.\n";
}
else {
carp $msg;
return undef;
}
}
else {
print $file->{fid}. ": Already up-to-date mylist entry.\n";
return 1;
}
}
else {
carp $msg;
return undef;
}
return 1;
}
sub login {
my ($self) = @_;
my $msg = "AUTH";
my %parameters;
$parameters{user} = $self->{username};
$parameters{pass} = $self->{password};
$parameters{protover} = 3;
$parameters{client} = $self->{client};
$parameters{clientver} = $self->{clientver};
$parameters{nat} = 1;
$parameters{enc} = 'UTF8';
$parameters{comp} = 1;
$msg = $self->_sendrecv( $msg, \%parameters, 0 );
if ( defined $msg
&& $msg =~ /20[0|1]\ ([a-zA-Z0-9]*)\ ([0-9\.\:]).*/ )
{
$self->{skey} = $1;
$self->{myaddr} = $2;
}
else {
die "Login Failed: $msg\n";
}
return 1;
}
sub logout {
my ($self) = @_;
if ( $self->{skey} ) {
return $self->_send( "LOGOUT skey=" . $self->{skey} );
}
else {
return 0;
}
}
sub notify {
my ($self) = @_;
return $self->_sendrecv( "NOTIFY", { skey => $self->{skey} } );
}
sub ping {
my ($self) = @_;
return $self->_sendrecv( "PING", {}, 0 );
}
# Takes the command string and a hash ref with the parameters.
# Sends and reads the reply. Tries up to 5 times.
sub _sendrecv {
my ( $self, $command, $parameter_ref, $delay ) = @_;
if ( not defined $self->{skey}
and $command ne "AUTH"
and $command ne "PING" )
{
$self->login();
$parameter_ref->{s} = $self->{skey};
}
my $stat = 0;
my $tag = "adbr-" . ( int( rand() * 10000 ) + 1 );
$parameter_ref->{tag} = $tag;
$delay = $default_delay if not defined $delay;
my $elapsed = time - $self->{last_command};
while ( defined $delay and $elapsed < $delay ) {
$stat = $delay - $elapsed;
if ( $elapsed < 0 ) {
printf "Banned!!! Delay: %.2f minutes\n", $stat / 60;
}
debug "Delay: $stat\n";
sleep($stat);
$elapsed = time - $self->{last_command};
}
my $msg_str = $command . " ";
foreach my $k ( keys %{$parameter_ref} ) {
if ( defined $parameter_ref->{$k} ) {
$msg_str .= $k . "=" . $parameter_ref->{$k} . "&";
}
}
$msg_str =~ s/\&$//xmsi;
$msg_str .= "\n";
send( $self->{handle}, $msg_str, 0, $self->{sockaddr} )
or croak( "Send: " . $! );
$self->{last_command} = time;
nstore \$self->{last_command}, $self->{last_command_file};
debug "-->", $msg_str;
my $recvmsg;
my $timer = 0;
my $wait = 30;
while ( !( $recvmsg = $self->_recv() ) ) {
if ( $timer > 10 ) {
carp "Timeout while wating for reply.\n";
return undef;
}
$timer++;
print "Retrying after ${wait}s\n";
sleep($wait);
$wait *= 2;
send( $self->{handle}, $msg_str, 0, $self->{sockaddr} )
or croak( "Send: " . $! );
}
debug "<--", $recvmsg;
if ( $recvmsg =~ m/(adbr-[\d]+)/xmsi ) {
if ( $tag ne $1 ) {
carp
"This is not the tag we are waiting for. Retrying ($tag!= $1)\n";
return $self->_sendrecv( $command, $parameter_ref, $delay );
}
$recvmsg =~ s/adbr-[\d]+\ //xmsi;
}
if ( $recvmsg =~ /^501.*|^506.*/ ) {
debug "Invalid session. Reauthing.";
delete $self->{skey};
$self->login();
$parameter_ref->{s} = $self->{skey};
return $self->_sendrecv( $command, $parameter_ref, $delay );
}
if ( $recvmsg =~ /^555/ ) {
$self->{last_command} = time + (30 * 60);
nstore \$self->{last_command}, $self->{last_command_file};
croak
"Banned. You should wait 30 minutes before retrying! Message:\n$recvmsg";
}
return $recvmsg;
}
sub _send {
my ( $self, $msg ) = @_;
send( $self->{handle}, $msg, 0, $self->{sockaddr} )
or die( "Send: " . $! );
debug "-->", $msg;
sleep 1;
}
sub _recv {
my ($self) = @_;
my $rin = '';
my $rout;
vec( $rin, fileno( $self->{handle} ), 1 ) = 1;
if ( select( $rout = $rin, undef, undef, 10.0 ) ) {
my $msg;
recv( $self->{handle}, $msg, 1500, 0 ) or craok( "Recv:" . $! );
if ( substr($msg, 0, 2) eq "\x00\x00" ) {
my $data = substr( $msg, 2 );
inflate( \$data, \$msg )
or die 'Error inflating response: ' . $InflateError;
}
return $msg;
}
return undef;
}
sub ed2k_hash {
my ($file) = @_;
my $ctx = Digest::MD4->new;
my $ctx2 = Digest::MD4->new;
my $buffer;
open my $handle, "<", $file or die $!;
binmode $handle;
my $block = 0;
my $b = 0;
my $length = 0;
while ( ( $length = read $handle, $buffer, 102400 ) ) {
while ( $length < 102400 ) {
my $missing = 102400 - $length;
my $missing_buffer;
my $missing_read = read $handle, $missing_buffer, $missing;
$length += $missing_read;
last if !$missing_read;
$buffer .= $missing_buffer;
}
$ctx->add($buffer);
$b++;
if ( $b == 95 ) {
$ctx2->add( $ctx->digest );
$b = 0;
$block++;
}
}
close($handle);
if ( $block == 0 ) {
return $ctx->hexdigest;
}
if ( $b == 0 ) {
return $ctx2->hexdigest;
}
$ctx2->add( $ctx->digest );
return $ctx2->hexdigest;
}
END {
if ( defined $pidfile and defined $pidfile->running and $pidfile->running eq $$ ) {
$pidfile->remove or warn "Could not unlink pid file\n";
}
if ( defined $a ) {
$a->logout();
}
}