mirror of
https://git.proxmox.com/git/pmg-api
synced 2025-10-05 03:33:41 +00:00
fix #2430: ruledb disclaimer: make separator configurable
add a new 'add-separator' property (default true) that controls if the '--' separator is added. Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
parent
f35e144c59
commit
51d1507151
@ -49,7 +49,7 @@ If this e-mail or attached files contain information which do not relate to our
|
|||||||
_EOD_
|
_EOD_
|
||||||
|
|
||||||
sub new {
|
sub new {
|
||||||
my ($type, $value, $ogroup, $top) = @_;
|
my ($type, $value, $ogroup, $top, $separator) = @_;
|
||||||
|
|
||||||
my $class = ref($type) || $type;
|
my $class = ref($type) || $type;
|
||||||
|
|
||||||
@ -59,6 +59,7 @@ sub new {
|
|||||||
|
|
||||||
$self->{value} = $value;
|
$self->{value} = $value;
|
||||||
$self->{top} = $top;
|
$self->{top} = $top;
|
||||||
|
$self->{separator} = $separator;
|
||||||
|
|
||||||
return $self;
|
return $self;
|
||||||
}
|
}
|
||||||
@ -76,14 +77,16 @@ sub load_attr {
|
|||||||
$sth->execute($id);
|
$sth->execute($id);
|
||||||
|
|
||||||
my $top = 0;
|
my $top = 0;
|
||||||
|
my $separator = 1;
|
||||||
|
|
||||||
while (my $ref = $sth->fetchrow_hashref()) {
|
while (my $ref = $sth->fetchrow_hashref()) {
|
||||||
$top = $ref->{value} if $ref->{name} eq 'top';
|
$top = $ref->{value} if $ref->{name} eq 'top';
|
||||||
|
$separator = $ref->{value} if $ref->{name} eq 'separator';
|
||||||
}
|
}
|
||||||
|
|
||||||
$sth->finish();
|
$sth->finish();
|
||||||
|
|
||||||
my $obj = $class->new(decode('UTF-8', $value), $ogroup, $top);
|
my $obj = $class->new(decode('UTF-8', $value), $ogroup, $top, $separator);
|
||||||
|
|
||||||
$obj->{id} = $id;
|
$obj->{id} = $id;
|
||||||
|
|
||||||
@ -110,9 +113,11 @@ sub save {
|
|||||||
"UPDATE Object SET Value = ? WHERE ID = ?",
|
"UPDATE Object SET Value = ? WHERE ID = ?",
|
||||||
undef, $value, $self->{id});
|
undef, $value, $self->{id});
|
||||||
|
|
||||||
$ruledb->{dbh}->do(
|
for my $prop (qw(top separator)) {
|
||||||
"DELETE FROM Attribut WHERE Name = ? and Object_ID = ?",
|
$ruledb->{dbh}->do(
|
||||||
undef, 'top', $self->{id});
|
"DELETE FROM Attribut WHERE Name = ? and Object_ID = ?",
|
||||||
|
undef, $prop, $self->{id});
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
# insert
|
# insert
|
||||||
|
|
||||||
@ -125,10 +130,12 @@ sub save {
|
|||||||
$self->{id} = PMG::Utils::lastid($ruledb->{dbh}, 'object_id_seq');
|
$self->{id} = PMG::Utils::lastid($ruledb->{dbh}, 'object_id_seq');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (defined($self->{top})) {
|
for my $prop (qw(top separator)) {
|
||||||
$ruledb->{dbh}->do(
|
if (defined($self->{$prop})) {
|
||||||
"INSERT INTO Attribut (Value, Name, Object_ID) VALUES (?, ?, ?)",
|
$ruledb->{dbh}->do(
|
||||||
undef, $self->{top}, 'top', $self->{id});
|
"INSERT INTO Attribut (Value, Name, Object_ID) VALUES (?, ?, ?)",
|
||||||
|
undef, $self->{$prop}, $prop, $self->{id});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return $self->{id};
|
return $self->{id};
|
||||||
@ -227,10 +234,11 @@ sub execute {
|
|||||||
foreach my $ta (@$subgroups) {
|
foreach my $ta (@$subgroups) {
|
||||||
my ($tg, $entity) = (@$ta[0], @$ta[1]);
|
my ($tg, $entity) = (@$ta[0], @$ta[1]);
|
||||||
my $html;
|
my $html;
|
||||||
|
my $separator = $self->{separator} ? '<br>--<br>' : '<br>';
|
||||||
if ($self->{top}) {
|
if ($self->{top}) {
|
||||||
$html = PMG::Utils::subst_values ($self->{value}, $vars) . "<br>--<br>";
|
$html = PMG::Utils::subst_values ($self->{value}, $vars) . $separator;
|
||||||
} else {
|
} else {
|
||||||
$html = "<br>--<br>" . PMG::Utils::subst_values ($self->{value}, $vars);
|
$html = $separator . PMG::Utils::subst_values ($self->{value}, $vars);
|
||||||
}
|
}
|
||||||
|
|
||||||
my $text = "";
|
my $text = "";
|
||||||
@ -272,6 +280,13 @@ sub properties {
|
|||||||
optional => 1,
|
optional => 1,
|
||||||
default => 'end',
|
default => 'end',
|
||||||
},
|
},
|
||||||
|
'add-separator' => {
|
||||||
|
description => "If set to 1, adds a '--' separator between the disclaimer and the".
|
||||||
|
" content. Set to 0 to prevent that.",
|
||||||
|
type => 'boolean',
|
||||||
|
optional => 1,
|
||||||
|
default => 1,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -281,6 +296,7 @@ sub get {
|
|||||||
return {
|
return {
|
||||||
disclaimer => $self->{value},
|
disclaimer => $self->{value},
|
||||||
position => $self->{top} ? 'start' : 'end',
|
position => $self->{top} ? 'start' : 'end',
|
||||||
|
'add-separator' => $self->{separator} // 1,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -293,6 +309,12 @@ sub update {
|
|||||||
} else {
|
} else {
|
||||||
delete $self->{top};
|
delete $self->{top};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (defined($param->{'add-separator'}) && $param->{'add-separator'} == 0) {
|
||||||
|
$self->{separator} = 0;
|
||||||
|
} else {
|
||||||
|
delete $self->{separator};
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
1;
|
1;
|
||||||
|
Loading…
Reference in New Issue
Block a user