-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathfeature-flags.ts
861 lines (759 loc) · 27.5 KB
/
feature-flags.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
import { createHash } from 'node:crypto'
import { FeatureFlagCondition, FlagProperty, PostHogFeatureFlag, PropertyGroup } from './types'
import { JsonType, PostHogFetchOptions, PostHogFetchResponse } from 'posthog-core/src'
import { safeSetTimeout } from 'posthog-core/src/utils'
import fetch from './fetch'
import { SIXTY_SECONDS } from './posthog-node'
// eslint-disable-next-line
const LONG_SCALE = 0xfffffffffffffff
const NULL_VALUES_ALLOWED_OPERATORS = ['is_not']
class ClientError extends Error {
constructor(message: string) {
super()
Error.captureStackTrace(this, this.constructor)
this.name = 'ClientError'
this.message = message
Object.setPrototypeOf(this, ClientError.prototype)
}
}
class InconclusiveMatchError extends Error {
constructor(message: string) {
super(message)
this.name = this.constructor.name
Error.captureStackTrace(this, this.constructor)
// instanceof doesn't work in ES3 or ES5
// https://www.dannyguo.com/blog/how-to-fix-instanceof-not-working-for-custom-errors-in-typescript/
// this is the workaround
Object.setPrototypeOf(this, InconclusiveMatchError.prototype)
}
}
type FeatureFlagsPollerOptions = {
personalApiKey: string
projectApiKey: string
host: string
pollingInterval: number
timeout?: number
fetch?: (url: string, options: PostHogFetchOptions) => Promise<PostHogFetchResponse>
onError?: (error: Error) => void
customHeaders?: { [key: string]: string }
}
class FeatureFlagsPoller {
pollingInterval: number
personalApiKey: string
projectApiKey: string
featureFlags: Array<PostHogFeatureFlag>
featureFlagsByKey: Record<string, PostHogFeatureFlag>
groupTypeMapping: Record<string, string>
cohorts: Record<string, PropertyGroup>
loadedSuccessfullyOnce: boolean
timeout?: number
host: FeatureFlagsPollerOptions['host']
poller?: NodeJS.Timeout
fetch: (url: string, options: PostHogFetchOptions) => Promise<PostHogFetchResponse>
debugMode: boolean = false
onError?: (error: Error) => void
customHeaders?: { [key: string]: string }
shouldBeginExponentialBackoff: boolean = false
backOffCount: number = 0
constructor({
pollingInterval,
personalApiKey,
projectApiKey,
timeout,
host,
customHeaders,
...options
}: FeatureFlagsPollerOptions) {
this.pollingInterval = pollingInterval
this.personalApiKey = personalApiKey
this.featureFlags = []
this.featureFlagsByKey = {}
this.groupTypeMapping = {}
this.cohorts = {}
this.loadedSuccessfullyOnce = false
this.timeout = timeout
this.projectApiKey = projectApiKey
this.host = host
this.poller = undefined
this.inflightRequest = undefined
this.fetch = options.fetch || fetch
this.onError = options.onError
this.customHeaders = customHeaders
void this.loadFeatureFlags()
}
debug(enabled: boolean = true): void {
this.debugMode = enabled
}
private logMsgIfDebug(fn: () => void): void {
if (this.debugMode) {
fn()
}
}
async getFeatureFlag(
key: string,
distinctId: string,
groups: Record<string, string> = {},
personProperties: Record<string, string> = {},
groupProperties: Record<string, Record<string, string>> = {}
): Promise<string | boolean | undefined> {
await this.loadFeatureFlags()
let response: string | boolean | undefined = undefined
let featureFlag = undefined
if (!this.loadedSuccessfullyOnce) {
return response
}
for (const flag of this.featureFlags) {
if (key === flag.key) {
featureFlag = flag
break
}
}
if (featureFlag !== undefined) {
try {
response = this.computeFlagLocally(featureFlag, distinctId, groups, personProperties, groupProperties)
this.logMsgIfDebug(() => console.debug(`Successfully computed flag locally: ${key} -> ${response}`))
} catch (e) {
if (e instanceof InconclusiveMatchError) {
this.logMsgIfDebug(() => console.debug(`InconclusiveMatchError when computing flag locally: ${key}: ${e}`))
} else if (e instanceof Error) {
this.onError?.(new Error(`Error computing flag locally: ${key}: ${e}`))
}
}
}
return response
}
async computeFeatureFlagPayloadLocally(key: string, matchValue: string | boolean): Promise<JsonType | undefined> {
await this.loadFeatureFlags()
let response = undefined
if (!this.loadedSuccessfullyOnce) {
return undefined
}
if (typeof matchValue == 'boolean') {
response = this.featureFlagsByKey?.[key]?.filters?.payloads?.[matchValue.toString()]
} else if (typeof matchValue == 'string') {
response = this.featureFlagsByKey?.[key]?.filters?.payloads?.[matchValue]
}
// Undefined means a loading or missing data issue. Null means evaluation happened and there was no match
if (response === undefined || response === null) {
return null
}
try {
return JSON.parse(response)
} catch {
return response
}
}
async getAllFlagsAndPayloads(
distinctId: string,
groups: Record<string, string> = {},
personProperties: Record<string, string> = {},
groupProperties: Record<string, Record<string, string>> = {}
): Promise<{
response: Record<string, string | boolean>
payloads: Record<string, JsonType>
fallbackToDecide: boolean
}> {
await this.loadFeatureFlags()
const response: Record<string, string | boolean> = {}
const payloads: Record<string, JsonType> = {}
let fallbackToDecide = this.featureFlags.length == 0
this.featureFlags.map(async (flag) => {
try {
const matchValue = this.computeFlagLocally(flag, distinctId, groups, personProperties, groupProperties)
response[flag.key] = matchValue
const matchPayload = await this.computeFeatureFlagPayloadLocally(flag.key, matchValue)
if (matchPayload) {
payloads[flag.key] = matchPayload
}
} catch (e) {
if (e instanceof InconclusiveMatchError) {
// do nothing
} else if (e instanceof Error) {
this.onError?.(new Error(`Error computing flag locally: ${flag.key}: ${e}`))
}
fallbackToDecide = true
}
})
return { response, payloads, fallbackToDecide }
}
computeFlagLocally(
flag: PostHogFeatureFlag,
distinctId: string,
groups: Record<string, string> = {},
personProperties: Record<string, string> = {},
groupProperties: Record<string, Record<string, string>> = {}
): string | boolean {
if (flag.ensure_experience_continuity) {
throw new InconclusiveMatchError('Flag has experience continuity enabled')
}
if (!flag.active) {
return false
}
const flagFilters = flag.filters || {}
const aggregation_group_type_index = flagFilters.aggregation_group_type_index
if (aggregation_group_type_index != undefined) {
const groupName = this.groupTypeMapping[String(aggregation_group_type_index)]
if (!groupName) {
this.logMsgIfDebug(() =>
console.warn(
`[FEATURE FLAGS] Unknown group type index ${aggregation_group_type_index} for feature flag ${flag.key}`
)
)
throw new InconclusiveMatchError('Flag has unknown group type index')
}
if (!(groupName in groups)) {
this.logMsgIfDebug(() =>
console.warn(`[FEATURE FLAGS] Can't compute group feature flag: ${flag.key} without group names passed in`)
)
return false
}
const focusedGroupProperties = groupProperties[groupName]
return this.matchFeatureFlagProperties(flag, groups[groupName], focusedGroupProperties)
} else {
return this.matchFeatureFlagProperties(flag, distinctId, personProperties)
}
}
matchFeatureFlagProperties(
flag: PostHogFeatureFlag,
distinctId: string,
properties: Record<string, string>
): string | boolean {
const flagFilters = flag.filters || {}
const flagConditions = flagFilters.groups || []
let isInconclusive = false
let result = undefined
// # Stable sort conditions with variant overrides to the top. This ensures that if overrides are present, they are
// # evaluated first, and the variant override is applied to the first matching condition.
const sortedFlagConditions = [...flagConditions].sort((conditionA, conditionB) => {
const AHasVariantOverride = !!conditionA.variant
const BHasVariantOverride = !!conditionB.variant
if (AHasVariantOverride && BHasVariantOverride) {
return 0
} else if (AHasVariantOverride) {
return -1
} else if (BHasVariantOverride) {
return 1
} else {
return 0
}
})
for (const condition of sortedFlagConditions) {
try {
if (this.isConditionMatch(flag, distinctId, condition, properties)) {
const variantOverride = condition.variant
const flagVariants = flagFilters.multivariate?.variants || []
if (variantOverride && flagVariants.some((variant) => variant.key === variantOverride)) {
result = variantOverride
} else {
result = this.getMatchingVariant(flag, distinctId) || true
}
break
}
} catch (e) {
if (e instanceof InconclusiveMatchError) {
isInconclusive = true
} else {
throw e
}
}
}
if (result !== undefined) {
return result
} else if (isInconclusive) {
throw new InconclusiveMatchError("Can't determine if feature flag is enabled or not with given properties")
}
// We can only return False when all conditions are False
return false
}
isConditionMatch(
flag: PostHogFeatureFlag,
distinctId: string,
condition: FeatureFlagCondition,
properties: Record<string, string>
): boolean {
const rolloutPercentage = condition.rollout_percentage
const warnFunction = (msg: string): void => {
this.logMsgIfDebug(() => console.warn(msg))
}
if ((condition.properties || []).length > 0) {
for (const prop of condition.properties) {
const propertyType = prop.type
let matches = false
if (propertyType === 'cohort') {
matches = matchCohort(prop, properties, this.cohorts, this.debugMode)
} else {
matches = matchProperty(prop, properties, warnFunction)
}
if (!matches) {
return false
}
}
if (rolloutPercentage == undefined) {
return true
}
}
if (rolloutPercentage != undefined && _hash(flag.key, distinctId) > rolloutPercentage / 100.0) {
return false
}
return true
}
getMatchingVariant(flag: PostHogFeatureFlag, distinctId: string): string | boolean | undefined {
const hashValue = _hash(flag.key, distinctId, 'variant')
const matchingVariant = this.variantLookupTable(flag).find((variant) => {
return hashValue >= variant.valueMin && hashValue < variant.valueMax
})
if (matchingVariant) {
return matchingVariant.key
}
return undefined
}
variantLookupTable(flag: PostHogFeatureFlag): { valueMin: number; valueMax: number; key: string }[] {
const lookupTable: { valueMin: number; valueMax: number; key: string }[] = []
let valueMin = 0
let valueMax = 0
const flagFilters = flag.filters || {}
const multivariates: {
key: string
rollout_percentage: number
}[] = flagFilters.multivariate?.variants || []
multivariates.forEach((variant) => {
valueMax = valueMin + variant.rollout_percentage / 100.0
lookupTable.push({ valueMin, valueMax, key: variant.key })
valueMin = valueMax
})
return lookupTable
}
async loadFeatureFlags(forceReload = false): Promise<void> {
if (!this.loadedSuccessfullyOnce || forceReload) {
await this._loadFeatureFlags()
}
}
/**
* If a client is misconfigured with an invalid or improper API key, the polling interval is doubled each time
* until a successful request is made, up to a maximum of 60 seconds.
*
* @returns The polling interval to use for the next request.
*/
private getPollingInterval(): number {
if (!this.shouldBeginExponentialBackoff) {
return this.pollingInterval
}
return Math.min(SIXTY_SECONDS, this.pollingInterval * 2 ** this.backOffCount)
}
async _loadFeatureFlags(): Promise<void> {
if (this.poller) {
clearTimeout(this.poller)
this.poller = undefined
}
this.poller = setTimeout(() => this._loadFeatureFlags(), this.getPollingInterval())
try {
// guard against loading flags multiple times in concurrently.
// there's no point in starting a new fetch if there's already one inflight
if (this.inflightRequest) {
// wait for the request to finish so we don't return empty flags
await this.inflightRequest
return
}
this.inflightRequest = this._requestFeatureFlagDefinitions()
const res = await this.inflightRequest
this.inflightRequest = undefined
// Handle undefined res case, this shouldn't happen, but it doesn't hurt to handle it anyway
if (!res) {
// Don't override existing flags when something goes wrong
return
}
// NB ON ERROR HANDLING & `loadedSuccessfullyOnce`:
//
// `loadedSuccessfullyOnce` indicates we've successfully loaded a valid set of flags at least once.
// If we set it to `true` in an error scenario (e.g. 402 Over Quota, 401 Invalid Key, etc.),
// any manual call to `loadFeatureFlags()` (without forceReload) will skip refetching entirely,
// leaving us stuck with zero or outdated flags. The poller does keep running, but we also want
// manual reloads to be possible as soon as the error condition is resolved.
//
// Therefore, on error statuses, we do *not* set `loadedSuccessfullyOnce = true`, ensuring that
// both the background poller and any subsequent manual calls can keep trying to load flags
// once the issue (quota, permission, rate limit, etc.) is resolved.
switch (res.status) {
case 401:
// Invalid API key
this.shouldBeginExponentialBackoff = true
this.backOffCount += 1
throw new ClientError(
`Your project key or personal API key is invalid. Setting next polling interval to ${this.getPollingInterval()}ms. More information: https://posthog.com/docs/api#rate-limiting`
)
case 402:
// Quota exceeded - clear all flags
console.warn(
'[FEATURE FLAGS] Feature flags quota limit exceeded - unsetting all local flags. Learn more about billing limits at https://posthog.com/docs/billing/limits-alerts'
)
this.featureFlags = []
this.featureFlagsByKey = {}
this.groupTypeMapping = {}
this.cohorts = {}
return
case 403:
// Permissions issue
this.shouldBeginExponentialBackoff = true
this.backOffCount += 1
throw new ClientError(
`Your personal API key does not have permission to fetch feature flag definitions for local evaluation. Setting next polling interval to ${this.getPollingInterval()}ms. Are you sure you're using the correct personal and Project API key pair? More information: https://posthog.com/docs/api/overview`
)
case 429:
// Rate limited
this.shouldBeginExponentialBackoff = true
this.backOffCount += 1
throw new ClientError(
`You are being rate limited. Setting next polling interval to ${this.getPollingInterval()}ms. More information: https://posthog.com/docs/api#rate-limiting`
)
case 200: {
// Process successful response
const responseJson = await res.json()
if (!('flags' in responseJson)) {
this.onError?.(new Error(`Invalid response when getting feature flags: ${JSON.stringify(responseJson)}`))
return
}
this.featureFlags = responseJson.flags || []
this.featureFlagsByKey = this.featureFlags.reduce(
(acc, curr) => ((acc[curr.key] = curr), acc),
<Record<string, PostHogFeatureFlag>>{}
)
this.groupTypeMapping = responseJson.group_type_mapping || {}
this.cohorts = responseJson.cohorts || {}
this.loadedSuccessfullyOnce = true
this.shouldBeginExponentialBackoff = false
this.backOffCount = 0
break
}
default:
// Something else went wrong, or the server is down.
// In this case, don't override existing flags
return
}
} catch (err) {
if (err instanceof ClientError) {
this.onError?.(err)
}
}
}
private getPersonalApiKeyRequestOptions(method: 'GET' | 'POST' | 'PUT' | 'PATCH' = 'GET'): PostHogFetchOptions {
return {
method,
headers: {
...this.customHeaders,
'Content-Type': 'application/json',
Authorization: `Bearer ${this.personalApiKey}`,
},
}
}
async _requestFeatureFlagDefinitions(): Promise<PostHogFetchResponse> {
const url = `${this.host}/api/feature_flag/local_evaluation?token=${this.projectApiKey}&send_cohorts`
const options = this.getPersonalApiKeyRequestOptions()
let abortTimeout = null
if (this.timeout && typeof this.timeout === 'number') {
const controller = new AbortController()
abortTimeout = safeSetTimeout(() => {
controller.abort()
}, this.timeout)
options.signal = controller.signal
}
try {
return await this.fetch(url, options)
} finally {
clearTimeout(abortTimeout)
}
}
stopPoller(): void {
clearTimeout(this.poller)
}
_requestRemoteConfigPayload(flagKey: string): Promise<PostHogFetchResponse> {
const url = `${this.host}/api/projects/@current/feature_flags/${flagKey}/remote_config/`
const options = this.getPersonalApiKeyRequestOptions()
let abortTimeout = null
if (this.timeout && typeof this.timeout === 'number') {
const controller = new AbortController()
abortTimeout = safeSetTimeout(() => {
controller.abort()
}, this.timeout)
options.signal = controller.signal
}
try {
return this.fetch(url, options)
} finally {
clearTimeout(abortTimeout)
}
}
}
// # This function takes a distinct_id and a feature flag key and returns a float between 0 and 1.
// # Given the same distinct_id and key, it'll always return the same float. These floats are
// # uniformly distributed between 0 and 1, so if we want to show this feature to 20% of traffic
// # we can do _hash(key, distinct_id) < 0.2
function _hash(key: string, distinctId: string, salt: string = ''): number {
const sha1Hash = createHash('sha1')
sha1Hash.update(`${key}.${distinctId}${salt}`)
return parseInt(sha1Hash.digest('hex').slice(0, 15), 16) / LONG_SCALE
}
function matchProperty(
property: FeatureFlagCondition['properties'][number],
propertyValues: Record<string, any>,
warnFunction?: (msg: string) => void
): boolean {
const key = property.key
const value = property.value
const operator = property.operator || 'exact'
if (!(key in propertyValues)) {
throw new InconclusiveMatchError(`Property ${key} not found in propertyValues`)
} else if (operator === 'is_not_set') {
throw new InconclusiveMatchError(`Operator is_not_set is not supported`)
}
const overrideValue = propertyValues[key]
if (overrideValue == null && !NULL_VALUES_ALLOWED_OPERATORS.includes(operator)) {
// if the value is null, just fail the feature flag comparison
// this isn't an InconclusiveMatchError because the property value was provided.
if (warnFunction) {
warnFunction(`Property ${key} cannot have a value of null/undefined with the ${operator} operator`)
}
return false
}
function computeExactMatch(value: any, overrideValue: any): boolean {
if (Array.isArray(value)) {
return value.map((val) => String(val).toLowerCase()).includes(String(overrideValue).toLowerCase())
}
return String(value).toLowerCase() === String(overrideValue).toLowerCase()
}
function compare(lhs: any, rhs: any, operator: string): boolean {
if (operator === 'gt') {
return lhs > rhs
} else if (operator === 'gte') {
return lhs >= rhs
} else if (operator === 'lt') {
return lhs < rhs
} else if (operator === 'lte') {
return lhs <= rhs
} else {
throw new Error(`Invalid operator: ${operator}`)
}
}
switch (operator) {
case 'exact':
return computeExactMatch(value, overrideValue)
case 'is_not':
return !computeExactMatch(value, overrideValue)
case 'is_set':
return key in propertyValues
case 'icontains':
return String(overrideValue).toLowerCase().includes(String(value).toLowerCase())
case 'not_icontains':
return !String(overrideValue).toLowerCase().includes(String(value).toLowerCase())
case 'regex':
return isValidRegex(String(value)) && String(overrideValue).match(String(value)) !== null
case 'not_regex':
return isValidRegex(String(value)) && String(overrideValue).match(String(value)) === null
case 'gt':
case 'gte':
case 'lt':
case 'lte': {
// :TRICKY: We adjust comparison based on the override value passed in,
// to make sure we handle both numeric and string comparisons appropriately.
let parsedValue = typeof value === 'number' ? value : null
if (typeof value === 'string') {
try {
parsedValue = parseFloat(value)
} catch (err) {
// pass
}
}
if (parsedValue != null && overrideValue != null) {
// check both null and undefined
if (typeof overrideValue === 'string') {
return compare(overrideValue, String(value), operator)
} else {
return compare(overrideValue, parsedValue, operator)
}
} else {
return compare(String(overrideValue), String(value), operator)
}
}
case 'is_date_after':
case 'is_date_before': {
let parsedDate = relativeDateParseForFeatureFlagMatching(String(value))
if (parsedDate == null) {
parsedDate = convertToDateTime(value)
}
if (parsedDate == null) {
throw new InconclusiveMatchError(`Invalid date: ${value}`)
}
const overrideDate = convertToDateTime(overrideValue)
if (['is_date_before'].includes(operator)) {
return overrideDate < parsedDate
}
return overrideDate > parsedDate
}
default:
throw new InconclusiveMatchError(`Unknown operator: ${operator}`)
}
}
function matchCohort(
property: FeatureFlagCondition['properties'][number],
propertyValues: Record<string, any>,
cohortProperties: FeatureFlagsPoller['cohorts'],
debugMode: boolean = false
): boolean {
const cohortId = String(property.value)
if (!(cohortId in cohortProperties)) {
throw new InconclusiveMatchError("can't match cohort without a given cohort property value")
}
const propertyGroup = cohortProperties[cohortId]
return matchPropertyGroup(propertyGroup, propertyValues, cohortProperties, debugMode)
}
function matchPropertyGroup(
propertyGroup: PropertyGroup,
propertyValues: Record<string, any>,
cohortProperties: FeatureFlagsPoller['cohorts'],
debugMode: boolean = false
): boolean {
if (!propertyGroup) {
return true
}
const propertyGroupType = propertyGroup.type
const properties = propertyGroup.values
if (!properties || properties.length === 0) {
// empty groups are no-ops, always match
return true
}
let errorMatchingLocally = false
if ('values' in properties[0]) {
// a nested property group
for (const prop of properties as PropertyGroup[]) {
try {
const matches = matchPropertyGroup(prop, propertyValues, cohortProperties, debugMode)
if (propertyGroupType === 'AND') {
if (!matches) {
return false
}
} else {
// OR group
if (matches) {
return true
}
}
} catch (err) {
if (err instanceof InconclusiveMatchError) {
if (debugMode) {
console.debug(`Failed to compute property ${prop} locally: ${err}`)
}
errorMatchingLocally = true
} else {
throw err
}
}
}
if (errorMatchingLocally) {
throw new InconclusiveMatchError("Can't match cohort without a given cohort property value")
}
// if we get here, all matched in AND case, or none matched in OR case
return propertyGroupType === 'AND'
} else {
for (const prop of properties as FlagProperty[]) {
try {
let matches: boolean
if (prop.type === 'cohort') {
matches = matchCohort(prop, propertyValues, cohortProperties, debugMode)
} else {
matches = matchProperty(prop, propertyValues)
}
const negation = prop.negation || false
if (propertyGroupType === 'AND') {
// if negated property, do the inverse
if (!matches && !negation) {
return false
}
if (matches && negation) {
return false
}
} else {
// OR group
if (matches && !negation) {
return true
}
if (!matches && negation) {
return true
}
}
} catch (err) {
if (err instanceof InconclusiveMatchError) {
if (debugMode) {
console.debug(`Failed to compute property ${prop} locally: ${err}`)
}
errorMatchingLocally = true
} else {
throw err
}
}
}
if (errorMatchingLocally) {
throw new InconclusiveMatchError("can't match cohort without a given cohort property value")
}
// if we get here, all matched in AND case, or none matched in OR case
return propertyGroupType === 'AND'
}
}
function isValidRegex(regex: string): boolean {
try {
new RegExp(regex)
return true
} catch (err) {
return false
}
}
function convertToDateTime(value: string | number | (string | number)[] | Date): Date {
if (value instanceof Date) {
return value
} else if (typeof value === 'string' || typeof value === 'number') {
const date = new Date(value)
if (!isNaN(date.valueOf())) {
return date
}
throw new InconclusiveMatchError(`${value} is in an invalid date format`)
} else {
throw new InconclusiveMatchError(`The date provided ${value} must be a string, number, or date object`)
}
}
function relativeDateParseForFeatureFlagMatching(value: string): Date | null {
const regex = /^-?(?<number>[0-9]+)(?<interval>[a-z])$/
const match = value.match(regex)
const parsedDt = new Date(new Date().toISOString())
if (match) {
if (!match.groups) {
return null
}
const number = parseInt(match.groups['number'])
if (number >= 10000) {
// Guard against overflow, disallow numbers greater than 10_000
return null
}
const interval = match.groups['interval']
if (interval == 'h') {
parsedDt.setUTCHours(parsedDt.getUTCHours() - number)
} else if (interval == 'd') {
parsedDt.setUTCDate(parsedDt.getUTCDate() - number)
} else if (interval == 'w') {
parsedDt.setUTCDate(parsedDt.getUTCDate() - number * 7)
} else if (interval == 'm') {
parsedDt.setUTCMonth(parsedDt.getUTCMonth() - number)
} else if (interval == 'y') {
parsedDt.setUTCFullYear(parsedDt.getUTCFullYear() - number)
} else {
return null
}
return parsedDt
} else {
return null
}
}
export {
FeatureFlagsPoller,
matchProperty,
relativeDateParseForFeatureFlagMatching,
InconclusiveMatchError,
ClientError,
}