X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FRelationship%2FAccessor.pm;h=b77ce00f71bf1826f3638bed8052bffb2ea382b3;hb=ecc99a366759efb4d0f68aff9aee8012ceafde43;hp=b94f2381a6ca02b5978f741acb8c792f7ab4b596;hpb=8e68b1160d0b121b1e14d83026283eb22fec06d5;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/lib/DBIx/Class/Relationship/Accessor.pm b/lib/DBIx/Class/Relationship/Accessor.pm index b94f238..b77ce00 100644 --- a/lib/DBIx/Class/Relationship/Accessor.pm +++ b/lib/DBIx/Class/Relationship/Accessor.pm @@ -1,4 +1,5 @@ -package DBIx::Class::Relationship::Accessor; +package # hide from PAUSE + DBIx::Class::Relationship::Accessor; use strict; use warnings; @@ -47,6 +48,7 @@ sub add_relationship_accessor { ); } elsif ($acc_type eq 'multi') { $meth{$rel} = sub { shift->search_related($rel, @_) }; + $meth{"${rel}_rs"} = sub { shift->search_related_rs($rel, @_) }; $meth{"add_to_${rel}"} = sub { shift->create_related($rel, @_); }; } else { $class->throw_exception("No such relationship accessor type $acc_type"); @@ -60,4 +62,39 @@ sub add_relationship_accessor { } } +sub new { + my ($class, $attrs, @rest) = @_; + my ($related, $info); + foreach my $key (keys %{$attrs||{}}) { + next unless $info = $class->relationship_info($key); + $related->{$key} = delete $attrs->{$key} + if ref $attrs->{$key} + && $info->{attrs}{accessor} + && $info->{attrs}{accessor} eq 'single'; + } + my $obj = $class->next::method($attrs, @rest); + if ($related) { + $obj->{_relationship_data} = $related; + foreach my $rel (keys %$related) { + $obj->set_from_related($rel, $related->{$rel}); + } + } + return $obj; +} + +sub update { + my ($obj, $attrs, @rest) = @_; + my $info; + foreach my $key (keys %{$attrs||{}}) { + next unless $info = $obj->relationship_info($key); + if (ref $attrs->{$key} && $info->{attrs}{accessor} + && $info->{attrs}{accessor} eq 'single') { + my $rel = delete $attrs->{$key}; + $obj->set_from_related($key => $rel); + $obj->{_relationship_data}{$key} = $rel; + } + } + return $obj->next::method($attrs, @rest); +} + 1;