}
# Make a moniker from a table
+sub _default_table2moniker {
+ my ($self, $table) = @_;
+
+ return join '', map ucfirst, split /[\W_]+/,
+ Lingua::EN::Inflect::Number::to_S(lc $table);
+}
+
sub _table2moniker {
my ( $self, $table ) = @_;
$moniker = $self->moniker_map->($table);
}
- $moniker ||= join '', map ucfirst, split /[\W_]+/,
- Lingua::EN::Inflect::Number::to_S(lc $table);
+ $moniker ||= $self->_default_table2moniker($table);
return $moniker;
}
return 1;
}
+sub _uniq_fk_rel {
+ my ($self, $local_moniker, $local_relname, $local_cols, $uniqs) = @_;
+
+ my $remote_method = 'has_many';
+
+ # If the local columns have a UNIQUE constraint, this is a one-to-one rel
+ my $local_source = $self->{schema}->source($local_moniker);
+ if (_array_eq([ $local_source->primary_columns ], $local_cols) ||
+ grep { _array_eq($_->[1], $local_cols) } @$uniqs) {
+ $remote_method = 'might_have';
+ $local_relname = $self->_inflect_singular($local_relname);
+ }
+
+ return ($remote_method, $local_relname);
+}
+
+sub _remote_attrs {
+ my ($self, $local_moniker, $local_cols) = @_;
+
+ # If the referring column is nullable, make 'belongs_to' an outer join:
+ my $nullable = grep { $self->{schema}->source($local_moniker)->column_info($_)->{is_nullable} }
+ @$local_cols;
+
+ return $nullable ? { join_type => 'LEFT' } : ();
+}
+
sub generate_code {
my ($self, $local_moniker, $rels, $uniqs) = @_;
delete $rev_cond{$_};
}
- my $remote_method = 'has_many';
-
- # If the local columns have a UNIQUE constraint, this is a one-to-one rel
- my $local_source = $self->{schema}->source($local_moniker);
- if (_array_eq([ $local_source->primary_columns ], $local_cols) ||
- grep { _array_eq($_->[1], $local_cols) } @$uniqs) {
- $remote_method = 'might_have';
- $local_relname = $self->_inflect_singular($local_relname);
- }
+ my ($remote_method);
- # If the referring column is nullable, make 'belongs_to' an outer join:
- my $nullable = grep { $local_source->column_info($_)->{is_nullable} }
- @$local_cols;
+ ($remote_method, $local_relname) = $self->_uniq_fk_rel($local_moniker, $local_relname, $local_cols, $uniqs);
push(@{$all_code->{$local_class}},
{ method => 'belongs_to',
args => [ $remote_relname,
$remote_class,
\%cond,
- $nullable ? { join_type => 'LEFT' } : ()
+ $self->_remote_attrs($local_moniker, $local_cols),
],
}
);