File: list_tickets.pl

package info (click to toggle)
librt-client-rest-perl 1%3A0.56-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 568 kB
  • sloc: perl: 4,205; makefile: 9
file content (42 lines) | stat: -rw-r--r-- 856 bytes parent folder | download | duplicates (7)
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
#!/usr/bin/perl
#
# list_tickets.pl -- list tickets in a queue

use strict;
use warnings;

use Error qw(:try);
use RT::Client::REST;
use RT::Client::REST::Queue;

unless (@ARGV >= 3) {
    die "Usage: $0 username password queue_id\n";
}

my $rt = RT::Client::REST->new(
    server  => ($ENV{RTSERVER} || 'http://rt.cpan.org'),
);

$rt->login(
    username=> shift(@ARGV),
    password=> shift(@ARGV),
);

my $queue = RT::Client::REST::Queue->new(rt => $rt, id => shift(@ARGV));

my $results;
try {
    $results = $queue->tickets;
} catch Exception::Class::Base with {
    my $e = shift;
    die ref($e), ": ", $e->message;
};

my $count = $results->count;
print "There are $count tickets\n";

my $iterator = $results->get_iterator;
while (my $t = &$iterator) {
    print "Id: ", $t->id, "; Status: ", $t->status,
        "; Subject ", $t->subject, "\n";
}