Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > fa43ffd2c6ad2b6962fb52a36681b091 > files > 21

perl-RT-Client-REST-0.37-6.fc15.noarch.rpm

#!/usr/bin/perl
#
# show_ticket.pl -- retrieve an RT ticket.

use strict;
use warnings;

use Error qw(:try);
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 Exception::Class::Base with {
    my $e = shift;
    die ref($e), ": ", $e->message || $e->description, "\n";
};

use Data::Dumper;
print Dumper($user);