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

Function policiesCreate

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

Source from the content-addressed store, hash-verified

3912 );
3913
3914 const policiesCreate = (
3915 input: CreateToolPolicyInput,
3916 ): Effect.Effect<ToolPolicy, StorageFailure> =>
3917 Effect.gen(function* () {
3918 if (!isValidPattern(input.pattern)) {
3919 return yield* new StorageError({
3920 message: `Invalid tool policy pattern: ${input.pattern}`,
3921 cause: undefined,
3922 });
3923 }
3924 if (!isToolPolicyAction(input.action)) {
3925 return yield* new StorageError({
3926 message: `Invalid tool policy action: ${String(input.action)}`,
3927 cause: undefined,
3928 });
3929 }
3930 yield* requireUserSubject(input.owner);
3931 const keys = yield* Effect.try({
3932 try: () => ownedKeys(input.owner),
3933 catch: (cause) => storageFailureFromUnknown("invalid owner", cause),
3934 });
3935 const existing = yield* core.findMany("tool_policy", {
3936 where: byOwner(input.owner),
3937 });
3938 // Default placement is specificity-aware (below any more-specific
3939 // rule), not top-of-list: a client that omits position — the UI when
3940 // its policy list is stale, the API, an agent tool — must not have its
3941 // broad rule silently shadow an existing narrow one.
3942 const position = input.position ?? positionForNewPattern(input.pattern, existing);
3943 const id = PolicyId.make(
3944 `pol_${Math.random().toString(36).slice(2)}${Date.now().toString(36)}`,
3945 );
3946 const now = new Date();
3947 const created = yield* core.create("tool_policy", {
3948 tenant: keys.tenant,
3949 owner: keys.owner,
3950 subject: keys.subject,
3951 id: String(id),
3952 pattern: input.pattern,
3953 action: input.action,
3954 position,
3955 created_at: now,
3956 updated_at: now,
3957 });
3958 return rowToToolPolicy(created);
3959 });
3960
3961 const policiesUpdate = (
3962 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