Merge remote branch 'kc/new/bug_4908' into kcmaster
[koha.git] / labels / label-create-xml.pl
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use CGI;
7 use XML::Simple;
8 use Data::Dumper;
9
10 use C4::Debug;
11 use C4::Creators 1.000000;
12 use C4::Labels 1.000000;
13
14 my $cgi = new CGI;
15
16 my $batch_id    = $cgi->param('batch_id') if $cgi->param('batch_id');
17 my $template_id = $cgi->param('template_id') || undef;
18 my $layout_id   = $cgi->param('layout_id') || undef;
19 my @label_ids   = $cgi->param('label_id') if $cgi->param('label_id');
20 my @item_numbers  = $cgi->param('item_number') if $cgi->param('item_number');
21
22 my $items = undef;
23
24 my $xml_file = (@label_ids || @item_numbers ? "label_single_" . scalar(@label_ids || @item_numbers) : "label_batch_$batch_id");
25 print $cgi->header(-type        => 'text/xml',
26                    -encoding    => 'utf-8',
27                    -attachment  => "$xml_file.xml",
28                     );
29
30 my $batch = C4::Labels::Batch->retrieve(batch_id => $batch_id);
31 my $template = C4::Labels::Template->retrieve(template_id => $template_id, profile_id => 1);
32 my $layout = C4::Labels::Layout->retrieve(layout_id => $layout_id);
33
34
35 if (@label_ids) {
36     my $batch_items = $batch->get_attr('items');
37     grep {
38         my $label_id = $_;
39         push(@{$items}, grep{$_->{'label_id'} == $label_id;} @{$batch_items});
40     } @label_ids;
41 }
42 elsif (@item_numbers) {
43     grep {
44         push(@{$items}, {item_number => $_});
45     } @item_numbers;
46 }
47 else {
48     $items = $batch->get_attr('items');
49 }
50
51 my $xml = XML::Simple->new();
52 my $xml_data = {'label' => []};
53
54 my $item_count = 0;
55
56 XML_ITEMS:
57 foreach my $item (@$items) {
58     push(@{$xml_data->{'label'}}, {'item_number' => $item->{'item_number'}});
59     my $label = C4::Labels::Label->new(
60                                     batch_id            => $batch_id,
61                                     item_number         => $item->{'item_number'},
62                                     format_string       => $layout->get_attr('format_string'),
63                                       );
64     my $format_string = $layout->get_attr('format_string');
65     my @data_fields = split(/, /, $format_string);
66     my $csv_data = $label->csv_data();
67     for (my $i = 0; $i < (scalar(@data_fields) - 1); $i++) {
68         push(@{$xml_data->{'label'}[$item_count]->{$data_fields[$i]}}, $$csv_data[$i]);
69     }
70     $item_count++;
71 }
72
73 #die "XML DATA:\n" . Dumper($xml_data);
74
75 my $xml_out = $xml->XMLout($xml_data);
76 #die "XML OUT:\n" . Dumper($xml_out);
77 print $xml_out;
78
79 exit(1);
80
81 =head1 NAME
82
83 labels/label-create-xml.pl - A script for creating a xml export of labels and label batches in Koha
84
85 =head1 ABSTRACT
86
87 This script provides the means of producing a xml of labels for items either individually, in groups, or in batches from within Koha. This particular script is provided more as
88 a demonstration of the multitude of formats Koha labels could be exported in based on the current Label Creator API.
89
90 =head1 AUTHOR
91
92 Chris Nighswonger <cnighswonger AT foundations DOT edu>
93
94 =head1 COPYRIGHT
95
96 Copyright 2009 Foundations Bible College.
97
98 =head1 LICENSE
99
100 This file is part of Koha.
101
102 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
103 Foundation; either version 2 of the License, or (at your option) any later version.
104
105 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,
106 Fifth Floor, Boston, MA 02110-1301 USA.
107
108 =head1 DISCLAIMER OF WARRANTY
109
110 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
111 A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
112