1 | #!/usr/bin/perl |
---|
2 | |
---|
3 | # This script was largely written by Jessica Hamrick (jhamrick), with |
---|
4 | # help from Kyle Brogle (broglek) |
---|
5 | |
---|
6 | use strict; |
---|
7 | use warnings; |
---|
8 | |
---|
9 | use Net::CUPS; |
---|
10 | use Net::CUPS::Destination; |
---|
11 | use Getopt::Long; |
---|
12 | |
---|
13 | # usage |
---|
14 | my $usage = <<USAGE; |
---|
15 | Usage: gbq [options] [-q QUEUE] ID |
---|
16 | |
---|
17 | -q, --queue Specify a queue other than the default |
---|
18 | -h, --help Print this message |
---|
19 | USAGE |
---|
20 | |
---|
21 | # initialize the variables for the options |
---|
22 | my $q = ""; |
---|
23 | my $help = 0; |
---|
24 | |
---|
25 | # parse the options |
---|
26 | GetOptions ('q|queue=s' => \$q, |
---|
27 | 'h|help', => \$help); |
---|
28 | |
---|
29 | # if the -h flag was passed, then print the usage and exit |
---|
30 | if ($help) { |
---|
31 | print $usage; |
---|
32 | exit 0; |
---|
33 | } |
---|
34 | |
---|
35 | my @ids = @ARGV[0 .. $#ARGV]; |
---|
36 | |
---|
37 | # if the -q option is not specified, then assume we're using the |
---|
38 | # default queue |
---|
39 | if (!$q) { |
---|
40 | $q = "DEFAULT"; |
---|
41 | } |
---|
42 | |
---|
43 | # if there are no ids specified to remove, then print the usage |
---|
44 | if (!@ids) { |
---|
45 | print $usage; |
---|
46 | exit 1 |
---|
47 | } |
---|
48 | |
---|
49 | # set configuration path, and complain if it doesn't exist |
---|
50 | my $configpath = "$ENV{'HOME'}/.gutenbach/$q"; |
---|
51 | if (! -e $configpath) { |
---|
52 | print "Queue '$q' does not exist! Did you forget to add it with 'gutenbach-client-config'?\n"; |
---|
53 | exit 1; |
---|
54 | } |
---|
55 | |
---|
56 | # initialize the host and queue variables: host holds the address for |
---|
57 | # the machine on which the remote queue runs, and queue holds the name |
---|
58 | # of the printer |
---|
59 | my ($host, $queue); |
---|
60 | |
---|
61 | # load the configuration file (this will set $host and $queue) |
---|
62 | if (-r $configpath) { |
---|
63 | local $/; |
---|
64 | my $fh; |
---|
65 | open $fh, $configpath; |
---|
66 | eval <$fh>; |
---|
67 | } |
---|
68 | |
---|
69 | # initialize a new CUPS session |
---|
70 | my $cups = Net::CUPS->new(); |
---|
71 | # set the server to the one specified in the config file |
---|
72 | $cups->setServer("$host"); |
---|
73 | # set the printer name to the one specified in the config file |
---|
74 | my $printer = $cups->getDestination("$queue"); |
---|
75 | |
---|
76 | # if $printer is not defined, then throw an error |
---|
77 | unless( $printer){ |
---|
78 | print "Cannot access queue $q...do you have network connectivity and permission to view the queue?\n"; |
---|
79 | exit 1; |
---|
80 | } |
---|
81 | |
---|
82 | # get the list of jobs from the printer |
---|
83 | my @jobs = $printer->getJobs(0, 0); |
---|
84 | |
---|
85 | # for each id that we want to remove |
---|
86 | foreach my $id(@ids){ |
---|
87 | |
---|
88 | # if the id is 'all', then we remove all jobs |
---|
89 | if ($id eq "all") { |
---|
90 | foreach $id(@jobs) { |
---|
91 | cancel_job($id, $printer); |
---|
92 | } |
---|
93 | } |
---|
94 | |
---|
95 | # if the id is 'current', then we remove just the currently |
---|
96 | # playing job |
---|
97 | elsif ($id eq "current") { |
---|
98 | $id = $jobs[0]; |
---|
99 | cancel_job($id, $printer); |
---|
100 | } |
---|
101 | |
---|
102 | # if the id is 'last', then we remove just the last job |
---|
103 | elsif ($id eq "last") { |
---|
104 | $id = $jobs[-1]; |
---|
105 | cancel_job($id, $printer); |
---|
106 | } |
---|
107 | |
---|
108 | # otherwise, remove the job based on its actual (numeric) id |
---|
109 | else { |
---|
110 | foreach my $item(@jobs) { |
---|
111 | if($item =~ /$id/){ |
---|
112 | cancel_job($item, $printer); |
---|
113 | } |
---|
114 | } |
---|
115 | } |
---|
116 | } |
---|
117 | |
---|
118 | # helper function to remove a job |
---|
119 | sub cancel_job { |
---|
120 | # get the id and printer from the arguments |
---|
121 | my ($id, $printer) = @_; |
---|
122 | # get the reference to the job |
---|
123 | my $job_ref = $printer->getJob($id); |
---|
124 | # find the job title (so we can print it out for the user) |
---|
125 | my $title = $job_ref->{'title'}; |
---|
126 | # cancel the job |
---|
127 | $printer->cancelJob($id); |
---|
128 | |
---|
129 | # print out that we canceled the job |
---|
130 | print "Canceled job '$title' (id $id)\n"; |
---|
131 | } |
---|