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
|
#!/usr/bin/env perl
use FindBin;
use lib "$FindBin::Bin/../lib";
use Catmandu::Sane;
use Catmandu::AlephX;
use Data::Dumper;
use open qw(:std :utf8);
sub read_str {
my $line = <STDIN>;
chomp $line;
$line;
}
sub read_password {
use Term::ReadKey;
ReadMode 'noecho';
my $password = ReadLine 0;
ReadMode 'normal';
chomp $password;
print "\n";
return $password;
}
my $aleph = Catmandu::AlephX->new(url => "http://borges1.ugent.be/X");
my($library,$bor_id,$verification);
print "library: ";
$library = read_str();
print "bor_id: ";
$bor_id = read_str();
print "verification: ";
$verification = read_password();
my %args = (
library => $library,
bor_id => $bor_id,
verification => $verification
);
my $auth = $aleph->bor_auth(%args);
if($auth->is_success){
for my $type(qw(z303 z304 z305)){
say "$type:";
my $data = $auth->$type();
for my $key(keys %$data){
next unless($data->{$key});
say "\t$key : '$data->{$key}'";
}
}
}else{
say STDERR "error: ".join('',@{$auth->errors});
exit 1;
}
|