Revert "Bug 4450 Use more consistent error returns in C4/Creators/*"
[koha.git] / C4 / Creators / Profile.pm
1 package C4::Creators::Profile;
2
3 use strict;
4 use warnings;
5
6 use autouse 'Data::Dumper' => qw(Dumper);
7
8 use C4::Context;
9 use C4::Debug;
10 use C4::Creators::Lib 1.000000 qw(get_unit_values);
11
12 BEGIN {
13     use version; our $VERSION = qv('1.0.0_1');
14 }
15
16 sub _check_params {
17     my $given_params = {};
18     my $exit_code = 0;
19     my @valid_profile_params = (
20         'printer_name',
21         'template_id',
22         'paper_bin',
23         'offset_horz',
24         'offset_vert',
25         'creep_horz',
26         'creep_vert',
27         'units',
28         'creator',
29     );
30     if (scalar(@_) >1) {
31         $given_params = {@_};
32         foreach my $key (keys %{$given_params}) {
33             if (!(grep m/$key/, @valid_profile_params)) {
34                 warn sprintf('Unrecognized parameter type of "%s".', $key);
35                 $exit_code = 1;
36             }
37         }
38     }
39     else {
40         if (!(grep m/$_/, @valid_profile_params)) {
41             warn sprintf('Unrecognized parameter type of "%s".', $_);
42             $exit_code = 1;
43         }
44     }
45     return $exit_code;
46 }
47
48 sub _conv_points {
49     my $self = shift;
50     my @unit_value = grep {$_->{'type'} eq $self->{units}} @{get_unit_values()};
51     $self->{offset_horz}        = $self->{offset_horz} * $unit_value[0]->{'value'};
52     $self->{offset_vert}        = $self->{offset_vert} * $unit_value[0]->{'value'};
53     $self->{creep_horz}         = $self->{creep_horz} * $unit_value[0]->{'value'};
54     $self->{creep_vert}         = $self->{creep_vert} * $unit_value[0]->{'value'};
55     return $self;
56 }
57
58 sub new {
59     my $invocant = shift;
60     if (_check_params(@_) eq 1) {
61         return -1;
62     }
63     my $type = ref($invocant) || $invocant;
64     my $self = {
65         printer_name    => 'Default Printer',
66         template_id     => '',
67         paper_bin       => 'Tray 1',
68         offset_horz     => 0,
69         offset_vert     => 0,
70         creep_horz      => 0,
71         creep_vert      => 0,
72         units           => 'POINT',
73         @_,
74     };
75     bless ($self, $type);
76     return $self;
77 }
78
79 sub retrieve {
80     my $invocant = shift;
81     my %opts = @_;
82     my $type = ref($invocant) || $invocant;
83     my $query = "SELECT * FROM printers_profile WHERE profile_id = ? AND creator = ?";
84     my $sth = C4::Context->dbh->prepare($query);
85     $sth->execute($opts{'profile_id'}, $opts{'creator'});
86     if ($sth->err) {
87         warn sprintf('Database returned the following error: %s', $sth->errstr);
88         return -1;
89     }
90     my $self = $sth->fetchrow_hashref;
91     $self = _conv_points($self) if ($opts{convert} && $opts{convert} == 1);
92     bless ($self, $type);
93     return $self;
94 }
95
96 sub delete {
97     my $self = {};
98     my %opts = ();
99     my $call_type = '';
100     my @params = ();
101     if (ref($_[0])) {
102         $self = shift;  # check to see if this is a method call
103         $call_type = 'C4::'. $self->{'creator'} .'::Profile->delete';
104         push @params, $self->{'profile_id'}, $self->{'creator'};
105     }
106     else {
107         my $class = shift; #XXX: is this too hackish?
108         %opts = @_;
109         $call_type = $class . "::delete";
110         push @params, $opts{'profile_id'}, $opts{'creator'};
111     }
112     if (scalar(@params) < 2) {   # If there is no profile id or creator type then we cannot delete it
113         warn sprintf('%s : Cannot delete profile as the profile id is invalid or non-existant.', $call_type) if !$params[0];
114         warn sprintf('%s : Cannot delete profile as the creator type is invalid or non-existant.', $call_type) if !$params[1];
115         return -1;
116     }
117     my $query = "DELETE FROM printers_profile WHERE profile_id = ? AND creator = ?";
118     my $sth = C4::Context->dbh->prepare($query);
119 #    $sth->{'TraceLevel'} = 3;
120     $sth->execute(@params);
121     if ($sth->err) {
122         warn sprintf('Database returned the following error on attempted DELETE: %s', $sth->errstr);
123         return -1;
124     }
125 }
126
127 sub save {
128     my $self = shift;
129     if ($self->{'profile_id'}) {        # if we have an profile_id, the record exists and needs UPDATE
130         my @params;
131         my $query = "UPDATE printers_profile SET ";
132         foreach my $key (keys %{$self}) {
133             next if ($key eq 'profile_id') || ($key eq 'creator');
134             push (@params, $self->{$key});
135             $query .= "$key=?, ";
136         }
137         $query = substr($query, 0, (length($query)-2));
138         push (@params, $self->{'profile_id'}, $self->{'creator'});
139         $query .= " WHERE profile_id=? AND creator=?;";
140         my $sth = C4::Context->dbh->prepare($query);
141 #        $sth->{'TraceLevel'} = 3;
142         $sth->execute(@params);
143         if ($sth->err) {
144             warn sprintf('Database returned the following error on attempted UPDATE: %s', $sth->errstr);
145             return -1;
146         }
147         return $self->{'profile_id'};
148     }
149     else {                      # otherwise create a new record
150         my @params;
151         my $query = "INSERT INTO printers_profile (";
152         foreach my $key (keys %{$self}) {
153             push (@params, $self->{$key});
154             $query .= "$key, ";
155         }
156         $query = substr($query, 0, (length($query)-2));
157         $query .= ") VALUES (";
158         for (my $i=1; $i<=(scalar keys %$self); $i++) {
159             $query .= "?,";
160         }
161         $query = substr($query, 0, (length($query)-1));
162         $query .= ");";
163         my $sth = C4::Context->dbh->prepare($query);
164         $sth->execute(@params);
165         if ($sth->err) {
166             warn sprintf('Database returned the following error on attempted INSERT: %s', $sth->errstr);
167             return -1;
168         }
169         my $sth1 = C4::Context->dbh->prepare("SELECT MAX(profile_id) FROM printers_profile;");
170         $sth1->execute();
171         my $tmpl_id = $sth1->fetchrow_array;
172         return $tmpl_id;
173     }
174 }
175
176 sub get_attr {
177     my $self = shift;
178     if (_check_params(@_) eq 1) {
179         return -1;
180     }
181     my ($attr) = @_;
182     if (exists($self->{$attr})) {
183         return $self->{$attr};
184     }
185     else {
186         warn sprintf('%s is currently undefined.', $attr);
187         return -1;
188     }
189 }
190
191 sub set_attr {
192     my $self = shift;
193     if (_check_params(@_) eq 1) {
194         return -1;
195     }
196     my %attrs = @_;
197     foreach my $attrib (keys(%attrs)) {
198         $self->{$attrib} = $attrs{$attrib};
199     };
200     return 0;
201 }
202
203 1;
204 __END__
205
206 =head1 NAME
207
208 C4::Labels::Profile - A class for creating and manipulating profile objects in Koha
209
210 =head1 ABSTRACT
211
212 This module provides methods for creating, retrieving, and otherwise manipulating label profile objects used by Koha to create and export labels.
213
214 =head1 METHODS
215
216 =head2 new()
217
218     Invoking the I<new> method constructs a new profile object containing the default values for a template.
219     The following parameters are optionally accepted as key => value pairs:
220
221         C<printer_name>         The name of the printer to which this profile applies.
222         C<template_id>          The template to which this profile may be applied. NOTE: There may be multiple profiles which may be applied to the same template.
223         C<paper_bin>            The paper bin of the above printer to which this profile applies. NOTE: printer name, template id, and paper bin must form a unique combination.
224         C<offset_horz>          Amount of compensation for horizontal offset (position of text on a single label). This amount is measured in the units supplied by the units parameter in this profile.
225         C<offset_vert>          Amount of compensation for vertical offset.
226         C<creep_horz>           Amount of compensation for horizontal creep (tendency of text to 'creep' off of the labels over the span of the entire page).
227         C<creep_vert>           Amount of compensation for vertical creep.
228         C<units>                The units of measure used for this template. These B<must> match the measures you supply above or
229                                 bad things will happen to your document. NOTE: The only supported units at present are:
230
231 =over 9
232
233 =item .
234 POINT   = Postscript Points (This is the base unit in the Koha label creator.)
235
236 =item .
237 AGATE   = Adobe Agates (5.1428571 points per)
238
239 =item .
240 INCH    = US Inches (72 points per)
241
242 =item .
243 MM      = SI Millimeters (2.83464567 points per)
244
245 =item .
246 CM      = SI Centimeters (28.3464567 points per)
247
248 =back
249
250     example:
251         C<my $profile = C4::Labels::Profile->new(); # Creates and returns a new profile object>
252
253         C<my $profile = C4::Labels::Profile->new(template_id => 1, paper_bin => 'Bypass Tray', offset_horz => 0.02, units => 'POINT'); # Creates and returns a new profile object using
254             the supplied values to override the defaults>
255
256     B<NOTE:> This profile is I<not> written to the database until save() is invoked. You have been warned!
257
258 =head2 retrieve(profile_id => $profile_id, convert => 1)
259
260     Invoking the I<retrieve> method constructs a new profile object containing the current values for profile_id. The method returns a new object upon success and 1 upon failure.
261     Errors are logged to the Apache log. One further option maybe accessed. See the examples below for further description.
262
263     examples:
264
265         C<my $profile = C4::Labels::Profile->retrieve(profile_id => 1); # Retrieves profile record 1 and returns an object containing the record>
266
267         C<my $profile = C4::Labels::Profile->retrieve(profile_id => 1, convert => 1); # Retrieves profile record 1, converts the units to points and returns an object containing the record>
268
269 =head2 delete()
270
271     Invoking the delete method attempts to delete the profile from the database. The method returns -1 upon failure. Errors are logged to the Apache log.
272     NOTE: This method may also be called as a function and passed a key/value pair simply deleteing that profile from the database. See the example below.
273
274     examples:
275         C<my $exitstat = $profile->delete(); # to delete the record behind the $profile object>
276         C<my $exitstat = C4::Labels::Profile::delete(profile_id => 1); # to delete profile record 1>
277
278 =head2 save()
279
280     Invoking the I<save> method attempts to insert the profile into the database if the profile is new and update the existing profile record if the profile exists. The method returns
281     the new record profile_id upon success and -1 upon failure (This avoids conflicting with a record profile_id of 1). Errors are logged to the Apache log.
282
283     example:
284         C<my $exitstat = $profile->save(); # to save the record behind the $profile object>
285
286 =head2 get_attr($attribute)
287
288     Invoking the I<get_attr> method will return the value of the requested attribute or -1 on errors.
289
290     example:
291         C<my $value = $profile->get_attr($attribute);>
292
293 =head2 set_attr(attribute => value, attribute_2 => value)
294
295     Invoking the I<set_attr> method will set the value of the supplied attributes to the supplied values. The method accepts key/value pairs separated by commas.
296
297     example:
298         $profile->set_attr(attribute => value);
299
300 =head1 AUTHOR
301
302 Chris Nighswonger <cnighswonger AT foundations DOT edu>
303
304 =head1 COPYRIGHT
305
306 Copyright 2009 Foundations Bible College.
307
308 =head1 LICENSE
309
310 This file is part of Koha.
311
312 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
313 Foundation; either version 2 of the License, or (at your option) any later version.
314
315 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,
316 Fifth Floor, Boston, MA 02110-1301 USA.
317
318 =head1 DISCLAIMER OF WARRANTY
319
320 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
321 A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
322
323 =cut
324
325 #=head1
326 #drawbox( ($left_margin), ($top_margin), ($page_width-(2*$left_margin)), ($page_height-(2*$top_margin)) ); # FIXME: Breakout code to print alignment page for printer profile setup
327 #
328 #=head2 draw_boundaries
329 #
330 # sub draw_boundaries ($llx_spine, $llx_circ1, $llx_circ2,
331 #                $lly, $spine_width, $label_height, $circ_width)
332 #
333 #This sub draws boundary lines where the label outlines are, to aid in printer testing, and debugging.
334 #
335 #=cut
336 #
337 ##       FIXME: Template use for profile adjustment...
338 ##sub draw_boundaries {
339 ##
340 ##    my (
341 ##        $llx_spine, $llx_circ1,  $llx_circ2, $lly,
342 ##        $spine_width, $label_height, $circ_width
343 ##    ) = @_;
344 ##
345 ##    my $lly_initial = ( ( 792 - 36 ) - 90 );
346 ##    $lly            = $lly_initial; # FIXME - why are we ignoring the y_pos parameter by redefining it?
347 ##    my $i             = 1;
348 ##
349 ##    for ( $i = 1 ; $i <= 8 ; $i++ ) {
350 ##
351 ##        _draw_box( $llx_spine, $lly, ($spine_width), ($label_height) );
352 ##
353 ##   #warn "OLD BOXES  x=$llx_spine, y=$lly, w=$spine_width, h=$label_height";
354 ##        _draw_box( $llx_circ1, $lly, ($circ_width), ($label_height) );
355 ##        _draw_box( $llx_circ2, $lly, ($circ_width), ($label_height) );
356 ##
357 ##        $lly = ( $lly - $label_height );
358 ##
359 ##    }
360 ##}
361 #
362 #
363 #
364 #=cut