[35/40] Work on C4::Labels tests and various bugfixs resulting
[koha.git] / labels / label-create-xml.pl
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use CGI;
7 use Sys::Syslog qw(syslog);
8 use XML::Simple;
9 use Data::Dumper;
10
11 use C4::Debug;
12 use C4::Labels::Batch 1.000000;
13 use C4::Labels::Template 1.000000;
14 use C4::Labels::Layout 1.000000;
15 use C4::Labels::PDF 1.000000;
16 use C4::Labels::Label 1.000000;
17
18 =head
19
20 =cut
21
22 my $cgi = new CGI;
23
24 my $batch_id    = $cgi->param('batch_id') if $cgi->param('batch_id');
25 my $template_id = $cgi->param('template_id') || undef;
26 my $layout_id   = $cgi->param('layout_id') || undef;
27 my @label_ids   = $cgi->param('label_id') if $cgi->param('label_id');
28 my @item_numbers  = $cgi->param('item_number') if $cgi->param('item_number');
29
30 my $items = undef;
31
32 my $xml_file = (@label_ids || @item_numbers ? "label_single_" . scalar(@label_ids || @item_numbers) : "label_batch_$batch_id");
33 print $cgi->header(-type        => 'text/xml',
34                    -encoding    => 'utf-8',
35                    -attachment  => "$xml_file.xml",
36                     );
37
38 my $batch = C4::Labels::Batch->retrieve(batch_id => $batch_id);
39 my $template = C4::Labels::Template->retrieve(template_id => $template_id, profile_id => 1);
40 my $layout = C4::Labels::Layout->retrieve(layout_id => $layout_id);
41
42
43 if (@label_ids) {
44     my $batch_items = $batch->get_attr('items');
45     grep {
46         my $label_id = $_;
47         push(@{$items}, grep{$_->{'label_id'} == $label_id;} @{$batch_items});
48     } @label_ids;
49 }
50 elsif (@item_numbers) {
51     grep {
52         push(@{$items}, {item_number => $_});
53     } @item_numbers;
54 }
55 else {
56     $items = $batch->get_attr('items');
57 }
58
59 my $xml = XML::Simple->new();
60 my $xml_data = {'label' => []};
61
62 my $item_count = 0;
63
64 XML_ITEMS:
65 foreach my $item (@$items) {
66     push(@{$xml_data->{'label'}}, {'item_number' => $item->{'item_number'}});
67     my $label = C4::Labels::Label->new(
68                                     batch_id            => $batch_id,
69                                     item_number         => $item->{'item_number'},
70                                     format_string       => $layout->get_attr('format_string'),
71                                       );
72     my $format_string = $layout->get_attr('format_string');
73     my @data_fields = split(/, /, $format_string);
74     my $csv_data = $label->csv_data();
75     for (my $i = 0; $i < (scalar(@data_fields) - 1); $i++) {
76         push(@{$xml_data->{'label'}[$item_count]->{$data_fields[$i]}}, $$csv_data[$i]);
77     }
78     $item_count++;
79 #    else {
80 #        syslog("LOG_ERR", "labels/label-create-csv.pl : Text::CSV_XS->combine() returned the following error: %s", $csv->error_input);
81 #        next CSV_ITEMS;
82 #    }
83 }
84
85 #die "XML DATA:\n" . Dumper($xml_data);
86
87 my $xml_out = $xml->XMLout($xml_data);
88 #die "XML OUT:\n" . Dumper($xml_out);
89 print $xml_out;
90
91 exit(1);
92
93 =head1 NAME
94
95 labels/label-create-xml.pl - A script for creating a xml export of labels and label batches in Koha
96
97 =head1 ABSTRACT
98
99 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
100 a demonstration of the multitude of formats Koha labels could be exported in based on the current Label Creator API.
101
102 =head1 AUTHOR
103
104 Chris Nighswonger <cnighswonger AT foundations DOT edu>
105
106 =head1 COPYRIGHT
107
108 Copyright 2009 Foundations Bible College.
109
110 =head1 LICENSE
111
112 This file is part of Koha.
113        
114 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
115 Foundation; either version 2 of the License, or (at your option) any later version.
116
117 You should have received a copy of the GNU General Public License along with Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
118 Suite 330, Boston, MA  02111-1307 USA
119
120 =head1 DISCLAIMER OF WARRANTY
121
122 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
123 A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
124