Lemonldap-NG-Common/lib/Lemonldap/NG/Common/Conf/Backends/CDBI.pm
package Lemonldap::NG::Common::Conf::Backends::CDBI;
use strict;
use utf8;
use JSON;
use Lemonldap::NG::Common::Conf::Backends::_DBI;
our $VERSION = '2.22.0';
our @ISA = qw(Lemonldap::NG::Common::Conf::Backends::_DBI);
sub store {
my ( $self, $fields ) = @_;
my $cfgNum = $fields->{cfgNum};
my $req;
my $lastCfg = $self->lastCfg;
$fields = to_json($fields);
my $query =
$lastCfg == $cfgNum
? "UPDATE $self->{dbiTable} SET data=? WHERE cfgNum=?"
: "INSERT INTO $self->{dbiTable} (data,cfgNum) VALUES (?,?)";
my $res = $self->_execute( $query, $fields, $cfgNum );
return $res > 0 ? $cfgNum : $res;
}
sub load {
my ( $self, $cfgNum, $fields ) = @_;
$fields = $fields ? join( ",", @$fields ) : '*';
my ( $res, $row ) = $self->_execute(
"SELECT data from " . $self->{dbiTable} . " WHERE cfgNum=?", $cfgNum );
if ( $res > 0 ) {
$row = $row->fetchrow_arrayref();
}
else {
$self->logError;
return 0;
}
my $r;
if ( $row->[0] =~ /^\s*\{/s ) {
eval { $r = from_json( $row->[0], { allow_nonref => 1 } ); };
}
else { # Old format
require Storable;
eval { $r = Storable::thaw( $row->[0] ); };
}
if ($@) {
$Lemonldap::NG::Common::Conf::msg .=
"Bad stored data in conf database: $@ \n";
return 0;
}
return $r;
}
1;
__END__