]> git.decadent.org.uk Git - maypole.git/blob - lib/Maypole/Model/CDBI/FromCGI.pm
7a725d1258f6ee8debdab2e0f3c2cc5b3aca883d
[maypole.git] / lib / Maypole / Model / CDBI / FromCGI.pm
1 package Maypole::Model::CDBI::FromCGI;
2 use Class::C3;
3 use strict;
4 use warnings;
5
6 =head1 NAME
7
8 Maypole::Model:CDBI::FromCGI - Validate form input and populate Model objects
9
10 =head1 SYNOPSIS
11
12   $obj = $class->create_from_cgi($r);
13   $obj = $class->create_from_cgi($r, { params => {data1=>...}, required => [..],
14                  ignore => [...], all => [...]);
15   $obj = $class->create_from_cgi($h, $options); # CDBI::FromCGI style, see docs
16
17   $obj->update_from_cgi($r);
18   $obj->update_from_cgi($h, $options);
19
20   $obj = $obj->add_to_from_cgi($r);
21   $obj = $obj->add_to_from_cgi($r, { params => {...} } );
22
23   # This does not work like in CDBI::FromCGI and probably never will :
24   # $class->update_from_cgi($h, @columns);
25
26
27 =head1 DESCRIPTION
28
29 Provides a way to validate form input and populate Model Objects, based
30 on Class::DBI::FromCGI.
31
32 =cut
33
34
35 # The base base model class for apps 
36 # provides good search and create functions
37
38 use base qw(Exporter); 
39 use CGI::Untaint;
40 use Maypole::Constants;
41 use CGI::Untaint::Maypole;
42 our $Untainter = 'CGI::Untaint::Maypole';
43
44 our @EXPORT = qw/update_from_cgi create_from_cgi untaint_columns add_to_from_cgi
45     cgi_update_errors untaint_type validate_inputs validate_all _do_update_all 
46     _do_create_all _create_related classify_form_inputs/;
47
48
49
50 use Data::Dumper; # for debugging
51
52 =head1 METHODS
53
54 =head2 untaint_columns
55
56 Replicates Class::DBI::FromCGI method of same name :
57
58   __PACKAGE__->untaint_columns(
59     printable => [qw/Title Director/],
60     integer   => [qw/DomesticGross NumExplodingSheep],
61     date      => [qw/OpeningDate/],
62   );
63
64 =cut
65
66 sub untaint_columns {
67     die "untaint_columns() needs a hash" unless @_ % 2;
68     my ($class, %args) = @_;
69     $class->mk_classdata('__untaint_types')
70         unless $class->can('__untaint_types');
71     my %types = %{ $class->__untaint_types || {} };
72     while (my ($type, $ref) = each(%args)) {
73         $types{$type} = $ref;
74     }
75     $class->__untaint_types(\%types);
76 }
77
78 =head2 untaint_type
79
80   gets the  untaint type for a column as set in "untaint_types"
81
82 =cut
83
84 # get/set untaint_type for a column
85 sub untaint_type {
86     my ($class, $field, $new_type) = @_;
87     my %handler = __PACKAGE__->_untaint_handlers($class);
88     return $handler{$field} if $handler{$field};
89     my $handler = eval {
90         local $SIG{__WARN__} = sub { };
91         my $type = $class->column_type($field) or die;
92         _column_type_for($type);
93     };
94     return $handler || undef;
95 }
96
97 =head2 cgi_update_errors
98
99 Returns errors that ocurred during an operation.
100
101 =cut
102
103 sub cgi_update_errors { %{ shift->{_cgi_update_error} || {} } }
104
105 =head2 create_from_cgi
106
107 Based on the same method in Class::DBI::FromCGI.
108
109 Creates  multiple objects  from a  cgi form. 
110 Errors are returned in cgi_update_errors
111
112 It can be called Maypole style passing the Maypole request object as the
113 first arg, or Class::DBI::FromCGI style passing the Untaint Handler ($h)
114 as the first arg. 
115
116 A hashref of options can be passed as the second argument. Unlike 
117 in the CDBI equivalent, you can *not* pass a list as the second argument.
118 Options can be :
119  params -- hashref of cgi data to use instead of $r->params,
120  required -- list of fields that are required
121  ignore   -- list of fields to ignore
122  all      -- list of all fields (defaults to $class->columns)
123
124 =cut
125
126 sub create_from_cgi {
127   my ($self, $r, $opts) = @_;
128   $self->_croak( "create_from_cgi can only be called as a class method")
129     if ref $self;
130   my ($errors, $validated);
131   
132   
133   if ($r->isa('CGI::Untaint')) { # FromCGI interface compatibility
134     ($validated, $errors) = $self->validate_inputs($r,$opts); 
135   } else {
136     my $params = $opts->{params} || $r->params;
137     $opts->{params} = $self->classify_form_inputs($params);
138     ($validated, $errors) = $self->validate_all($r, $opts);
139   }
140
141   if (keys %$errors) {
142     return bless { _cgi_update_error => $errors }, $self;
143   }
144
145   # Insert all the data
146   my ($obj, $err ) = $self->_do_create_all($validated); 
147   if ($err) {
148     return bless { _cgi_update_error => $err }, $self;
149   }
150   return $obj;
151 }
152
153
154 =head2 update_from_cgi
155
156 Replicates the Class::DBI::FromCGI method of same name. It updates an object and
157 returns 1 upon success. It can take the same arguments as create_form_cgi. 
158 If errors, it sets the cgi_update_errors.
159
160 =cut
161
162 sub update_from_cgi {
163   my ($self, $r, $opts) = @_;
164   $self->_croak( "update_from_cgi can only be called as an object method") unless ref $self;
165   my ($errors, $validated);
166   $self->{_cgi_update_error} = {};
167   $opts->{updating} = 1;
168
169   # FromCGI interface compatibility 
170   if ($r->isa('CGI::Untaint')) {
171     # REHASH the $opts for updating:
172     # 1: we ignore any fields we dont have parmeter for. (safe ?)
173     # 2: we dont want to update fields unless they change
174
175     my @ignore = @{$opts->{ignore} || []};
176     push @ignore, $self->primary_column->name;
177     my $raw = $r->raw_data;
178     #print "*** raw data ****" . Dumper($raw);
179     foreach my $field ($self->columns) {
180       #print "*** field is $field ***\n";
181         if (not defined $raw->{$field}) {
182                         push @ignore, $field->name; 
183                         #print "*** ignoring $field because it is not present ***\n";
184                         next;
185         }
186         # stupid inflation , cant get at raw db value easy, must call
187         # deflate ***FIXME****
188         my $cur_val = ref $self->$field ? $self->$field->id : $self->$field;
189         if ($raw->{$field} eq $cur_val) {
190                         #print "*** ignoring $field because unchanged ***\n";
191                         push @ignore, "$field"; 
192         }
193     }
194     $opts->{ignore} = \@ignore;
195     ($validated, $errors) = $self->validate_inputs($r,$opts); 
196   } else {
197     my $params = $opts->{params} || $r->params;
198     $opts->{params} = $self->classify_form_inputs($params);
199     ($validated, $errors) = $self->validate_all($r, $opts);
200     #print "*** errors for validate all   ****" . Dumper($errors);
201   }
202
203   if (keys %$errors) {
204     #print "*** we have errors   ****" . Dumper($errors);
205     $self->{_cgi_update_error} = $errors;
206     return;
207   }
208
209   # Update all the data
210   my ($obj, $err ) = $self->_do_update_all($validated); 
211   if ($err) {
212     $self->{_cgi_update_error} = $err;
213     return; 
214   }
215   return 1;
216 }
217
218 =head2 add_to_from_cgi
219
220 $obj->add_to_from_cgi($r[, $opts]); 
221
222 Like add_to_* for has_many relationships but will add nay objects it can 
223 figure out from the data.  It returns a list of objects it creates or nothing
224 on error. Call cgi_update_errors with the calling object to get errors.
225 Fatal errors are in the respective "FATAL" key.
226
227 =cut
228
229 sub add_to_from_cgi {
230   my ($self, $r, $opts) = @_;
231   $self->_croak( "add_to_from_cgi can only be called as an object method")
232     unless ref $self;
233   my ($errors, $validated, @created);
234    
235   my $params = $opts->{params} || $r->params;
236   $opts->{params} = $self->classify_form_inputs($params);
237   ($validated, $errors) = $self->validate_all($r, $opts);
238
239   
240   if (keys %$errors) {
241     $self->{_cgi_update_error} = $errors;
242         return;
243   }
244
245   # Insert all the data
246   foreach my $hm (keys %$validated) { 
247         my ($obj, $errs) = $self->_create_related($hm, $validated->{$hm}); 
248         if (not $errs) {
249                 push @created, $obj;
250         }else {
251                 $errors->{$hm} = $errs;
252         }
253   }
254   
255   if (keys %$errors) {
256     $self->{_cgi_update_error} = $errors;
257         return;
258   }
259
260   return @created;
261 }
262
263  
264
265
266 =head2 validate_all
267
268 Validates (untaints) a hash of possibly mixed table data. 
269 Returns validated and errors ($validated, $errors).
270 If no errors then undef in that spot.
271
272 =cut
273
274 sub validate_all {
275   my ($self, $r, $opts) = @_;
276   my $class = ref $self || $self;
277   my $classified = $opts->{params};
278   my $updating   = $opts->{updating};
279
280   # Base case - validate this classes data
281   $opts->{all}   ||= eval{ $r->config->{$self->table}{all_cols} } || [$self->columns('All')];
282   $opts->{required} ||= eval { $r->config->{$self->table}{required_cols} || $self->required_columns } || [];
283   my $ignore = $opts->{ignore} || eval{ $r->config->{$self->table}{ignore_cols} } || [];
284   push @$ignore, $self->primary_column->name if $updating;
285   
286   # Ignore hashes of foreign inputs. This takes care of required has_a's 
287   # for main object that we have foreign inputs for. 
288   foreach (keys %$classified) {
289     push @$ignore, $_ if  ref $classified->{$_} eq 'HASH'; 
290   }
291   $opts->{ignore} = $ignore;
292   my $h = $Untainter->new($classified);
293   my ($validated, $errs) = $self->validate_inputs($h, $opts);
294
295   # Validate all foreign input
296         
297   #warn "Classified data is " . Dumper($classified); 
298   foreach my $field (keys %$classified) {
299     if (ref $classified->{$field} eq "HASH") {
300       my $data = $classified->{$field};
301           my $ignore = [];
302       my @usr_entered_vals = ();
303       foreach ( values %$data ) {
304                 push @usr_entered_vals, $_  if $_  ne '';
305       }
306
307       # filled in values
308       # IF we have some inputs for the related
309       if ( @usr_entered_vals ) {
310                 # We need to ignore us if we are a required has_a in this foreign class
311                 my $rel_meta = $self->related_meta($r, $field);
312             my $fclass   = $rel_meta->{foreign_class};
313                 my $fmeta    = $fclass->meta_info('has_a');
314                 for (keys %$fmeta) {
315                         if ($fmeta->{$_}{foreign_class} eq $class) {
316                                 push @$ignore, $_;
317                         }
318                 }
319                 my ($valid, $ferrs) = $fclass->validate_all($r,
320                 {params => $data, updating => $updating, ignore => $ignore } );         
321
322                 $errs->{$field} = $ferrs if $ferrs;
323                 $validated->{$field} = $valid;
324
325       } else { 
326                 # Check this foreign object is not requeired
327                 my %req = map { $_ => 1 } $opts->{required};
328                 if ($req{$field}) {
329                         $errs->{$field}{FATAL} = "This is required. Please enter the required fields in this section." 
330                         }
331                 }
332         }
333   }
334   #warn "Validated inputs are " . Dumper($validated);
335   undef $errs unless keys %$errs;
336   return ($validated, $errs);   
337 }
338
339
340
341 =head2 validate_inputs
342
343 $self->validate_inputs($h, $opts);
344
345 This is the main validation method to validate inputs for a single class.
346 Most of the time you use validate_all.
347
348 Returns validated and errors.
349
350 If no errors then undef in that slot.
351
352 Note: This method is currently experimental (in 2.11) and may be subject to change
353 without notice.
354
355 =cut
356
357 sub validate_inputs {
358   my ($self, $h, $opts) = @_;
359   my $updating = $opts->{updating};
360   my %required = map { $_ => 1 } @{$opts->{required}};
361   my %seen;
362   $seen{$_}++ foreach @{$opts->{ignore}};
363   my $errors    = {}; 
364   my $fields    = {};
365   $opts->{all} = [ $self->columns ] unless @{$opts->{all} || [] } ;
366   foreach my $field (@{$opts->{required}}, @{$opts->{all}}) {
367     next if $seen{$field}++;
368     my $type = $self->untaint_type($field) or 
369       do { warn "No untaint type for $self 's field $field. Ignoring.";
370            next;
371          };
372     my $value = $h->extract("-as_$type" => $field);
373     my $err = $h->error;
374
375     # Required field error 
376     if ($required{$field} and !ref($value) and $err =~ /^No input for/) {
377       $errors->{$field} = "You must supply '$field'" 
378     } elsif ($err) {
379
380       # 1: No inupt entered
381       if ($err =~ /^No input for/) {
382                                 # A : Updating -- set the field to undef or '' 
383         if ($updating) { 
384           $fields->{$field} = eval{$self->column_nullable($field)} ? 
385             undef : ''; 
386         }
387                                 # B : Creating -- dont set a value and RDMS will put default
388       }
389
390       # 2: A real untaint error -- just set the error 
391       elsif ($err !~ /^No parameter for/) {
392         $errors->{$field} =  $err;
393       }
394     } else {
395       $fields->{$field} = $value
396     }
397   }
398   undef $errors unless keys %$errors;
399   return ($fields, $errors);
400 }
401
402
403 ##################
404 # _do_create_all #
405 ##################
406
407 # Untaints and Creates objects from hashed params.
408 # Returns parent object and errors ($obj, $errors).  
409 # If no errors, then undef in that slot.
410 sub _do_create_all {
411   my ($self, $validated) = @_;
412   my $class = ref $self  || $self;
413   my ($errors, $accssr); 
414
415   # Separate out related objects' data from main hash 
416   my %related;
417   foreach (keys %$validated) {
418     $related{$_}= delete $validated->{$_} if ref $validated->{$_} eq 'HASH';
419   }
420
421   # Make main object -- base case
422   #warn "\n*** validated data is " . Dumper($validated). "***\n";
423   my $me_obj  = eval { $self->create($validated) };
424   if ($@) { 
425     warn "Just failed making a " . $self. " FATAL Error is $@"
426       if (eval{$self->model_debug});  
427     $errors->{FATAL} = $@; 
428     return (undef, $errors);
429   }
430
431   if (eval{$self->model_debug}) {
432     if ($me_obj) {
433       warn "Just made a $self : $me_obj ( " . $me_obj->id . ")";
434     } else {
435       warn "Just failed making a " . $self. " FATAL Error is $@" if not $me_obj;
436     }
437   }
438
439   # Make other related (must_have, might_have, has_many  etc )
440   foreach $accssr ( keys %related ) {
441     my ($rel_obj, $errs) = 
442       $me_obj->_create_related($accssr, $related{$accssr});
443     $errors->{$accssr} = $errs if $errs;
444
445   }
446   #warn "Errors are " . Dumper($errors);
447
448   undef $errors unless keys %$errors;
449   return ($me_obj, $errors);
450 }
451
452
453 ##################
454 # _do_update_all #
455 ##################
456
457 #  Updates objects from hashed untainted data 
458 # Returns 1 
459
460 sub _do_update_all {
461         my ($self, $validated) = @_;
462         my ($errors, $accssr); 
463
464         #  Separate out related objects' data from main hash 
465         my %related;
466         foreach (keys %$validated) {
467                 $related{$_}= delete $validated->{$_} if ref $validated->{$_} eq 'HASH';
468         }
469         # Update main obj 
470         # set does not work with IsA right now so we set each col individually
471         #$self->set(%$validated);
472         my $old = $self->autoupdate(0); 
473         for (keys %$validated) {
474                 $self->$_($validated->{$_});
475         }
476         $self->update;
477         $self->autoupdate($old);
478
479         # Update related
480         foreach $accssr (keys %related) {
481                 my $fobj = $self->$accssr;
482                 my $validated = $related{$accssr};
483                 if ($fobj) {
484                         my $old = $fobj->autoupdate(0); 
485                         for (keys %$validated) {
486                                 $fobj->$_($validated->{$_});
487                         }
488                         $fobj->update;
489                         $fobj->autoupdate($old);
490                 }
491                 else { 
492                         $fobj = $self->_create_related($accssr, $related{$accssr});
493                 }       
494         }
495         return 1;
496 }
497         
498
499 ###################
500 # _create_related #
501 ###################
502
503 # Creates and automatically relates newly created object to calling object 
504 # Returns related object and errors ($obj, $errors).  
505 # If no errors, then undef in that slot.
506
507 sub _create_related {
508     # self is object or class, accssr is accssr to relationship, params are 
509     # data for relobject, and created is the array ref to store objs we 
510     # create (optional).
511     my ( $self, $accssr, $params, $created )  = @_;
512     $self->_croak ("Can't make related object without a parent $self object") 
513         unless ref $self;
514     $created      ||= [];
515     my  $rel_meta = $self->related_meta('r',$accssr);
516     if (!$rel_meta) {
517         $self->_carp("[_create_related] No relationship for $accssr in " . ref($self));
518         return;
519     }
520     my $rel_type  = $rel_meta->{name};
521     my $fclass    = $rel_meta->{foreign_class};
522     #warn " Dumper of meta is " . Dumper($rel_meta);
523
524
525     my ($rel, $errs); 
526
527     # Set up params for might_have, has_many, etc
528     if ($rel_type ne 'has_own' and $rel_type ne 'has_a') {
529
530         # Foreign Key meta data not very standardized in CDBI
531         my $fkey= $rel_meta->{args}{foreign_key} || $rel_meta->{foreign_column};
532         unless ($fkey) { die " Could not determine foreign key for $fclass"; }
533         my %data = (%$params, $fkey => $self->id);
534         %data = ( %data, %{$rel_meta->{args}->{constraint} || {}} );
535         #warn "Data is " . Dumper(\%data);
536         ($rel, $errs) =  $fclass->_do_create_all(\%data, $created);
537     }
538     else { 
539         ($rel, $errs) =  $fclass->_do_create_all($params, $created);
540         unless ($errs) {
541             $self->$accssr($rel->id);
542             $self->update;
543         }
544     }
545     return ($rel, $errs);
546 }
547
548
549
550                 
551 =head2  classify_form_inputs
552
553 $self->classify_form_inputs($params[, $delimiter]);
554
555 Foreign inputs are inputs that have data for a related table.
556 They come named so we can tell which related class they belong to.
557 This assumes the form : $accessor . $delimeter . $column recursively 
558 classifies them into hashes. It returns a hashref.
559
560 =cut
561
562 sub classify_form_inputs {
563         my ($self, $params, $delimiter) = @_;
564         my %hashed = ();
565         my $bottom_level;
566         $delimiter ||= $self->foreign_input_delimiter;
567         foreach my $input_name (keys %$params) {
568                 my @accssrs  = split /$delimiter/, $input_name;
569                 my $col_name = pop @accssrs;    
570                 $bottom_level = \%hashed;
571                 while ( my $a  = shift @accssrs ) {
572                         $bottom_level->{$a} ||= {};
573                         $bottom_level = $bottom_level->{$a};  # point to bottom level
574                 }
575                 # now insert parameter at bottom level keyed on col name
576                 $bottom_level->{$col_name} = $params->{$input_name};
577         }
578         return  \%hashed;
579 }
580
581 sub _untaint_handlers {
582     my ($me, $them) = @_;
583     return () unless $them->can('__untaint_types');
584     my %type = %{ $them->__untaint_types || {} };
585     my %h;
586     @h{ @{ $type{$_} } } = ($_) x @{ $type{$_} } foreach keys %type;
587     return %h;
588 }
589
590 sub _column_type_for {
591     my $type = lc shift;
592     $type =~ s/\(.*//;
593     my %map = (
594         varchar   => 'printable',
595         char      => 'printable',
596         text      => 'printable',
597         tinyint   => 'integer',
598         smallint  => 'integer',
599         mediumint => 'integer',
600         int       => 'integer',
601         integer   => 'integer',
602         bigint    => 'integer',
603         year      => 'integer',
604         date      => 'date',
605     );
606     return $map{$type} || "";
607 }
608
609 =head1 MAINTAINER 
610
611 Maypole Developers
612
613 =head1 AUTHORS
614
615 Peter Speltz, Aaron Trevena 
616
617 =head1 AUTHORS EMERITUS
618
619 Tony Bowden
620
621 =head1 TODO
622
623 * Tests
624 * add_to_from_cgi, search_from_cgi
625 * complete documentation
626 * ensure full backward compatibility with Class::DBI::FromCGI
627
628 =head1 BUGS and QUERIES
629
630 Please direct all correspondence regarding this module to:
631  Maypole list.
632
633 =head1 COPYRIGHT AND LICENSE
634
635 Copyright 2003-2004 by Peter Speltz 
636
637 This library is free software; you can redistribute it and/or modify
638 it under the same terms as Perl itself.
639
640 =head1 SEE ALSO
641
642 L<Class::DBI>, L<Class::DBI::FromCGI>
643
644 =cut
645
646 1;
647
648