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
|
#!/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::Attachment;
use RT::Client::REST::Ticket;
unless (@ARGV >= 3) {
die "Usage: $0 username password ticket_id\n";
}
my $rt = RT::Client::REST->new(
server => ($ENV{RTSERVER} || 'http://rt.cpan.org'),
);
$rt->login(
username=> shift(@ARGV),
password=> shift(@ARGV),
);
my $ticket = RT::Client::REST::Ticket->new(rt => $rt, id => shift(@ARGV));
my $results;
try {
$results = $ticket->attachments;
} catch Exception::Class::Base with {
my $e = shift;
die ref($e), ": ", $e->message;
};
my $count = $results->count;
print "There are $count results that matched your query\n";
my $iterator = $results->get_iterator;
while (my $att = &$iterator) {
print "Id: ", $att->id, "; Subject: ", $att->subject, "\n";
}
|