1 package SL::DB::Object;
 
   5 use English qw(-no_match_vars);
 
   7 use List::MoreUtils qw(any);
 
  10 use SL::DB::Helper::Attr;
 
  11 use SL::DB::Helper::Metadata;
 
  12 use SL::DB::Helper::Manager;
 
  13 use SL::DB::Object::Hooks;
 
  15 use base qw(Rose::DB::Object);
 
  19   my $self  = $class->SUPER::new();
 
  21   $self->_assign_attributes(@_) if $self;
 
  27   my $class_or_self = shift;
 
  28   my $class         = ref($class_or_self) || $class_or_self;
 
  29   my $type          = $class =~ m/::Auth/ ? 'LXOFFICE_AUTH' : 'LXOFFICE';
 
  31   return SL::DB::create(undef, $type);
 
  35   return 'SL::DB::Helper::Metadata';
 
  38 sub _get_manager_class {
 
  39   my $class_or_self = shift;
 
  40   my $class         = ref($class_or_self) || $class_or_self;
 
  42   return $class->meta->convention_manager->auto_manager_class_name($class);
 
  45 my %text_column_types = (text => 1, char => 1, varchar => 1);
 
  47 sub assign_attributes {
 
  51   my $pk         = ref($self)->meta->primary_key;
 
  52   delete @attributes{$pk->column_names} if $pk;
 
  54   return $self->_assign_attributes(%attributes);
 
  57 sub _assign_attributes {
 
  61   my %types      = map { $_->name => $_->type } ref($self)->meta->columns;
 
  63   while (my ($attribute, $value) = each %attributes) {
 
  64     my $type = lc($types{$attribute} || 'text');
 
  65     $value   = $type eq 'boolean'                ? ($value ? 't' : 'f')
 
  66              : $text_column_types{$type}         ? $value
 
  67              : defined($value) && ($value eq '') ? undef
 
  69     $self->$attribute($value);
 
  75 sub update_attributes {
 
  78   $self->assign_attributes(@_)->save;
 
  86   return $self->$sub(@_);
 
  94   $check    = $check->($self) if ref($check) eq 'CODE';
 
  96   return $check ? $self->$sub(@_) : $self;
 
  99 # These three functions cannot sit in SL::DB::Object::Hooks because
 
 100 # mixins don't deal well with super classes (SUPER is the current
 
 101 # package's super class, not $self's).
 
 103   my ($self, @args) = @_;
 
 105   SL::DB::Object::Hooks::run_hooks($self, 'before_load');
 
 106   my $result = $self->SUPER::load(@args);
 
 107   SL::DB::Object::Hooks::run_hooks($self, 'after_load', $result);
 
 113   my ($self, @args) = @_;
 
 115   my ($result, $exception);
 
 117     SL::DB::Object::Hooks::run_hooks($self, 'before_save');
 
 118     $exception = $EVAL_ERROR unless eval {
 
 119       $result = $self->SUPER::save(@args);
 
 122     SL::DB::Object::Hooks::run_hooks($self, 'after_save', $result);
 
 125   $self->db->in_transaction ? $worker->() : $self->db->do_transaction($worker);
 
 127   die $exception if $exception;
 
 133   my ($self, @args) = @_;
 
 135   my ($result, $exception);
 
 137     SL::DB::Object::Hooks::run_hooks($self, 'before_delete');
 
 138     $exception = $EVAL_ERROR unless eval {
 
 139       $result = $self->SUPER::delete(@args);
 
 142     SL::DB::Object::Hooks::run_hooks($self, 'after_delete', $result);
 
 145   $self->db->in_transaction ? $worker->() : $self->db->do_transaction($worker);
 
 147   die $exception if $exception;
 
 160 SL::DB::Object: Base class for all of our model classes
 
 164 This is the base class from which all other model classes are
 
 165 derived. It contains functionality and settings required for all model
 
 168 Several functions (e.g. C<make_manager_class>, C<init_db>) in this
 
 169 class are used for setting up the classes / base classes used for all
 
 170 model instances. They overwrite the functions from
 
 177 =item assign_attributes %attributes
 
 179 =item _assign_attributes %attributes
 
 181 Assigns all elements from C<%attributes> to the columns by calling
 
 182 their setter functions. The difference between the two functions is
 
 183 that C<assign_attributes> protects primary key columns while
 
 184 C<_assign_attributes> doesn't.
 
 186 Both functions handle values that are empty strings by replacing them
 
 187 with C<undef> for non-text columns. This allows the calling functions
 
 188 to use data from HTML forms as the input for C<assign_attributes>
 
 189 without having to remove empty strings themselves (think of
 
 190 e.g. select boxes with an empty option which should be turned into
 
 191 C<NULL> in the database).
 
 193 =item update_attributes %attributes
 
 195 Assigns the attributes from C<%attributes> by calling the
 
 196 C<assign_attributes> function and saves the object afterwards. Returns
 
 199 =item _get_manager_class
 
 201 Returns the manager package for the object or class that it is called
 
 202 on. Can be used from methods in this package for getting the actual
 
 205 =item C<call_sub $name, @args>
 
 207 Calls the sub C<$name> on C<$self> with the arguments C<@args> and
 
 208 returns its result. This is meant for situations in which the sub's
 
 209 name is a composite, e.g.
 
 211   my $chart_id = $buchungsgruppe->call_sub(($is_sales ? "income" : "expense") . "_accno_id_${taxzone_id}");
 
 213 =item C<call_sub_if $name, $check, @args>
 
 215 Calls the sub C<$name> on C<$self> with the arguments C<@args> if
 
 216 C<$check> is trueish. If C<$check> is a code reference then it will be
 
 217 called with C<$self> as the only argument and its result determines
 
 218 whether or not C<$name> is called.
 
 220 Returns the sub's result if the check is positive and C<$self>
 
 227 Moritz Bunkus E<lt>m.bunkus@linet-services.deE<gt>