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
|
#!/usr/bin/perl
#
# show_ticket.pl -- retrieve an RT ticket.
use strict;
use warnings;
use Try::Tiny;
use RT::Client::REST;
use RT::Client::REST::User;
unless ( @ARGV >= 3 ) {
die "Usage: $0 username password user_id\n";
}
my $rt =
RT::Client::REST->new( server => ( $ENV{RTSERVER} || 'http://rt.cpan.org' ),
);
$rt->login(
username => shift(@ARGV),
password => shift(@ARGV),
);
my $user;
try {
$user = RT::Client::REST::User->new(
rt => $rt,
id => shift(@ARGV),
)->retrieve;
}
catch {
die $_ unless blessed $_ && $_->can('rethrow');
if ( $_->isa('Exception::Class::Base') ) {
die ref($_), ": ", $_->message || $_->description, "\n";
}
};
use Data::Dumper;
print Dumper($user);
|