payid-rule-engine 0.2.0 → 0.2.2

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/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "payid-rule-engine",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "scripts": {
7
- "build": "tsup src/sandbox.ts --format esm --dts --clean"
7
+ "build": "tsup src/* --format esm --dts --clean"
8
8
  },
9
9
  "dependencies": {
10
10
  "@types/lodash": "^4.17.21",
package/src/sandbox.ts CHANGED
@@ -1,24 +1,23 @@
1
- // sandbox.ts — WASI-free version
2
- // Lihat wasm.ts untuk penjelasan mengapa WASI dihapus
3
-
4
1
  import type { RuleContext, RuleResult } from "payid-types";
5
2
  import { loadWasm } from "./wasm";
6
-
7
3
  export async function runWasmRule(
8
4
  wasmBinary: Buffer,
9
5
  context: RuleContext,
10
6
  config: any
11
7
  ): Promise<RuleResult> {
12
- // loadWasm tidak lagi butuh WASI instance
13
8
  const instance = await loadWasm(wasmBinary);
14
9
 
15
10
  const memory = instance.exports.memory as WebAssembly.Memory;
16
- const alloc = instance.exports.alloc as (size: number) => number;
17
- const free_ = instance.exports.free as (ptr: number, size: number) => void;
11
+ const alloc = instance.exports.alloc as ((size: number) => number) | undefined;
12
+ const free_ = instance.exports.free as ((ptr: number, size: number) => void) | undefined;
18
13
  const evaluate = instance.exports.evaluate as (
19
14
  a: number, b: number, c: number, d: number, e: number, f: number
20
15
  ) => number;
21
16
 
17
+ if (!alloc || !evaluate) {
18
+ throw new Error(`WASM missing exports: alloc=${!!alloc} evaluate=${!!evaluate}`);
19
+ }
20
+
22
21
  const ctxBuf = Buffer.from(JSON.stringify(context));
23
22
  const cfgBuf = Buffer.from(JSON.stringify(config));
24
23
  const OUT_SIZE = 4096;
@@ -27,26 +26,30 @@ export async function runWasmRule(
27
26
  const cfgPtr = alloc(cfgBuf.length);
28
27
  const outPtr = alloc(OUT_SIZE);
29
28
 
29
+ new Uint8Array(memory.buffer).set(ctxBuf, ctxPtr);
30
+ new Uint8Array(memory.buffer).set(cfgBuf, cfgPtr);
31
+
32
+ let rc: number;
30
33
  try {
31
- new Uint8Array(memory.buffer).set(ctxBuf, ctxPtr);
32
- new Uint8Array(memory.buffer).set(cfgBuf, cfgPtr);
34
+ rc = evaluate(ctxPtr, ctxBuf.length, cfgPtr, cfgBuf.length, outPtr, OUT_SIZE);
35
+ } catch (err) {
36
+ throw new Error(`WASM evaluate threw: ${err}`);
37
+ }
33
38
 
34
- const rc = evaluate(
35
- ctxPtr, ctxBuf.length,
36
- cfgPtr, cfgBuf.length,
37
- outPtr, OUT_SIZE
38
- );
39
+ if (rc < 0) throw new Error(`WASM evaluate failed rc=${rc}`);
39
40
 
40
- if (rc < 0) throw new Error(`WASM evaluate failed rc=${rc}`);
41
+ const out = Buffer.from(
42
+ new Uint8Array(memory.buffer).slice(outPtr, outPtr + rc)
43
+ );
41
44
 
42
- const out = Buffer.from(
43
- new Uint8Array(memory.buffer).slice(outPtr, outPtr + rc)
44
- );
45
+ const result = JSON.parse(out.toString("utf8"));
45
46
 
46
- return JSON.parse(out.toString("utf8"));
47
- } finally {
47
+ // free hanya kalau ada — beberapa build tidak export free
48
+ if (free_) {
48
49
  free_(ctxPtr, ctxBuf.length);
49
50
  free_(cfgPtr, cfgBuf.length);
50
51
  free_(outPtr, OUT_SIZE);
51
52
  }
53
+
54
+ return result;
52
55
  }
@@ -0,0 +1,262 @@
1
+ // sandbox.ts — Pure TypeScript rule engine (no WASM)
2
+ //
3
+ // Implements semua operator v4: exists, not_exists, transforms, regex, mod_ne, dll.
4
+ // Tidak butuh compile Rust, tidak butuh WASI.
5
+
6
+ import type { RuleContext, RuleResult } from "payid-types";
7
+
8
+ // ── Entry point (sama interface dengan runWasmRule) ───────────────────────────
9
+
10
+ export async function runWasmRule(
11
+ _wasmBinary: Buffer, // ignored — pakai TS implementation
12
+ context: RuleContext,
13
+ config: any
14
+ ): Promise<RuleResult> {
15
+ return evaluateRule(context, config);
16
+ }
17
+
18
+ // ── Core evaluation ───────────────────────────────────────────────────────────
19
+
20
+ function evaluateRule(context: any, config: any): RuleResult {
21
+ const rules: any[] = config?.rules;
22
+ if (!Array.isArray(rules) || rules.length === 0) {
23
+ return { decision: "ALLOW", code: "NO_RULES", reason: "no rules defined" };
24
+ }
25
+
26
+ const logic: string = config?.logic ?? "AND";
27
+ return evalRules(context, rules, logic);
28
+ }
29
+
30
+ function evalRules(context: any, rules: any[], logic: string): RuleResult {
31
+ for (const rule of rules) {
32
+ const res = evalOneRule(context, rule);
33
+ if (res.decision === "REJECT" && logic === "AND") return res;
34
+ if (res.decision === "ALLOW" && logic === "OR") return res;
35
+ }
36
+ if (logic === "AND") return { decision: "ALLOW", code: "OK", reason: "all rules passed" };
37
+ return { decision: "REJECT", code: "NO_RULE_MATCH", reason: "no rule matched in OR group" };
38
+ }
39
+
40
+ function evalOneRule(context: any, rule: any): RuleResult {
41
+ const ruleId = rule?.id ?? "UNKNOWN_RULE";
42
+ const message = rule?.message ?? "";
43
+
44
+ // Format C: nested rules
45
+ if (Array.isArray(rule?.rules)) {
46
+ const subLogic = rule?.logic ?? "AND";
47
+ const res = evalRules(context, rule.rules, subLogic);
48
+ if (res.decision === "REJECT" && message) {
49
+ return { decision: "REJECT", code: ruleId, reason: message };
50
+ }
51
+ return res;
52
+ }
53
+
54
+ // Format B: multi-condition
55
+ if (Array.isArray(rule?.conditions)) {
56
+ const inner = rule?.logic ?? "AND";
57
+ for (const cond of rule.conditions) {
58
+ const passed = evalCondition(context, cond);
59
+ if (!passed && inner === "AND") {
60
+ const reason = message || cond?.field || ruleId;
61
+ return { decision: "REJECT", code: ruleId, reason };
62
+ }
63
+ if (passed && inner === "OR") {
64
+ return { decision: "ALLOW", code: ruleId };
65
+ }
66
+ }
67
+ if (inner === "AND") return { decision: "ALLOW", code: ruleId };
68
+ return { decision: "REJECT", code: ruleId, reason: message || "no condition matched in OR" };
69
+ }
70
+
71
+ // Format A: single if
72
+ if (rule?.if !== undefined) {
73
+ const passed = evalCondition(context, rule.if);
74
+ if (!passed) {
75
+ const reason = message || rule.if?.field || ruleId;
76
+ return {
77
+ decision: "REJECT",
78
+ code: ruleId,
79
+ reason: interpolate(reason, context)
80
+ };
81
+ }
82
+ return { decision: "ALLOW", code: ruleId };
83
+ }
84
+
85
+ return { decision: "REJECT", code: ruleId, reason: "rule has no evaluable condition" };
86
+ }
87
+
88
+ // ── Condition evaluation ──────────────────────────────────────────────────────
89
+
90
+ function evalCondition(context: any, cond: any): boolean {
91
+ const fieldExpr: string = cond?.field;
92
+ const op: string = cond?.op;
93
+ if (!fieldExpr || !op) return false;
94
+
95
+ const baseField = splitTransform(fieldExpr)[0];
96
+
97
+ if (op === "exists") return resolveField(context, baseField) !== undefined;
98
+ if (op === "not_exists") return resolveField(context, baseField) === undefined;
99
+
100
+ const actualRaw = resolveField(context, baseField);
101
+ if (actualRaw === undefined) return false;
102
+ const actual = applyTransform(actualRaw, fieldExpr);
103
+
104
+ // Cross-field reference
105
+ let expected = cond.value;
106
+ if (typeof expected === "string" && expected.startsWith("$")) {
107
+ const refField = expected.slice(1);
108
+ const refBase = splitTransform(refField)[0];
109
+ const refRaw = resolveField(context, refBase);
110
+ if (refRaw === undefined) return false;
111
+ expected = applyTransform(refRaw, refField);
112
+ }
113
+
114
+ return applyOp(actual, op, expected);
115
+ }
116
+
117
+ // ── Field resolution ──────────────────────────────────────────────────────────
118
+
119
+ function resolveField(ctx: any, path: string): any {
120
+ const base = splitTransform(path)[0];
121
+ return base.split(".").reduce((o: any, k: string) => o?.[k], ctx);
122
+ }
123
+
124
+ function splitTransform(expr: string): [string, string | null] {
125
+ const i = expr.indexOf("|");
126
+ if (i === -1) return [expr, null];
127
+ return [expr.slice(0, i), expr.slice(i + 1)];
128
+ }
129
+
130
+ // ── Field transforms ──────────────────────────────────────────────────────────
131
+
132
+ function applyTransform(val: any, expr: string): any {
133
+ const transform = splitTransform(expr)[1];
134
+ if (!transform) return val;
135
+
136
+ const colonIdx = transform.indexOf(":");
137
+ const name = colonIdx === -1 ? transform : transform.slice(0, colonIdx);
138
+ const arg = colonIdx === -1 ? null : transform.slice(colonIdx + 1);
139
+
140
+ const n = toU128(val);
141
+
142
+ switch (name) {
143
+ case "div": {
144
+ if (n === null) return val;
145
+ const d = arg ? BigInt(arg) : 1n;
146
+ if (d === 0n) return val;
147
+ return Number(n / d);
148
+ }
149
+ case "mod": {
150
+ if (n === null) return val;
151
+ const m = arg ? BigInt(arg) : 1n;
152
+ if (m === 0n) return val;
153
+ return Number(n % m);
154
+ }
155
+ case "abs": return n !== null ? Number(n < 0n ? -n : n) : val;
156
+ case "hour": return n !== null ? Number((n % 86400n) / 3600n) : val;
157
+ case "day": return n !== null ? Number((n / 86400n + 4n) % 7n) : val;
158
+ case "date": return n !== null ? dayOfMonth(Number(n / 86400n)) : val;
159
+ case "month": return n !== null ? monthOfYear(Number(n / 86400n)) : val;
160
+ case "len": return String(val).length;
161
+ case "lower": return String(val).toLowerCase();
162
+ case "upper": return String(val).toUpperCase();
163
+ default: return val;
164
+ }
165
+ }
166
+
167
+ function toU128(v: any): bigint | null {
168
+ try {
169
+ if (typeof v === "bigint") return v;
170
+ if (typeof v === "number") return BigInt(Math.trunc(v));
171
+ if (typeof v === "string" && v !== "") return BigInt(v);
172
+ return null;
173
+ } catch { return null; }
174
+ }
175
+
176
+ // ── Gregorian calendar ────────────────────────────────────────────────────────
177
+
178
+ function isLeap(y: number): boolean { return (y % 4 === 0 && y % 100 !== 0) || y % 400 === 0; }
179
+
180
+ function daysToYMD(days: number): [number, number, number] {
181
+ let y = 1970;
182
+ while (true) { const dy = isLeap(y) ? 366 : 365; if (days < dy) break; days -= dy; y++; }
183
+ const months = [0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
184
+ if (isLeap(y)) months[2] = 29;
185
+ let m = 1;
186
+ while (true) { if (days < months[m]!) break; days -= months[m]!; m++; }
187
+ return [y, m, days + 1];
188
+ }
189
+
190
+ function dayOfMonth(days: number): number { return daysToYMD(days)[2]; }
191
+ function monthOfYear(days: number): number { return daysToYMD(days)[1]; }
192
+
193
+ // ── Operator dispatch ─────────────────────────────────────────────────────────
194
+
195
+ function applyOp(actual: any, op: string, expected: any): boolean {
196
+ const a = toU128(actual);
197
+ const b = toU128(expected);
198
+
199
+ switch (op) {
200
+ case ">=": return a !== null && b !== null && a >= b;
201
+ case "<=": return a !== null && b !== null && a <= b;
202
+ case ">": return a !== null && b !== null && a > b;
203
+ case "<": return a !== null && b !== null && a < b;
204
+
205
+ case "==": return String(actual) === String(expected) || actual == expected;
206
+ case "!=": return String(actual) !== String(expected) && actual != expected;
207
+
208
+ case "in": return Array.isArray(expected) && expected.some(e => looseEq(actual, e));
209
+ case "not_in": return Array.isArray(expected) && !expected.some(e => looseEq(actual, e));
210
+
211
+ case "between":
212
+ return Array.isArray(expected) && expected.length === 2 && a !== null
213
+ && toU128(expected[0]) !== null && toU128(expected[1]) !== null
214
+ && a >= toU128(expected[0])! && a <= toU128(expected[1])!;
215
+
216
+ case "not_between":
217
+ return Array.isArray(expected) && expected.length === 2 && a !== null
218
+ && (a < toU128(expected[0])! || a > toU128(expected[1])!);
219
+
220
+ case "mod_eq":
221
+ return Array.isArray(expected) && expected.length === 2 && a !== null
222
+ && toU128(expected[0]) !== null && toU128(expected[0])! > 0n
223
+ && a % toU128(expected[0])! === toU128(expected[1])!;
224
+
225
+ case "mod_ne":
226
+ return Array.isArray(expected) && expected.length === 2 && a !== null
227
+ && toU128(expected[0]) !== null && toU128(expected[0])! > 0n
228
+ && a % toU128(expected[0])! !== toU128(expected[1])!;
229
+
230
+ case "contains": return typeof actual === "string" && typeof expected === "string" && actual.includes(expected);
231
+ case "not_contains": return typeof actual === "string" && typeof expected === "string" && !actual.includes(expected);
232
+ case "starts_with": return typeof actual === "string" && typeof expected === "string" && actual.startsWith(expected);
233
+ case "ends_with": return typeof actual === "string" && typeof expected === "string" && actual.endsWith(expected);
234
+
235
+ case "exists": return actual !== undefined && actual !== null;
236
+ case "not_exists": return actual === undefined || actual === null;
237
+
238
+ case "regex": return typeof actual === "string" && typeof expected === "string" && new RegExp(expected).test(actual);
239
+ case "not_regex": return typeof actual === "string" && typeof expected === "string" && !new RegExp(expected).test(actual);
240
+
241
+ default: return false;
242
+ }
243
+ }
244
+
245
+ function looseEq(a: any, b: any): boolean {
246
+ if (a == b) return true;
247
+ if (String(a) === String(b)) return true;
248
+ const ba = toU128(a), bb = toU128(b);
249
+ return ba !== null && bb !== null && ba === bb;
250
+ }
251
+
252
+ // ── Message interpolation ─────────────────────────────────────────────────────
253
+
254
+ function interpolate(template: string, context: any): string {
255
+ return template.replace(/\{([^}]+)\}/g, (_, key) => {
256
+ const base = splitTransform(key)[0];
257
+ const raw = resolveField(context, base);
258
+ if (raw === undefined) return `{${key}}`;
259
+ const val = applyTransform(raw, key);
260
+ return String(val);
261
+ });
262
+ }
package/src/wasm.ts CHANGED
@@ -1,18 +1,8 @@
1
- // wasm.ts WASI-free loader
2
- //
3
- // WASM rule engine v4 tidak butuh WASI sama sekali (tidak ada file I/O,
4
- // tidak ada stdout/stderr, tidak ada proc_exit). Bun punya known issues
5
- // dengan WASI preview1 yang bisa menyebabkan hang.
6
- //
7
- // Solusi: pass minimal stub yang satisfy wasi_snapshot_preview1 interface,
8
- // cukup untuk Rust allocator init tanpa dependency ke WASI runtime.
9
-
10
- export async function loadWasm(
11
- binary: Buffer,
12
- ): Promise<WebAssembly.Instance> {
13
-
1
+ export async function loadWasm(binary: Buffer): Promise<WebAssembly.Instance> {
14
2
  const module = await WebAssembly.compile(binary);
15
3
 
4
+ // WASI stub — tidak pakai new WASI() karena hang di Bun
5
+ // Rule engine tidak butuh file I/O, stub ini cukup untuk satisfy imports
16
6
  const wasiStub: Record<string, (...args: any[]) => any> = {
17
7
  fd_write: () => 8, // EBADF
18
8
  fd_read: () => 8,
@@ -38,4 +28,4 @@ export async function loadWasm(
38
28
  if (_init) _init();
39
29
 
40
30
  return instance;
41
- }
31
+ }