]> git.proxmox.com Git - pmg-api.git/commitdiff
RuleCache: implement and/invert for when/from/to
authorDominik Csapak <d.csapak@proxmox.com>
Wed, 21 Feb 2024 12:24:32 +0000 (13:24 +0100)
committerStoiko Ivanov <s.ivanov@proxmox.com>
Wed, 21 Feb 2024 18:30:13 +0000 (19:30 +0100)
by introducing 'match_list_with_mode' that gets called for each group
and then on the result of each group match result.

This does not work for 'what' matches since they are not a simple
yes/no match (they include the parts) so this will be done seperately.

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
src/PMG/RuleCache.pm

index 4bde2e7cbd5bb088edba69e312fc40caae6dcf69..d0fa1f8f574cd0f4b5999ce26dbab148b9b85cd1 100644 (file)
@@ -272,13 +272,14 @@ sub from_match {
        $ip = $1;
     }
 
-    for my $group ($from->{groups}->@*) {
-       for my $obj ($group->{objects}->@*) {
-           return 1 if $obj->who_match($addr, $ip, $ldap);
-       }
-    }
-
-    return 0;
+    return match_list_with_mode($from->{groups}, $from->{and}, $from->{invert}, sub {
+       my ($group) = @_;
+       my $list = $group->{objects};
+       return match_list_with_mode($list, $group->{and}, $group->{invert}, sub {
+           my ($obj) = @_;
+           return $obj->who_match($addr, $ip, $ldap);
+       });
+    });
 }
 
 sub to_match {
@@ -288,14 +289,14 @@ sub to_match {
 
     return 1 if scalar($to->{groups}->@*) == 0;
 
-    for my $group ($to->{groups}->@*) {
-       for my $obj ($group->{objects}->@*) {
-           return 1 if $obj->who_match($addr, undef, $ldap);
-       }
-    }
-
-
-    return 0;
+    return match_list_with_mode($to->{groups}, $to->{and}, $to->{invert}, sub {
+       my ($group) = @_;
+       my $list = $group->{objects};
+       return match_list_with_mode($list, $group->{and}, $group->{invert}, sub {
+           my ($obj) = @_;
+           return $obj->who_match($addr, undef, $ldap);
+       });
+    });
 }
 
 sub when_match {
@@ -305,13 +306,14 @@ sub when_match {
 
     return 1 if scalar($when->{groups}->@*) == 0;
 
-    for my $group ($when->{groups}->@*) {
-       for my $obj ($group->{objects}->@*) {
-           return 1 if $obj->when_match($time);
-       }
-    }
-
-    return 0;
+    return match_list_with_mode($when->{groups}, $when->{and}, $when->{invert}, sub {
+       my ($group) = @_;
+       my $list = $group->{objects};
+       return match_list_with_mode($list, $group->{and}, $group->{invert}, sub {
+           my ($obj) = @_;
+           return $obj->when_match($time);
+       });
+    });
 }
 
 sub what_match {
@@ -353,4 +355,23 @@ sub what_match {
     return ($marks, $spaminfo);
 }
 
+# calls sub with each element of $list, and and/ors/inverts the result
+sub match_list_with_mode($$$$) {
+    my ($list, $and, $invert, $sub) = @_;
+
+    $and //= 0;
+    $invert //= 0;
+
+    for my $el ($list->@*) {
+       my $res = $sub->($el);
+       if (!$and) {
+           return !$invert if $res;
+       } else {
+           return $invert if !$res;
+       }
+    }
+
+    return $and != $invert;
+}
+
 1;