Bug 8706 - Private lists can be accessed by anyone
[koha.git] / labels / label-create-pdf.pl
blob3d7ff1fc9c89cd779beae863a6c9110feaacb604
1 #!/usr/bin/perl
3 # Copyright Chris Nighswonger 2009
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 use strict;
22 use warnings;
24 use CGI;
25 use C4::Auth;
26 use C4::Debug;
27 use C4::Creators;
28 use C4::Labels;
30 my $cgi = new CGI;
32 my ( undef, $loggedinuser, $cookie ) = get_template_and_user({
33 template_name => "labels/label-home.tt",
34 query => $cgi,
35 type => "intranet",
36 authnotrequired => 0,
37 flagsrequired => { tools => 'label_creator' },
38 debug => 1,
39 });
41 my $batch_id;
42 my @label_ids;
43 my @item_numbers;
44 $batch_id = $cgi->param('batch_id') if $cgi->param('batch_id');
45 my $template_id = $cgi->param('template_id') || undef;
46 my $layout_id = $cgi->param('layout_id') || undef;
47 my $start_label = $cgi->param('start_label') || 1;
48 @label_ids = $cgi->param('label_id') if $cgi->param('label_id');
49 @item_numbers = $cgi->param('item_number') if $cgi->param('item_number');
51 my $items = undef;
55 my $pdf_file = (@label_ids || @item_numbers ? "label_single_" . scalar(@label_ids || @item_numbers) : "label_batch_$batch_id");
56 print $cgi->header( -type => 'application/pdf',
57 -encoding => 'utf-8',
58 -attachment => "$pdf_file.pdf",
61 our $pdf = C4::Creators::PDF->new(InitVars => 0);
62 my $batch = C4::Labels::Batch->retrieve(batch_id => $batch_id);
63 our $template = C4::Labels::Template->retrieve(template_id => $template_id, profile_id => 1);
64 my $layout = C4::Labels::Layout->retrieve(layout_id => $layout_id);
66 sub _calc_next_label_pos {
67 my ($row_count, $col_count, $llx, $lly) = @_;
68 if ($col_count < $template->get_attr('cols')) {
69 $llx = ($llx + $template->get_attr('label_width') + $template->get_attr('col_gap'));
70 $col_count++;
72 else {
73 $llx = $template->get_attr('left_margin');
74 if ($row_count == $template->get_attr('rows')) {
75 $pdf->Page();
76 $lly = ($template->get_attr('page_height') - $template->get_attr('top_margin') - $template->get_attr('label_height'));
77 $row_count = 1;
79 else {
80 $lly = ($lly - $template->get_attr('row_gap') - $template->get_attr('label_height'));
81 $row_count++;
83 $col_count = 1;
85 return ($row_count, $col_count, $llx, $lly);
88 sub _print_text {
89 my $label_text = shift;
90 foreach my $text_line (@$label_text) {
91 my $pdf_font = $pdf->Font($text_line->{'font'});
92 my $line = "BT /$pdf_font $text_line->{'font_size'} Tf $text_line->{'text_llx'} $text_line->{'text_lly'} Td ($text_line->{'line'}) Tj ET";
93 utf8::decode($line);
94 $pdf->Add($line);
98 $| = 1;
100 # set the paper size
101 my $lowerLeftX = 0;
102 my $lowerLeftY = 0;
103 my $upperRightX = $template->get_attr('page_width');
104 my $upperRightY = $template->get_attr('page_height');
106 $pdf->Compress(1);
107 $pdf->Mbox($lowerLeftX, $lowerLeftY, $upperRightX, $upperRightY);
109 my ($row_count, $col_count, $llx, $lly) = $template->get_label_position($start_label);
111 if (@label_ids) {
112 my $batch_items = $batch->get_attr('items');
113 grep {
114 my $label_id = $_;
115 push(@{$items}, grep{$_->{'label_id'} == $label_id;} @{$batch_items});
116 } @label_ids;
118 elsif (@item_numbers) {
119 grep {
120 push(@{$items}, {item_number => $_});
121 } @item_numbers;
123 else {
124 $items = $batch->get_attr('items');
127 LABEL_ITEMS:
128 foreach my $item (@{$items}) {
129 my ($barcode_llx, $barcode_lly, $barcode_width, $barcode_y_scale_factor) = 0,0,0,0;
130 if ($layout->get_attr('printing_type') eq 'ALT') { # we process the ALT style printing type here because it is not an atomic printing type
131 my $label_a = C4::Labels::Label->new(
132 batch_id => $batch_id,
133 item_number => $item->{'item_number'},
134 llx => $llx,
135 lly => $lly,
136 width => $template->get_attr('label_width'),
137 height => $template->get_attr('label_height'),
138 top_text_margin => $template->get_attr('top_text_margin'),
139 left_text_margin => $template->get_attr('left_text_margin'),
140 barcode_type => $layout->get_attr('barcode_type'),
141 printing_type => 'BIB',
142 guidebox => $layout->get_attr('guidebox'),
143 font => $layout->get_attr('font'),
144 font_size => $layout->get_attr('font_size'),
145 callnum_split => $layout->get_attr('callnum_split'),
146 justify => $layout->get_attr('text_justify'),
147 format_string => $layout->get_attr('format_string'),
148 text_wrap_cols => $layout->get_text_wrap_cols(label_width => $template->get_attr('label_width'), left_text_margin => $template->get_attr('left_text_margin')),
150 $pdf->Add($label_a->draw_guide_box) if $layout->get_attr('guidebox');
151 my $label_a_text = $label_a->create_label();
152 _print_text($label_a_text);
153 ($row_count, $col_count, $llx, $lly) = _calc_next_label_pos($row_count, $col_count, $llx, $lly);
154 my $label_b = C4::Labels::Label->new(
155 batch_id => $batch_id,
156 item_number => $item->{'item_number'},
157 llx => $llx,
158 lly => $lly,
159 width => $template->get_attr('label_width'),
160 height => $template->get_attr('label_height'),
161 top_text_margin => $template->get_attr('top_text_margin'),
162 left_text_margin => $template->get_attr('left_text_margin'),
163 barcode_type => $layout->get_attr('barcode_type'),
164 printing_type => 'BAR',
165 guidebox => $layout->get_attr('guidebox'),
166 font => $layout->get_attr('font'),
167 font_size => $layout->get_attr('font_size'),
168 callnum_split => $layout->get_attr('callnum_split'),
169 justify => $layout->get_attr('text_justify'),
170 format_string => $layout->get_attr('format_string'),
171 text_wrap_cols => $layout->get_text_wrap_cols(label_width => $template->get_attr('label_width'), left_text_margin => $template->get_attr('left_text_margin')),
173 $pdf->Add($label_b->draw_guide_box) if $layout->get_attr('guidebox');
174 my $label_b_text = $label_b->create_label();
175 ($row_count, $col_count, $llx, $lly) = _calc_next_label_pos($row_count, $col_count, $llx, $lly);
176 next LABEL_ITEMS;
178 else {
180 my $label = C4::Labels::Label->new(
181 batch_id => $batch_id,
182 item_number => $item->{'item_number'},
183 llx => $llx,
184 lly => $lly,
185 width => $template->get_attr('label_width'),
186 height => $template->get_attr('label_height'),
187 top_text_margin => $template->get_attr('top_text_margin'),
188 left_text_margin => $template->get_attr('left_text_margin'),
189 barcode_type => $layout->get_attr('barcode_type'),
190 printing_type => $layout->get_attr('printing_type'),
191 guidebox => $layout->get_attr('guidebox'),
192 font => $layout->get_attr('font'),
193 font_size => $layout->get_attr('font_size'),
194 callnum_split => $layout->get_attr('callnum_split'),
195 justify => $layout->get_attr('text_justify'),
196 format_string => $layout->get_attr('format_string'),
197 text_wrap_cols => $layout->get_text_wrap_cols(label_width => $template->get_attr('label_width'), left_text_margin => $template->get_attr('left_text_margin')),
199 $pdf->Add($label->draw_guide_box) if $layout->get_attr('guidebox');
200 my $label_text = $label->create_label();
201 _print_text($label_text) if $label_text;
202 ($row_count, $col_count, $llx, $lly) = _calc_next_label_pos($row_count, $col_count, $llx, $lly);
203 next LABEL_ITEMS;
206 $pdf->End();
208 __END__
210 =head1 NAME
212 labels/label-create-pdf.pl - A script for creating a pdf export of labels and label batches in Koha
214 =head1 ABSTRACT
216 This script provides the means of producing a pdf of labels for items either individually, in groups, or in batches from within Koha.
218 =head1 USAGE
220 This script is intended to be called as a cgi script although it could be easily modified to accept command line parameters. The script accepts four single
221 parameters and two "multiple" parameters as follows:
223 C<batch_id> A single valid batch id to export.
224 C<template_id> A single valid template id to be applied to the current export. This parameter is manditory.
225 C<layout_id> A single valid layout id to be applied to the current export. This parameter is manditory.
226 C<start_label> The number of the label on which to begin the export. This parameter is optional.
227 C<lable_ids> A single valid label id to export. Multiple label ids may be submitted to export multiple labels.
228 C<item_numbers> A single valid item number to export. Multiple item numbers may be submitted to export multiple items.
230 B<NOTE:> One of the C<batch_id>, C<label_ids>, or C<item_number> parameters is manditory. However, do not pass a combination of them or bad things might result.
232 example:
233 http://staff-client.kohadev.org/cgi-bin/koha/labels/label-create-pdf.pl?batch_id=1&template_id=1&layout_id=5&start_label=1
235 =head1 AUTHOR
237 Chris Nighswonger <cnighswonger AT foundations DOT edu>
239 =head1 COPYRIGHT
241 Copyright 2009 Foundations Bible College.
243 =head1 LICENSE
245 This file is part of Koha.
247 Koha is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software
248 Foundation; either version 2 of the License, or (at your option) any later version.
250 You should have received a copy of the GNU General Public License along with Koha; if not, write to the Free Software Foundation, Inc., 51 Franklin Street,
251 Fifth Floor, Boston, MA 02110-1301 USA.
253 =head1 DISCLAIMER OF WARRANTY
255 Koha is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
256 A PARTICULAR PURPOSE. See the GNU General Public License for more details.
258 =cut