Skip to content

Commit 17a4d02

Browse files
Support new AQL operators
1 parent 35523a7 commit 17a4d02

File tree

3 files changed

+99
-0
lines changed

3 files changed

+99
-0
lines changed

src/elimity_insights_client/api/_encode_expression.py

+23
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@
5151
StringExpression,
5252
TimeCmpBooleanExpression,
5353
TimeExpression,
54+
ExistsBooleanExpression,
55+
MatchesPatternBooleanExpression,
5456
)
5557

5658
_T = TypeVar("_T")
@@ -109,6 +111,16 @@ def encode_boolean_expression(expression: BooleanExpression) -> object:
109111
"type": "directlyLinkedTo",
110112
}
111113

114+
if isinstance(expression, ExistsBooleanExpression):
115+
condition = encode_boolean_expression(expression.condition)
116+
return {
117+
"alias": expression.alias,
118+
"condition": condition,
119+
"entityType": expression.entity_type,
120+
"sourceId": expression.source_id,
121+
"type": "exists",
122+
}
123+
112124
if isinstance(expression, IdInBooleanExpression):
113125
return {
114126
"ids": expression.ids,
@@ -154,6 +166,14 @@ def encode_boolean_expression(expression: BooleanExpression) -> object:
154166
"type": "match",
155167
}
156168

169+
if isinstance(expression, MatchesPatternBooleanExpression):
170+
expr = encode_string_expression(expression.expr)
171+
return {
172+
"expr": expr,
173+
"pattern": expression.pattern,
174+
"type": "matchesPattern",
175+
}
176+
157177
if isinstance(expression, NotBooleanExpression):
158178
expr = encode_boolean_expression(expression.expr)
159179
return {"expr": expr, "type": "not"}
@@ -410,6 +430,9 @@ def _encode_match_operator(operator: MatchOperator) -> object:
410430
if operator is MatchOperator.EQUALS:
411431
return "equals"
412432

433+
if operator is MatchOperator.SPLIT_INTERSECTS:
434+
return "splitIntersects"
435+
413436
if operator is MatchOperator.STARTS_WITH:
414437
return "startsWith"
415438

src/elimity_insights_client/api/expression.py

+21
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,16 @@ class DirectLinkAggregateNumberExpression:
146146
source_id: int
147147

148148

149+
@dataclass
150+
class ExistsBooleanExpression:
151+
"""Expression evaluating whether a given condition holds for some entity of a given type."""
152+
153+
alias: str
154+
condition: "BooleanExpression"
155+
entity_type: str
156+
source_id: int
157+
158+
149159
@dataclass
150160
class IdInBooleanExpression:
151161
"""Expression evaluating whether an entity's identifier occurs in a given list."""
@@ -304,9 +314,18 @@ class MatchOperator(Enum):
304314
CONTAINS = auto()
305315
ENDS_WITH = auto()
306316
EQUALS = auto()
317+
SPLIT_INTERSECTS = auto()
307318
STARTS_WITH = auto()
308319

309320

321+
@dataclass
322+
class MatchesPatternBooleanExpression:
323+
"""Expression matching the result of a given expression to a given pattern."""
324+
325+
expr: "StringExpression"
326+
pattern: str
327+
328+
310329
@dataclass
311330
class NameStringExpression:
312331
"""Expression evaluating to a given entity's name."""
@@ -404,12 +423,14 @@ class TimeCmpBooleanExpression:
404423
DateCmpBooleanExpression,
405424
DateTimeCmpBooleanExpression,
406425
DirectlyLinkedToBooleanExpression,
426+
ExistsBooleanExpression,
407427
IdInBooleanExpression,
408428
LinkAssignedBooleanExpression,
409429
LinkAttributeBooleanExpression,
410430
LinkedToBooleanExpression,
411431
LiteralBooleanExpression,
412432
MatchBooleanExpression,
433+
MatchesPatternBooleanExpression,
413434
NotBooleanExpression,
414435
NumberCmpBooleanExpression,
415436
TimeCmpBooleanExpression,

tests/elimity_insights_client/api/schema.json

+55
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,9 @@
166166
{
167167
"$ref": "#/definitions/directlyLinkedToBooleanExpression"
168168
},
169+
{
170+
"$ref": "#/definitions/existsBooleanExpression"
171+
},
169172
{
170173
"$ref": "#/definitions/idInBooleanExpression"
171174
},
@@ -184,6 +187,9 @@
184187
{
185188
"$ref": "#/definitions/matchBooleanExpression"
186189
},
190+
{
191+
"$ref": "#/definitions/matchesPatternBooleanExpression"
192+
},
187193
{
188194
"$ref": "#/definitions/notBooleanExpression"
189195
},
@@ -493,6 +499,34 @@
493499
],
494500
"type": "object"
495501
},
502+
"existsBooleanExpression": {
503+
"additionalProperties": false,
504+
"properties": {
505+
"alias": {
506+
"type": "string"
507+
},
508+
"condition": {
509+
"$ref": "#/definitions/booleanExpression"
510+
},
511+
"entityType": {
512+
"type": "string"
513+
},
514+
"sourceId": {
515+
"type": "integer"
516+
},
517+
"type": {
518+
"const": "exists"
519+
}
520+
},
521+
"required": [
522+
"alias",
523+
"condition",
524+
"entityType",
525+
"sourceId",
526+
"type"
527+
],
528+
"type": "object"
529+
},
496530
"grouping": {
497531
"additionalProperties": false,
498532
"properties": {
@@ -852,6 +886,26 @@
852886
],
853887
"type": "object"
854888
},
889+
"matchesPatternBooleanExpression": {
890+
"additionalProperties": false,
891+
"properties": {
892+
"expr": {
893+
"$ref": "#/definitions/stringExpression"
894+
},
895+
"pattern": {
896+
"type": "string"
897+
},
898+
"type": {
899+
"const": "matchesPattern"
900+
}
901+
},
902+
"required": [
903+
"expr",
904+
"pattern",
905+
"type"
906+
],
907+
"type": "object"
908+
},
855909
"matchMode": {
856910
"enum": [
857911
"caseInsensitive",
@@ -863,6 +917,7 @@
863917
"contains",
864918
"endsWith",
865919
"equals",
920+
"splitIntersects",
866921
"startsWith"
867922
]
868923
},

0 commit comments

Comments
 (0)