MCPcopy Create free account
hub / github.com/UsefulSoftwareCo/executor / policiesCreate

Function policiesCreate

packages/core/sdk/src/executor.ts:3398–3443  ·  view source on GitHub ↗
(
      input: CreateToolPolicyInput,
    )

Source from the content-addressed store, hash-verified

3396 );
3397
3398 const policiesCreate = (
3399 input: CreateToolPolicyInput,
3400 ): Effect.Effect<ToolPolicy, StorageFailure> =>
3401 Effect.gen(function* () {
3402 if (!isValidPattern(input.pattern)) {
3403 return yield* new StorageError({
3404 message: `Invalid tool policy pattern: ${input.pattern}`,
3405 cause: undefined,
3406 });
3407 }
3408 if (!isToolPolicyAction(input.action)) {
3409 return yield* new StorageError({
3410 message: `Invalid tool policy action: ${String(input.action)}`,
3411 cause: undefined,
3412 });
3413 }
3414 yield* requireUserSubject(input.owner);
3415 const keys = yield* Effect.try({
3416 try: () => ownedKeys(input.owner),
3417 catch: (cause) => storageFailureFromUnknown("invalid owner", cause),
3418 });
3419 const existing = yield* core.findMany("tool_policy", {
3420 where: byOwner(input.owner),
3421 });
3422 // Default placement is specificity-aware (below any more-specific
3423 // rule), not top-of-list: a client that omits position — the UI when
3424 // its policy list is stale, the API, an agent tool — must not have its
3425 // broad rule silently shadow an existing narrow one.
3426 const position = input.position ?? positionForNewPattern(input.pattern, existing);
3427 const id = PolicyId.make(
3428 `pol_${Math.random().toString(36).slice(2)}${Date.now().toString(36)}`,
3429 );
3430 const now = new Date();
3431 const created = yield* core.create("tool_policy", {
3432 tenant: keys.tenant,
3433 owner: keys.owner,
3434 subject: keys.subject,
3435 id: String(id),
3436 pattern: input.pattern,
3437 action: input.action,
3438 position,
3439 created_at: now,
3440 updated_at: now,
3441 });
3442 return rowToToolPolicy(created);
3443 });
3444
3445 const policiesUpdate = (
3446 input: UpdateToolPolicyInput,

Callers 1

createExecutorFunction · 0.85

Calls 9

isValidPatternFunction · 0.90
isToolPolicyActionFunction · 0.90
positionForNewPatternFunction · 0.90
rowToToolPolicyFunction · 0.90
requireUserSubjectFunction · 0.85
ownedKeysFunction · 0.85
byOwnerFunction · 0.85
toStringMethod · 0.80

Tested by

no test coverage detected