@sailpoint/connector-sdk 1.1.18 → 1.1.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib/filter.d.ts +2 -3
- package/dist/lib/filter.d.ts.map +1 -1
- package/dist/lib/filter.js +42 -95
- package/dist/lib/filter.js.map +1 -1
- package/package.json +2 -2
package/dist/lib/filter.d.ts
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
export declare class Filter {
|
|
2
2
|
private data;
|
|
3
3
|
constructor(data: any);
|
|
4
|
-
matcher(filterString: string):
|
|
4
|
+
matcher(filterString: string): boolean;
|
|
5
5
|
private applyBinaryExpressionFilter;
|
|
6
6
|
private isNullorEmpty;
|
|
7
7
|
private applyCallExpressionFilter;
|
|
8
|
-
private
|
|
9
|
-
private applyOrBinaryExpressionFilter;
|
|
8
|
+
private applyAndOrComplexFilter;
|
|
10
9
|
}
|
|
11
10
|
//# sourceMappingURL=filter.d.ts.map
|
package/dist/lib/filter.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"filter.d.ts","sourceRoot":"","sources":["../../lib/filter.ts"],"names":[],"mappings":"AAEA,qBAAa,MAAM;IACjB,OAAO,CAAC,IAAI,CAAM;gBAEN,IAAI,EAAE,GAAG;IAKd,OAAO,CAAC,YAAY,EAAE,MAAM;
|
|
1
|
+
{"version":3,"file":"filter.d.ts","sourceRoot":"","sources":["../../lib/filter.ts"],"names":[],"mappings":"AAEA,qBAAa,MAAM;IACjB,OAAO,CAAC,IAAI,CAAM;gBAEN,IAAI,EAAE,GAAG;IAKd,OAAO,CAAC,YAAY,EAAE,MAAM,GAAG,OAAO;IAwB7C,OAAO,CAAC,2BAA2B;IA8BnC,OAAO,CAAC,aAAa;IAiBrB,OAAO,CAAC,yBAAyB;IA4EjC,OAAO,CAAC,uBAAuB;CAuBhC"}
|
package/dist/lib/filter.js
CHANGED
|
@@ -16,11 +16,10 @@ class Filter {
|
|
|
16
16
|
return this.applyCallExpressionFilter(filter);
|
|
17
17
|
case (filter.operator === '!'):
|
|
18
18
|
return !this.applyBinaryExpressionFilter(filter.argument);
|
|
19
|
-
case (filter.operator === '&&'):
|
|
20
|
-
return this.
|
|
21
|
-
case (filter.operator === '||'):
|
|
22
|
-
return this.applyOrBinaryExpressionFilter(filter);
|
|
19
|
+
case (filter.operator === '&&') || (filter.operator === '||'):
|
|
20
|
+
return this.applyAndOrComplexFilter(filter);
|
|
23
21
|
}
|
|
22
|
+
return true;
|
|
24
23
|
}
|
|
25
24
|
// filterString Example: (age > 20)
|
|
26
25
|
// Filter evaluter Example :
|
|
@@ -56,6 +55,7 @@ class Filter {
|
|
|
56
55
|
return leftValue != right.value;
|
|
57
56
|
}
|
|
58
57
|
}
|
|
58
|
+
return true;
|
|
59
59
|
}
|
|
60
60
|
// a mock of the isNull method that could be attached to an object like 'email' 'name' etc..
|
|
61
61
|
isNullorEmpty(value) {
|
|
@@ -111,117 +111,64 @@ class Filter {
|
|
|
111
111
|
case 'containsAllIgnoreCase': // Check if the method is `containsAllIgnoreCase` and apply it to the value
|
|
112
112
|
// ensure all values are present in the property
|
|
113
113
|
return args.every((arg) => !value.includes(arg.value)); // apply the containsAllIgnoreCase method
|
|
114
|
+
default:
|
|
115
|
+
return true;
|
|
114
116
|
}
|
|
115
117
|
}
|
|
116
118
|
}
|
|
119
|
+
return true;
|
|
117
120
|
}
|
|
118
|
-
// filterString Example: ( type == "Employee" && location == "Austin" )
|
|
119
|
-
//
|
|
121
|
+
// // filterString Example 1: ( type == "Employee" && location == "Austin" )
|
|
122
|
+
// filterString Example 2: (((login == \"integrations-shtarko\" && name.isNull()) && company == \"sailpoint\") || city == \"pune\")
|
|
123
|
+
// Filter evaluter output Example :
|
|
120
124
|
// {
|
|
125
|
+
// type: 'BinaryExpression',
|
|
126
|
+
// operator: '||',
|
|
127
|
+
// left: {
|
|
121
128
|
// type: 'BinaryExpression',
|
|
122
129
|
// operator: '&&',
|
|
123
130
|
// left: {
|
|
124
131
|
// type: 'BinaryExpression',
|
|
125
132
|
// operator: '&&',
|
|
126
|
-
// left:
|
|
127
|
-
//
|
|
128
|
-
// operator: '==',
|
|
129
|
-
// left: [Object],
|
|
130
|
-
// right: [Object]
|
|
131
|
-
// },
|
|
132
|
-
// right: {
|
|
133
|
-
// type: 'BinaryExpression',
|
|
134
|
-
// operator: '==',
|
|
135
|
-
// left: [Object],
|
|
136
|
-
// right: [Object]
|
|
137
|
-
// }
|
|
133
|
+
// left: [Object],
|
|
134
|
+
// right: [Object]
|
|
138
135
|
// },
|
|
139
136
|
// right: {
|
|
140
137
|
// type: 'BinaryExpression',
|
|
141
138
|
// operator: '==',
|
|
142
|
-
// left:
|
|
143
|
-
// right:
|
|
139
|
+
// left: [Object],
|
|
140
|
+
// right: [Object]
|
|
144
141
|
// }
|
|
145
|
-
// }
|
|
146
|
-
//
|
|
147
|
-
applyAndBinaryExpressionFilter(filter) {
|
|
148
|
-
let currentFilter = filter;
|
|
149
|
-
let rightValue = [];
|
|
150
|
-
let leftValue = [];
|
|
151
|
-
// keep processing the filter as long as we have '&&' operators
|
|
152
|
-
while (currentFilter.operator === '&&') {
|
|
153
|
-
if (currentFilter.right.type === 'BinaryExpression') {
|
|
154
|
-
// evaluate the right part of the current '&&' expression
|
|
155
|
-
rightValue.push(this.applyBinaryExpressionFilter(currentFilter.right));
|
|
156
|
-
currentFilter = currentFilter.left;
|
|
157
|
-
if (currentFilter.operator !== '&&' && currentFilter.type === 'BinaryExpression') {
|
|
158
|
-
leftValue.push(this.applyBinaryExpressionFilter(currentFilter));
|
|
159
|
-
}
|
|
160
|
-
}
|
|
161
|
-
else {
|
|
162
|
-
// evaluate the right part of the current '&&' expression
|
|
163
|
-
rightValue.push(this.applyCallExpressionFilter(currentFilter.right));
|
|
164
|
-
currentFilter = currentFilter.left;
|
|
165
|
-
if (currentFilter.operator !== '&&' && currentFilter.type === 'CallExpression') {
|
|
166
|
-
leftValue.push(this.applyCallExpressionFilter(currentFilter));
|
|
167
|
-
}
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
return rightValue.every(Boolean) && leftValue.every(Boolean);
|
|
171
|
-
}
|
|
172
|
-
// filterString Example: ( type == "Employee" || location == "Austin" )
|
|
173
|
-
// Filter Evaluator Example for OR operation with multiple expressions:
|
|
174
|
-
// {
|
|
142
|
+
// },
|
|
143
|
+
// right: {
|
|
175
144
|
// type: 'BinaryExpression',
|
|
176
|
-
// operator: '
|
|
177
|
-
// left: {
|
|
178
|
-
//
|
|
179
|
-
// operator: '||',
|
|
180
|
-
// left: {
|
|
181
|
-
// type: 'BinaryExpression',
|
|
182
|
-
// operator: '==',
|
|
183
|
-
// left: [Object],
|
|
184
|
-
// right: [Object]
|
|
185
|
-
// },
|
|
186
|
-
// right: {
|
|
187
|
-
// type: 'BinaryExpression',
|
|
188
|
-
// operator: '==',
|
|
189
|
-
// left: [Object],
|
|
190
|
-
// right: [Object]
|
|
191
|
-
// }
|
|
192
|
-
// },
|
|
193
|
-
// right: {
|
|
194
|
-
// type: 'BinaryExpression',
|
|
195
|
-
// operator: '==',
|
|
196
|
-
// left: { type: 'Identifier', name: 'age' },
|
|
197
|
-
// right: { type: 'Literal', value: null, raw: 'null' }
|
|
198
|
-
// }
|
|
145
|
+
// operator: '==',
|
|
146
|
+
// left: { type: 'Identifier', name: 'city' },
|
|
147
|
+
// right: { type: 'Literal', value: 'punee', raw: '"punee"' }
|
|
199
148
|
// }
|
|
200
|
-
//
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
149
|
+
// }
|
|
150
|
+
// applyAndOrComplexFilter applies filter based on BinaryExpression and CallExpression on complex as well as simple filters
|
|
151
|
+
applyAndOrComplexFilter(filter) {
|
|
152
|
+
// if the current expression is a comparison
|
|
153
|
+
if (filter.type === 'BinaryExpression' && ['==', '===', '!=', '!==', '<', '>', '<=', '>='].includes(filter.operator)) {
|
|
154
|
+
return this.applyBinaryExpressionFilter(filter);
|
|
155
|
+
}
|
|
156
|
+
if (filter.type === 'CallExpression') {
|
|
157
|
+
return this.applyCallExpressionFilter(filter);
|
|
158
|
+
}
|
|
159
|
+
// if the current expression is a logical operator (e.g., ||, &&)
|
|
160
|
+
if (filter.type === 'BinaryExpression' && ['||', '&&'].includes(filter.operator)) {
|
|
161
|
+
const leftResult = this.applyAndOrComplexFilter(filter.left); // apply to the left side
|
|
162
|
+
const rightResult = this.applyAndOrComplexFilter(filter.right); // apply to the right side
|
|
163
|
+
// combine the results if both sides are processed
|
|
164
|
+
if (filter.operator === '||') {
|
|
165
|
+
return leftResult || rightResult; // logical OR
|
|
214
166
|
}
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
rightValue.push(this.applyCallExpressionFilter(currentFilter.right));
|
|
218
|
-
currentFilter = currentFilter.left;
|
|
219
|
-
if (currentFilter.operator !== '||' && currentFilter.type === 'CallExpression') {
|
|
220
|
-
leftValue.push(this.applyCallExpressionFilter(currentFilter));
|
|
221
|
-
}
|
|
167
|
+
if (filter.operator === '&&') {
|
|
168
|
+
return leftResult && rightResult; // logical AND
|
|
222
169
|
}
|
|
223
170
|
}
|
|
224
|
-
return
|
|
171
|
+
return true;
|
|
225
172
|
}
|
|
226
173
|
}
|
|
227
174
|
exports.Filter = Filter;
|
package/dist/lib/filter.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"filter.js","sourceRoot":"","sources":["../../lib/filter.ts"],"names":[],"mappings":";;;AAAA,MAAM,IAAI,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;AAE7B,MAAa,MAAM;IAGjB,YAAY,IAAS;QACnB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACnB,CAAC;IAED,+GAA+G;IACxG,OAAO,CAAC,YAAoB;QACjC,IAAI,MAAM,GAAG,IAAI,CAAC,YAAY,CAAC,CAAC;QAChC,QAAQ,IAAI,EAAE;YACZ,KAAK,CAAC,MAAM,CAAC,IAAI,KAAK,kBAAkB,IAAI,MAAM,CAAC,QAAQ,KAAK,IAAI,IAAI,MAAM,CAAC,QAAQ,KAAK,IAAI,CAAC;gBAC/F,OAAO,IAAI,CAAC,2BAA2B,CAAC,MAAM,CAAC,CAAC;YAClD,KAAK,CAAC,MAAM,CAAC,IAAI,KAAK,gBAAgB,IAAI,MAAM,CAAC,QAAQ,KAAK,IAAI,IAAI,MAAM,CAAC,QAAQ,KAAK,IAAI,CAAC;gBAC7F,OAAO,IAAI,CAAC,yBAAyB,CAAC,MAAM,CAAC,CAAC;YAChD,KAAK,CAAC,MAAM,CAAC,QAAQ,KAAK,GAAG,CAAC;gBAC5B,OAAO,CAAC,IAAI,CAAC,2BAA2B,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;YAC5D,KAAK,CAAC,MAAM,CAAC,QAAQ,KAAK,IAAI,CAAC
|
|
1
|
+
{"version":3,"file":"filter.js","sourceRoot":"","sources":["../../lib/filter.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sailpoint/connector-sdk",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.19",
|
|
4
4
|
"description": "JavaScript framework to build SailPoint Connectors",
|
|
5
5
|
"author": "SailPoint Technologies, Inc.",
|
|
6
6
|
"license": "Copyright (c) 2023. SailPoint Technologies, Inc. All rights reserved.",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"@types/archiver": "^6.0.2",
|
|
40
40
|
"@types/express": "^4.17.13",
|
|
41
41
|
"@types/jest": "^29.5.13",
|
|
42
|
-
"@types/node": "^16.
|
|
42
|
+
"@types/node": "^16.18.126",
|
|
43
43
|
"@types/semver": "^7.3.6",
|
|
44
44
|
"jest": "^29.7.0",
|
|
45
45
|
"mock-fs": "^5.1.0",
|