Merge pull request #13905 from backstage/permissions/schema

Permissions - Add a required parameter schema
This commit is contained in:
Harrison Hogg
2022-10-11 14:59:24 +01:00
committed by GitHub
43 changed files with 755 additions and 294 deletions
+50 -16
View File
@@ -45,6 +45,7 @@ import { PermissionCondition } from '@backstage/plugin-permission-common';
import { PermissionCriteria } from '@backstage/plugin-permission-common';
import { PermissionEvaluator } from '@backstage/plugin-permission-common';
import { PermissionRule } from '@backstage/plugin-permission-node';
import { PermissionRuleParams } from '@backstage/plugin-permission-common';
import { PluginDatabaseManager } from '@backstage/backend-common';
import { PluginEndpointDiscovery } from '@backstage/backend-common';
import { processingResult } from '@backstage/plugin-catalog-node';
@@ -171,37 +172,52 @@ export const catalogConditions: Conditions<{
Entity,
EntitiesSearchFilter,
'catalog-entity',
[annotation: string, value?: string | undefined]
{
value?: string | undefined;
annotation: string;
}
>;
hasLabel: PermissionRule<
Entity,
EntitiesSearchFilter,
'catalog-entity',
[label: string]
{
label: string;
}
>;
hasMetadata: PermissionRule<
Entity,
EntitiesSearchFilter,
'catalog-entity',
[key: string, value?: string | undefined]
{
value?: string | undefined;
key: string;
}
>;
hasSpec: PermissionRule<
Entity,
EntitiesSearchFilter,
'catalog-entity',
[key: string, value?: string | undefined]
{
value?: string | undefined;
key: string;
}
>;
isEntityKind: PermissionRule<
Entity,
EntitiesSearchFilter,
'catalog-entity',
[kinds: string[]]
{
kinds: string[];
}
>;
isEntityOwner: PermissionRule<
Entity,
EntitiesSearchFilter,
'catalog-entity',
[claims: string[]]
{
claims: string[];
}
>;
}>;
@@ -215,8 +231,9 @@ export type CatalogEnvironment = {
};
// @alpha
export type CatalogPermissionRule<TParams extends unknown[] = unknown[]> =
PermissionRule<Entity, EntitiesSearchFilter, 'catalog-entity', TParams>;
export type CatalogPermissionRule<
TParams extends PermissionRuleParams = PermissionRuleParams,
> = PermissionRule<Entity, EntitiesSearchFilter, 'catalog-entity', TParams>;
// @alpha
export const catalogPlugin: (options?: undefined) => BackendFeature;
@@ -274,12 +291,14 @@ export class CodeOwnersProcessor implements CatalogProcessor {
export const createCatalogConditionalDecision: (
permission: ResourcePermission<'catalog-entity'>,
conditions: PermissionCriteria<
PermissionCondition<'catalog-entity', unknown[]>
PermissionCondition<'catalog-entity', PermissionRuleParams>
>,
) => ConditionalPolicyDecision;
// @alpha
export const createCatalogPermissionRule: <TParams extends unknown[]>(
export const createCatalogPermissionRule: <
TParams extends PermissionRuleParams = undefined,
>(
rule: PermissionRule<Entity, EntitiesSearchFilter, 'catalog-entity', TParams>,
) => PermissionRule<Entity, EntitiesSearchFilter, 'catalog-entity', TParams>;
@@ -442,37 +461,52 @@ export const permissionRules: {
Entity,
EntitiesSearchFilter,
'catalog-entity',
[annotation: string, value?: string | undefined]
{
value?: string | undefined;
annotation: string;
}
>;
hasLabel: PermissionRule<
Entity,
EntitiesSearchFilter,
'catalog-entity',
[label: string]
{
label: string;
}
>;
hasMetadata: PermissionRule<
Entity,
EntitiesSearchFilter,
'catalog-entity',
[key: string, value?: string | undefined]
{
value?: string | undefined;
key: string;
}
>;
hasSpec: PermissionRule<
Entity,
EntitiesSearchFilter,
'catalog-entity',
[key: string, value?: string | undefined]
{
value?: string | undefined;
key: string;
}
>;
isEntityKind: PermissionRule<
Entity,
EntitiesSearchFilter,
'catalog-entity',
[kinds: string[]]
{
kinds: string[];
}
>;
isEntityOwner: PermissionRule<
Entity,
EntitiesSearchFilter,
'catalog-entity',
[claims: string[]]
{
claims: string[];
}
>;
};
@@ -41,7 +41,9 @@ describe('createPropertyRule', () => {
name: 'test-component',
},
},
'org.name',
{
key: 'org.name',
},
),
).toBe(false);
});
@@ -57,7 +59,9 @@ describe('createPropertyRule', () => {
tags: [],
},
},
'tags',
{
key: 'tags',
},
),
).toBe(false);
});
@@ -75,7 +79,9 @@ describe('createPropertyRule', () => {
},
},
},
'org.name',
{
key: 'org.name',
},
),
).toBe(true);
});
@@ -91,7 +97,9 @@ describe('createPropertyRule', () => {
tags: ['java'],
},
},
'tags',
{
key: 'tags',
},
),
).toBe(true);
});
@@ -108,8 +116,10 @@ describe('createPropertyRule', () => {
name: 'test-component',
},
},
'org.name',
'test-org',
{
key: 'org.name',
value: 'test-org',
},
),
).toBe(false);
});
@@ -127,8 +137,10 @@ describe('createPropertyRule', () => {
},
},
},
'org.name',
'test-org',
{
key: 'org.name',
value: 'test-org',
},
),
).toBe(false);
});
@@ -144,8 +156,10 @@ describe('createPropertyRule', () => {
tags: ['java'],
},
},
'tags',
'python',
{
key: 'tags',
value: 'python',
},
),
).toBe(false);
});
@@ -163,8 +177,10 @@ describe('createPropertyRule', () => {
},
},
},
'org.name',
'test-org',
{
key: 'org.name',
value: 'test-org',
},
),
).toBe(true);
});
@@ -180,8 +196,10 @@ describe('createPropertyRule', () => {
tags: ['java', 'java11'],
},
},
'tags',
'java',
{
key: 'tags',
value: 'java',
},
),
).toBe(true);
});
@@ -190,7 +208,11 @@ describe('createPropertyRule', () => {
describe('toQuery', () => {
it('returns an appropriate catalog-backend filter', () => {
expect(toQuery('backstage.io/test-component')).toEqual({
expect(
toQuery({
key: 'backstage.io/test-component',
}),
).toEqual({
key: 'metadata.backstage.io/test-component',
});
});
@@ -15,16 +15,25 @@
*/
import { get } from 'lodash';
import { Entity } from '@backstage/catalog-model';
import { RESOURCE_TYPE_CATALOG_ENTITY } from '@backstage/plugin-catalog-common';
import { createCatalogPermissionRule } from './util';
import { z } from 'zod';
export const createPropertyRule = (propertyType: 'metadata' | 'spec') =>
createCatalogPermissionRule({
name: `HAS_${propertyType.toUpperCase()}`,
description: `Allow entities which have the specified ${propertyType} subfield.`,
resourceType: RESOURCE_TYPE_CATALOG_ENTITY,
apply: (resource: Entity, key: string, value?: string) => {
paramsSchema: z.object({
key: z
.string()
.describe(`Property within the entities ${propertyType} to match on`),
value: z
.string()
.optional()
.describe(`Value of the given property to match on`),
}),
apply: (resource, { key, value }) => {
const foundValue = get(resource[propertyType], key);
if (Array.isArray(foundValue)) {
@@ -38,7 +47,7 @@ export const createPropertyRule = (propertyType: 'metadata' | 'spec') =>
}
return !!foundValue;
},
toQuery: (key: string, value?: string) => ({
toQuery: ({ key, value }) => ({
key: `${propertyType}.${key}`,
...(value !== undefined && { values: [value] }),
}),
@@ -31,7 +31,9 @@ describe('hasAnnotation permission rule', () => {
},
},
},
'backstage.io/test-annotation',
{
annotation: 'backstage.io/test-annotation',
},
),
).toEqual(false);
});
@@ -46,7 +48,9 @@ describe('hasAnnotation permission rule', () => {
name: 'test-component',
},
},
'backstage.io/test-annotation',
{
annotation: 'backstage.io/test-annotation',
},
),
).toEqual(false);
expect(
@@ -58,8 +62,10 @@ describe('hasAnnotation permission rule', () => {
name: 'test-component',
},
},
'backstage.io/test-annotation',
'some value',
{
annotation: 'backstage.io/test-annotation',
value: 'some value',
},
),
).toEqual(false);
});
@@ -78,7 +84,9 @@ describe('hasAnnotation permission rule', () => {
},
},
},
'backstage.io/test-annotation',
{
annotation: 'backstage.io/test-annotation',
},
),
).toEqual(true);
});
@@ -97,8 +105,10 @@ describe('hasAnnotation permission rule', () => {
},
},
},
'backstage.io/test-annotation',
'baz',
{
annotation: 'backstage.io/test-annotation',
value: 'baz',
},
),
).toEqual(false);
});
@@ -117,8 +127,10 @@ describe('hasAnnotation permission rule', () => {
},
},
},
'backstage.io/test-annotation',
'bar',
{
annotation: 'backstage.io/test-annotation',
value: 'bar',
},
),
).toEqual(true);
});
@@ -126,7 +138,11 @@ describe('hasAnnotation permission rule', () => {
describe('toQuery', () => {
it('returns an appropriate catalog-backend filter', () => {
expect(hasAnnotation.toQuery('backstage.io/test-annotation')).toEqual({
expect(
hasAnnotation.toQuery({
annotation: 'backstage.io/test-annotation',
}),
).toEqual({
key: 'metadata.annotations.backstage.io/test-annotation',
});
});
@@ -134,7 +150,10 @@ describe('hasAnnotation permission rule', () => {
it('returns an appropriate catalog-backend filter with values', () => {
expect(
hasAnnotation.toQuery('backstage.io/test-annotation', 'foo'),
hasAnnotation.toQuery({
annotation: 'backstage.io/test-annotation',
value: 'foo',
}),
).toEqual({
key: 'metadata.annotations.backstage.io/test-annotation',
values: ['foo'],
@@ -14,8 +14,8 @@
* limitations under the License.
*/
import { Entity } from '@backstage/catalog-model';
import { RESOURCE_TYPE_CATALOG_ENTITY } from '@backstage/plugin-catalog-common';
import { z } from 'zod';
import { createCatalogPermissionRule } from './util';
/**
@@ -31,12 +31,19 @@ export const hasAnnotation = createCatalogPermissionRule({
description:
'Allow entities which are annotated with the specified annotation',
resourceType: RESOURCE_TYPE_CATALOG_ENTITY,
apply: (resource: Entity, annotation: string, value?: string) =>
paramsSchema: z.object({
annotation: z.string().describe('Name of the annotation to match on'),
value: z
.string()
.optional()
.describe('Value of the annotation to match on'),
}),
apply: (resource, { annotation, value }) =>
!!resource.metadata.annotations?.hasOwnProperty(annotation) &&
(value === undefined
? true
: resource.metadata.annotations?.[annotation] === value),
toQuery: (annotation: string, value?: string) =>
toQuery: ({ annotation, value }) =>
value === undefined
? {
key: `metadata.annotations.${annotation}`,
@@ -31,7 +31,9 @@ describe('hasLabel permission rule', () => {
},
},
},
'backstage.io/testlabel',
{
label: 'backstage.io/testlabel',
},
),
).toEqual(false);
});
@@ -46,7 +48,9 @@ describe('hasLabel permission rule', () => {
name: 'test-component',
},
},
'backstage.io/testlabel',
{
label: 'backstage.io/testlabel',
},
),
).toEqual(false);
});
@@ -65,7 +69,7 @@ describe('hasLabel permission rule', () => {
},
},
},
'backstage.io/testlabel',
{ label: 'backstage.io/testlabel' },
),
).toEqual(true);
});
@@ -73,7 +77,11 @@ describe('hasLabel permission rule', () => {
describe('toQuery', () => {
it('returns an appropriate catalog-backend filter', () => {
expect(hasLabel.toQuery('backstage.io/testlabel')).toEqual({
expect(
hasLabel.toQuery({
label: 'backstage.io/testlabel',
}),
).toEqual({
key: 'metadata.labels.backstage.io/testlabel',
});
});
@@ -14,8 +14,8 @@
* limitations under the License.
*/
import { Entity } from '@backstage/catalog-model';
import { RESOURCE_TYPE_CATALOG_ENTITY } from '@backstage/plugin-catalog-common';
import { z } from 'zod';
import { createCatalogPermissionRule } from './util';
/**
@@ -27,9 +27,12 @@ export const hasLabel = createCatalogPermissionRule({
name: 'HAS_LABEL',
description: 'Allow entities which have the specified label metadata.',
resourceType: RESOURCE_TYPE_CATALOG_ENTITY,
apply: (resource: Entity, label: string) =>
paramsSchema: z.object({
label: z.string().describe('Name of the label to match one'),
}),
apply: (resource, { label }) =>
!!resource.metadata.labels?.hasOwnProperty(label),
toQuery: (label: string) => ({
toQuery: ({ label }) => ({
key: `metadata.labels.${label}`,
}),
});
@@ -27,7 +27,11 @@ describe('isEntityKind', () => {
name: 'some-component',
},
};
expect(isEntityKind.apply(component, ['b'])).toBe(true);
expect(
isEntityKind.apply(component, {
kinds: ['b'],
}),
).toBe(true);
});
it('returns false when entity is not the correct kind', () => {
@@ -38,13 +42,21 @@ describe('isEntityKind', () => {
name: 'some-component',
},
};
expect(isEntityKind.apply(component, ['c'])).toBe(false);
expect(
isEntityKind.apply(component, {
kinds: ['c'],
}),
).toBe(false);
});
});
describe('toQuery', () => {
it('returns an appropriate catalog-backend filter', () => {
expect(isEntityKind.toQuery(['b'])).toEqual({
expect(
isEntityKind.toQuery({
kinds: ['b'],
}),
).toEqual({
key: 'kind',
values: ['b'],
});
@@ -13,8 +13,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { Entity } from '@backstage/catalog-model';
import { RESOURCE_TYPE_CATALOG_ENTITY } from '@backstage/plugin-catalog-common';
import { z } from 'zod';
import { EntitiesSearchFilter } from '../../catalog/types';
import { createCatalogPermissionRule } from './util';
@@ -27,11 +27,16 @@ export const isEntityKind = createCatalogPermissionRule({
name: 'IS_ENTITY_KIND',
description: 'Allow entities with the specified kind',
resourceType: RESOURCE_TYPE_CATALOG_ENTITY,
apply(resource: Entity, kinds: string[]) {
paramsSchema: z.object({
kinds: z
.array(z.string())
.describe('List of kinds to match at least one of'),
}),
apply(resource, { kinds }) {
const resourceKind = resource.kind.toLocaleLowerCase('en-US');
return kinds.some(kind => kind.toLocaleLowerCase('en-US') === resourceKind);
},
toQuery(kinds: string[]): EntitiesSearchFilter {
toQuery({ kinds }): EntitiesSearchFilter {
return {
key: 'kind',
values: kinds.map(kind => kind.toLocaleLowerCase('en-US')),
@@ -33,9 +33,11 @@ describe('isEntityOwner', () => {
},
],
};
expect(isEntityOwner.apply(component, ['user:default/spiderman'])).toBe(
true,
);
expect(
isEntityOwner.apply(component, {
claims: ['user:default/spiderman'],
}),
).toBe(true);
});
it('returns false when entity is not owned by the given user', () => {
@@ -52,9 +54,11 @@ describe('isEntityOwner', () => {
},
],
};
expect(isEntityOwner.apply(component, ['user:default/spiderman'])).toBe(
false,
);
expect(
isEntityOwner.apply(component, {
claims: ['user:default/spiderman'],
}),
).toBe(false);
});
it('returns false when entity does not have an owner', () => {
@@ -65,15 +69,21 @@ describe('isEntityOwner', () => {
name: 'some-component',
},
};
expect(isEntityOwner.apply(component, ['user:default/spiderman'])).toBe(
false,
);
expect(
isEntityOwner.apply(component, {
claims: ['user:default/spiderman'],
}),
).toBe(false);
});
});
describe('toQuery', () => {
it('returns an appropriate catalog-backend filter', () => {
expect(isEntityOwner.toQuery(['user:default/spiderman'])).toEqual({
expect(
isEntityOwner.toQuery({
claims: ['user:default/spiderman'],
}),
).toEqual({
key: 'relations.ownedBy',
values: ['user:default/spiderman'],
});
@@ -14,8 +14,9 @@
* limitations under the License.
*/
import { Entity, RELATION_OWNED_BY } from '@backstage/catalog-model';
import { RELATION_OWNED_BY } from '@backstage/catalog-model';
import { RESOURCE_TYPE_CATALOG_ENTITY } from '@backstage/plugin-catalog-common';
import { z } from 'zod';
import { createCatalogPermissionRule } from './util';
/**
@@ -28,7 +29,14 @@ export const isEntityOwner = createCatalogPermissionRule({
name: 'IS_ENTITY_OWNER',
description: 'Allow entities owned by the current user',
resourceType: RESOURCE_TYPE_CATALOG_ENTITY,
apply: (resource: Entity, claims: string[]) => {
paramsSchema: z.object({
claims: z
.array(z.string())
.describe(
`List of claims to match at least one on within ${RELATION_OWNED_BY}`,
),
}),
apply: (resource, { claims }) => {
if (!resource.relations) {
return false;
}
@@ -37,7 +45,7 @@ export const isEntityOwner = createCatalogPermissionRule({
.filter(relation => relation.type === RELATION_OWNED_BY)
.some(relation => claims.includes(relation.targetRef));
},
toQuery: (claims: string[]) => ({
toQuery: ({ claims }) => ({
key: 'relations.ownedBy',
values: claims,
}),
@@ -16,6 +16,7 @@
import { Entity } from '@backstage/catalog-model';
import { RESOURCE_TYPE_CATALOG_ENTITY } from '@backstage/plugin-catalog-common';
import { PermissionRuleParams } from '@backstage/plugin-permission-common';
import {
makeCreatePermissionRule,
PermissionRule,
@@ -29,8 +30,9 @@ import { EntitiesSearchFilter } from '../../catalog/types';
*
* @alpha
*/
export type CatalogPermissionRule<TParams extends unknown[] = unknown[]> =
PermissionRule<Entity, EntitiesSearchFilter, 'catalog-entity', TParams>;
export type CatalogPermissionRule<
TParams extends PermissionRuleParams = PermissionRuleParams,
> = PermissionRule<Entity, EntitiesSearchFilter, 'catalog-entity', TParams>;
/**
* Helper function for creating correctly-typed
@@ -65,7 +65,7 @@ describe('AuthorizedEntitiesCatalog', () => {
fakePermissionApi.authorizeConditional.mockResolvedValue([
{
result: AuthorizeResult.CONDITIONAL,
conditions: { rule: 'IS_ENTITY_KIND', params: [['b']] },
conditions: { rule: 'IS_ENTITY_KIND', params: { kinds: ['b'] } },
},
]);
const catalog = createCatalog(isEntityKind);
@@ -117,7 +117,7 @@ describe('AuthorizedEntitiesCatalog', () => {
fakePermissionApi.authorizeConditional.mockResolvedValue([
{
result: AuthorizeResult.CONDITIONAL,
conditions: { rule: 'IS_ENTITY_KIND', params: [['b']] },
conditions: { rule: 'IS_ENTITY_KIND', params: { kinds: ['b'] } },
},
]);
fakeCatalog.entities.mockResolvedValue({ entities: [] });
@@ -136,7 +136,7 @@ describe('AuthorizedEntitiesCatalog', () => {
fakePermissionApi.authorizeConditional.mockResolvedValue([
{
result: AuthorizeResult.CONDITIONAL,
conditions: { rule: 'IS_ENTITY_KIND', params: [['b']] },
conditions: { rule: 'IS_ENTITY_KIND', params: { kinds: ['b'] } },
},
]);
fakeCatalog.entities.mockResolvedValue({
@@ -272,7 +272,7 @@ describe('AuthorizedEntitiesCatalog', () => {
fakePermissionApi.authorizeConditional.mockResolvedValue([
{
result: AuthorizeResult.CONDITIONAL,
conditions: { rule: 'IS_ENTITY_KIND', params: [['b']] },
conditions: { rule: 'IS_ENTITY_KIND', params: { kinds: ['b'] } },
},
]);
const catalog = createCatalog(isEntityKind);
@@ -36,6 +36,7 @@ import {
} from '@backstage/plugin-permission-node';
import { RESOURCE_TYPE_CATALOG_ENTITY } from '@backstage/plugin-catalog-common';
import { CatalogProcessingOrchestrator } from '../processing/types';
import { z } from 'zod';
describe('createRouter readonly disabled', () => {
let entitiesCatalog: jest.Mocked<EntitiesCatalog>;
@@ -695,6 +696,9 @@ describe('NextRouter permissioning', () => {
name: 'FAKE_RULE',
description: 'fake rule',
resourceType: RESOURCE_TYPE_CATALOG_ENTITY,
paramsSchema: z.object({
foo: z.string(),
}),
apply: () => true,
toQuery: () => ({ key: '', values: [] }),
});
@@ -758,7 +762,9 @@ describe('NextRouter permissioning', () => {
conditions: {
rule: 'FAKE_RULE',
resourceType: 'catalog-entity',
params: ['user:default/spiderman'],
params: {
foo: 'user:default/spiderman',
},
},
},
],
@@ -30,6 +30,7 @@ import {
createPermissionRule,
} from '@backstage/plugin-permission-node';
import { PermissionIntegrationClient } from './PermissionIntegrationClient';
import { z } from 'zod';
describe('PermissionIntegrationClient', () => {
describe('applyConditions', () => {
@@ -38,8 +39,12 @@ describe('PermissionIntegrationClient', () => {
const mockConditions: PermissionCriteria<PermissionCondition> = {
not: {
allOf: [
{ rule: 'RULE_1', resourceType: 'test-resource', params: [] },
{ rule: 'RULE_2', resourceType: 'test-resource', params: ['abc'] },
{ rule: 'RULE_1', resourceType: 'test-resource', params: {} },
{
rule: 'RULE_2',
resourceType: 'test-resource',
params: { foo: 'abc' },
},
],
},
};
@@ -279,7 +284,10 @@ describe('PermissionIntegrationClient', () => {
name: 'RULE_1',
description: 'Test rule 1',
resourceType: 'test-resource',
apply: (_resource: any, input: 'yes' | 'no') => input === 'yes',
paramsSchema: z.object({
input: z.enum(['yes', 'no']),
}),
apply: (_resource, { input }) => input === 'yes',
toQuery: () => {
throw new Error('Not implemented');
},
@@ -288,7 +296,11 @@ describe('PermissionIntegrationClient', () => {
name: 'RULE_2',
description: 'Test rule 2',
resourceType: 'test-resource',
apply: (_resource: any, input: 'yes' | 'no') => input === 'yes',
paramsSchema: z.object({
input: z.enum(['yes', 'no']),
}),
apply: (_resource, { input }) => input === 'yes',
toQuery: () => {
throw new Error('Not implemented');
},
@@ -344,7 +356,9 @@ describe('PermissionIntegrationClient', () => {
conditions: {
rule: 'RULE_1',
resourceType: 'test-resource',
params: ['no'],
params: {
input: 'no',
},
},
},
]),
@@ -365,13 +379,17 @@ describe('PermissionIntegrationClient', () => {
{
rule: 'RULE_1',
resourceType: 'test-resource',
params: ['yes'],
params: {
input: 'yes',
},
},
{
not: {
rule: 'RULE_2',
resourceType: 'test-resource',
params: ['no'],
params: {
input: 'no',
},
},
},
],
@@ -382,12 +400,16 @@ describe('PermissionIntegrationClient', () => {
{
rule: 'RULE_1',
resourceType: 'test-resource',
params: ['no'],
params: {
input: 'no',
},
},
{
rule: 'RULE_2',
resourceType: 'test-resource',
params: ['yes'],
params: {
input: 'yes',
},
},
],
},
+11 -2
View File
@@ -4,6 +4,7 @@
```ts
import { Config } from '@backstage/config';
import { JsonPrimitive } from '@backstage/types';
// @public
export type AllOfCriteria<TQuery> = {
@@ -172,11 +173,11 @@ export class PermissionClient implements PermissionEvaluator {
// @public
export type PermissionCondition<
TResourceType extends string = string,
TParams extends unknown[] = unknown[],
TParams extends PermissionRuleParams = PermissionRuleParams,
> = {
resourceType: TResourceType;
rule: string;
params: TParams;
params?: TParams;
};
// @public
@@ -203,6 +204,14 @@ export type PermissionMessageBatch<T> = {
items: IdentifiedPermissionMessage<T>[];
};
// @public
export type PermissionRuleParam = undefined | JsonPrimitive | JsonPrimitive[];
// @public
export type PermissionRuleParams =
| undefined
| Record<string, PermissionRuleParam>;
// @public
export type PolicyDecision =
| DefinitivePolicyDecision
+1
View File
@@ -43,6 +43,7 @@
"dependencies": {
"@backstage/config": "workspace:^",
"@backstage/errors": "workspace:^",
"@backstage/types": "workspace:^",
"cross-fetch": "^3.1.5",
"uuid": "^8.0.0",
"zod": "^3.11.6"
@@ -227,7 +227,7 @@ describe('PermissionClient', () => {
conditions: {
resourceType: 'test-resource',
rule: 'FOO',
params: ['bar'],
params: { foo: 'bar' },
},
}),
);
@@ -275,7 +275,7 @@ describe('PermissionClient', () => {
conditions: {
rule: 'FOO',
resourceType: 'test-resource',
params: ['bar'],
params: { foo: 'bar' },
},
}),
);
@@ -41,7 +41,7 @@ const permissionCriteriaSchema: z.ZodSchema<
.object({
rule: z.string(),
resourceType: z.string(),
params: z.array(z.unknown()),
params: z.record(z.any()),
})
.or(z.object({ anyOf: z.array(permissionCriteriaSchema).nonempty() }))
.or(z.object({ allOf: z.array(permissionCriteriaSchema).nonempty() }))
+19 -2
View File
@@ -14,6 +14,7 @@
* limitations under the License.
*/
import { JsonPrimitive } from '@backstage/types';
import { ResourcePermission } from '.';
import { Permission } from './permission';
@@ -101,11 +102,11 @@ export type PolicyDecision =
*/
export type PermissionCondition<
TResourceType extends string = string,
TParams extends unknown[] = unknown[],
TParams extends PermissionRuleParams = PermissionRuleParams,
> = {
resourceType: TResourceType;
rule: string;
params: TParams;
params?: TParams;
};
/**
@@ -148,6 +149,22 @@ export type PermissionCriteria<TQuery> =
| NotCriteria<TQuery>
| TQuery;
/**
* A parameter to a permission rule.
*
* @public
*/
export type PermissionRuleParam = undefined | JsonPrimitive | JsonPrimitive[];
/**
* Types that can be used as parameters to permission rules.
*
* @public
*/
export type PermissionRuleParams =
| undefined
| Record<string, PermissionRuleParam>;
/**
* An individual request sent to the permission backend.
* @public
@@ -33,6 +33,8 @@ export type {
PolicyDecision,
PermissionCondition,
PermissionCriteria,
PermissionRuleParam,
PermissionRuleParams,
AllOfCriteria,
AnyOfCriteria,
NotCriteria,
+22 -12
View File
@@ -19,11 +19,13 @@ import { Permission } from '@backstage/plugin-permission-common';
import { PermissionCondition } from '@backstage/plugin-permission-common';
import { PermissionCriteria } from '@backstage/plugin-permission-common';
import { PermissionEvaluator } from '@backstage/plugin-permission-common';
import { PermissionRuleParams } from '@backstage/plugin-permission-common';
import { PluginEndpointDiscovery } from '@backstage/backend-common';
import { PolicyDecision } from '@backstage/plugin-permission-common';
import { QueryPermissionRequest } from '@backstage/plugin-permission-common';
import { ResourcePermission } from '@backstage/plugin-permission-common';
import { TokenManager } from '@backstage/backend-common';
import { z } from 'zod';
// @public
export type ApplyConditionsRequest = {
@@ -53,7 +55,9 @@ export type Condition<TRule> = TRule extends PermissionRule<
infer TResourceType,
infer TParams
>
? (...params: TParams) => PermissionCondition<TResourceType, TParams>
? undefined extends TParams
? () => PermissionCondition<TResourceType, TParams>
: (params: TParams) => PermissionCondition<TResourceType, TParams>
: never;
// @public
@@ -74,7 +78,7 @@ export const createConditionExports: <
TResource,
TRules extends Record<
string,
PermissionRule<TResource, any, TResourceType, unknown[]>
PermissionRule<TResource, any, TResourceType, PermissionRuleParams>
>,
>(options: {
pluginId: string;
@@ -85,7 +89,7 @@ export const createConditionExports: <
createConditionalDecision: (
permission: ResourcePermission<TResourceType>,
conditions: PermissionCriteria<
PermissionCondition<TResourceType, unknown[]>
PermissionCondition<TResourceType, PermissionRuleParams>
>,
) => ConditionalPolicyDecision;
};
@@ -93,15 +97,15 @@ export const createConditionExports: <
// @public
export const createConditionFactory: <
TResourceType extends string,
TParams extends any[],
TParams extends PermissionRuleParams = PermissionRuleParams,
>(
rule: PermissionRule<unknown, unknown, TResourceType, TParams>,
) => (...params: TParams) => PermissionCondition<TResourceType, TParams>;
) => (params: TParams) => PermissionCondition<TResourceType, TParams>;
// @public
export const createConditionTransformer: <
TQuery,
TRules extends PermissionRule<any, TQuery, string, unknown[]>[],
TRules extends PermissionRule<any, TQuery, string, PermissionRuleParams>[],
>(
permissionRules: [...TRules],
) => ConditionTransformer<TQuery>;
@@ -113,7 +117,12 @@ export const createPermissionIntegrationRouter: <
>(options: {
resourceType: TResourceType;
permissions?: Permission[] | undefined;
rules: PermissionRule<TResource, any, NoInfer<TResourceType>, unknown[]>[];
rules: PermissionRule<
TResource,
any,
NoInfer<TResourceType>,
PermissionRuleParams
>[];
getResources: (resourceRefs: string[]) => Promise<(TResource | undefined)[]>;
}) => express.Router;
@@ -122,7 +131,7 @@ export const createPermissionRule: <
TResource,
TQuery,
TResourceType extends string,
TParams extends unknown[],
TParams extends PermissionRuleParams = undefined,
>(
rule: PermissionRule<TResource, TQuery, TResourceType, TParams>,
) => PermissionRule<TResource, TQuery, TResourceType, TParams>;
@@ -147,7 +156,7 @@ export const makeCreatePermissionRule: <
TResource,
TQuery,
TResourceType extends string,
>() => <TParams extends unknown[]>(
>() => <TParams extends PermissionRuleParams = undefined>(
rule: PermissionRule<TResource, TQuery, TResourceType, TParams>,
) => PermissionRule<TResource, TQuery, TResourceType, TParams>;
@@ -165,13 +174,14 @@ export type PermissionRule<
TResource,
TQuery,
TResourceType extends string,
TParams extends unknown[] = unknown[],
TParams extends PermissionRuleParams = PermissionRuleParams,
> = {
name: string;
description: string;
resourceType: TResourceType;
apply(resource: TResource, ...params: TParams): boolean;
toQuery(...params: TParams): PermissionCriteria<TQuery>;
paramsSchema?: z.ZodSchema<TParams>;
apply(resource: TResource, params: NoInfer<TParams>): boolean;
toQuery(params: NoInfer<TParams>): PermissionCriteria<TQuery>;
};
// @public
+2 -1
View File
@@ -41,7 +41,8 @@
"@types/express": "^4.17.6",
"express": "^4.17.1",
"express-promise-router": "^4.1.0",
"zod": "^3.11.6"
"zod": "^3.11.6",
"zod-to-json-schema": "^3.18.1"
},
"devDependencies": {
"@backstage/backend-test-utils": "workspace:^",
@@ -18,6 +18,7 @@ import {
AuthorizeResult,
createPermission,
} from '@backstage/plugin-permission-common';
import { z } from 'zod';
import { createConditionExports } from './createConditionExports';
import { createPermissionRule } from './createPermissionRule';
@@ -30,23 +31,28 @@ const testIntegration = () =>
name: 'testRule1',
description: 'Test rule 1',
resourceType: 'test-resource',
apply: jest.fn(
(_resource: any, _firstParam: string, _secondParam: number) => true,
),
toQuery: jest.fn((firstParam: string, secondParam: number) => ({
paramsSchema: z.object({
foo: z.string(),
bar: z.number(),
}),
apply: (_resource: any, _params) => true,
toQuery: params => ({
query: 'testRule1',
params: [firstParam, secondParam],
})),
params,
}),
}),
testRule2: createPermissionRule({
name: 'testRule2',
description: 'Test rule 2',
resourceType: 'test-resource',
apply: jest.fn((_resource: any, _firstParam: object) => false),
toQuery: jest.fn((firstParam: object) => ({
paramsSchema: z.object({
foo: z.string().optional(),
}),
apply: (_resource: any) => false,
toQuery: params => ({
query: 'testRule2',
params: [firstParam],
})),
params,
}),
}),
},
});
@@ -56,16 +62,24 @@ describe('createConditionExports', () => {
it('creates condition factories for the supplied rules', () => {
const { conditions } = testIntegration();
expect(conditions.testRule1('a', 1)).toEqual({
expect(
conditions.testRule1({
foo: 'a',
bar: 1,
}),
).toEqual({
rule: 'testRule1',
resourceType: 'test-resource',
params: ['a', 1],
params: {
foo: 'a',
bar: 1,
},
});
expect(conditions.testRule2({ baz: 'quux' })).toEqual({
expect(conditions.testRule2({})).toEqual({
rule: 'testRule2',
resourceType: 'test-resource',
params: [{ baz: 'quux' }],
params: {},
});
});
});
@@ -85,7 +99,10 @@ describe('createConditionExports', () => {
{
rule: 'testRule1',
resourceType: 'test-resource',
params: ['a', 1],
params: {
foo: 'a',
bar: 1,
},
},
],
}),
@@ -98,7 +115,10 @@ describe('createConditionExports', () => {
{
rule: 'testRule1',
resourceType: 'test-resource',
params: ['a', 1],
params: {
foo: 'a',
bar: 1,
},
},
],
},
@@ -36,7 +36,9 @@ export type Condition<TRule> = TRule extends PermissionRule<
infer TResourceType,
infer TParams
>
? (...params: TParams) => PermissionCondition<TResourceType, TParams>
? undefined extends TParams
? () => PermissionCondition<TResourceType, TParams>
: (params: TParams) => PermissionCondition<TResourceType, TParams>
: never;
/**
@@ -14,6 +14,7 @@
* limitations under the License.
*/
import { z } from 'zod';
import { createConditionFactory } from './createConditionFactory';
import { createPermissionRule } from './createPermissionRule';
@@ -22,8 +23,11 @@ describe('createConditionFactory', () => {
name: 'test-rule',
description: 'test-description',
resourceType: 'test-resource',
apply: jest.fn(),
toQuery: jest.fn(),
paramsSchema: z.object({
foo: z.string(),
}),
apply: (_resource, _params) => true,
toQuery: _params => ({}),
});
it('returns a function', () => {
@@ -33,10 +37,17 @@ describe('createConditionFactory', () => {
describe('return value', () => {
it('constructs a condition with the rule name and supplied params', () => {
const conditionFactory = createConditionFactory(testRule);
expect(conditionFactory('a', 'b', 1, 2)).toEqual({
expect(
conditionFactory({
foo: 'bar',
}),
).toEqual({
rule: 'test-rule',
resourceType: 'test-resource',
params: ['a', 'b', 1, 2],
params: {
foo: 'bar',
},
});
});
});
@@ -14,7 +14,10 @@
* limitations under the License.
*/
import { PermissionCondition } from '@backstage/plugin-permission-common';
import {
PermissionCondition,
PermissionRuleParams,
} from '@backstage/plugin-permission-common';
import { PermissionRule } from '../types';
/**
@@ -33,12 +36,17 @@ import { PermissionRule } from '../types';
*
* @public
*/
export const createConditionFactory =
<TResourceType extends string, TParams extends any[]>(
rule: PermissionRule<unknown, unknown, TResourceType, TParams>,
) =>
(...params: TParams): PermissionCondition<TResourceType, TParams> => ({
rule: rule.name,
resourceType: rule.resourceType,
params,
});
export const createConditionFactory = <
TResourceType extends string,
TParams extends PermissionRuleParams = PermissionRuleParams,
>(
rule: PermissionRule<unknown, unknown, TResourceType, TParams>,
) => {
return (params: TParams): PermissionCondition<TResourceType, TParams> => {
return {
rule: rule.name,
resourceType: rule.resourceType,
params,
};
};
};
@@ -18,6 +18,7 @@ import {
PermissionCondition,
PermissionCriteria,
} from '@backstage/plugin-permission-common';
import { z } from 'zod';
import { createConditionTransformer } from './createConditionTransformer';
import { createPermissionRule } from './createPermissionRule';
@@ -26,20 +27,22 @@ const transformConditions = createConditionTransformer([
name: 'test-rule-1',
description: 'Test rule 1',
resourceType: 'test-resource',
paramsSchema: z.object({
foo: z.string(),
bar: z.number(),
}),
apply: jest.fn(),
toQuery: jest.fn(
(firstParam: string, secondParam: number) =>
`test-rule-1:${firstParam}/${secondParam}`,
),
toQuery: jest.fn(({ foo, bar }) => `test-rule-1:${foo}/${bar}`),
}),
createPermissionRule({
name: 'test-rule-2',
description: 'Test rule 2',
resourceType: 'test-resource',
paramsSchema: z.object({
foo: z.string(),
}),
apply: jest.fn(),
toQuery: jest.fn(
(firstParam: object) => `test-rule-2:${JSON.stringify(firstParam)}`,
),
toQuery: jest.fn(({ foo }) => `test-rule-2:${foo}`),
}),
]);
@@ -52,7 +55,10 @@ describe('createConditionTransformer', () => {
conditions: {
rule: 'test-rule-1',
resourceType: 'test-resource',
params: ['abc', 123],
params: {
foo: 'abc',
bar: 123,
},
},
expectedResult: 'test-rule-1:abc/123',
},
@@ -60,9 +66,11 @@ describe('createConditionTransformer', () => {
conditions: {
rule: 'test-rule-2',
resourceType: 'test-resource',
params: [{ foo: 0 }],
params: {
foo: '0',
},
},
expectedResult: 'test-rule-2:{"foo":0}',
expectedResult: 'test-rule-2:0',
},
{
conditions: {
@@ -70,13 +78,22 @@ describe('createConditionTransformer', () => {
{
rule: 'test-rule-1',
resourceType: 'test-resource',
params: ['a', 1],
params: {
foo: 'a',
bar: 1,
},
},
{
rule: 'test-rule-2',
resourceType: 'test-resource',
params: {
foo: 'b',
},
},
{ rule: 'test-rule-2', resourceType: 'test-resource', params: [{}] },
],
},
expectedResult: {
anyOf: ['test-rule-1:a/1', 'test-rule-2:{}'],
anyOf: ['test-rule-1:a/1', 'test-rule-2:b'],
},
},
{
@@ -85,13 +102,22 @@ describe('createConditionTransformer', () => {
{
rule: 'test-rule-1',
resourceType: 'test-resource',
params: ['a', 1],
params: {
foo: 'a',
bar: 1,
},
},
{
rule: 'test-rule-2',
resourceType: 'test-resource',
params: {
foo: 'b',
},
},
{ rule: 'test-rule-2', resourceType: 'test-resource', params: [{}] },
],
},
expectedResult: {
allOf: ['test-rule-1:a/1', 'test-rule-2:{}'],
allOf: ['test-rule-1:a/1', 'test-rule-2:b'],
},
},
{
@@ -99,11 +125,13 @@ describe('createConditionTransformer', () => {
not: {
rule: 'test-rule-2',
resourceType: 'test-resource',
params: [{}],
params: {
foo: 'a',
},
},
},
expectedResult: {
not: 'test-rule-2:{}',
not: 'test-rule-2:a',
},
},
{
@@ -114,12 +142,17 @@ describe('createConditionTransformer', () => {
{
rule: 'test-rule-1',
resourceType: 'test-resource',
params: ['a', 1],
params: {
foo: 'a',
bar: 1,
},
},
{
rule: 'test-rule-2',
resourceType: 'test-resource',
params: [{}],
params: {
foo: 'b',
},
},
],
},
@@ -129,61 +162,16 @@ describe('createConditionTransformer', () => {
{
rule: 'test-rule-1',
resourceType: 'test-resource',
params: ['b', 2],
params: {
foo: 'b',
bar: 2,
},
},
{
rule: 'test-rule-2',
resourceType: 'test-resource',
params: [{ c: 3 }],
},
],
},
},
],
},
expectedResult: {
allOf: [
{
anyOf: ['test-rule-1:a/1', 'test-rule-2:{}'],
},
{
not: {
allOf: ['test-rule-1:b/2', 'test-rule-2:{"c":3}'],
},
},
],
},
},
{
conditions: {
allOf: [
{
anyOf: [
{
rule: 'test-rule-1',
resourceType: 'test-resource',
params: ['a', 1],
},
{
rule: 'test-rule-2',
resourceType: 'test-resource',
params: [{ b: 2 }],
},
],
},
{
not: {
allOf: [
{
rule: 'test-rule-1',
resourceType: 'test-resource',
params: ['c', 3],
},
{
not: {
rule: 'test-rule-2',
resourceType: 'test-resource',
params: [{ d: 4 }],
params: {
foo: 'c',
},
},
],
@@ -194,11 +182,71 @@ describe('createConditionTransformer', () => {
expectedResult: {
allOf: [
{
anyOf: ['test-rule-1:a/1', 'test-rule-2:{"b":2}'],
anyOf: ['test-rule-1:a/1', 'test-rule-2:b'],
},
{
not: {
allOf: ['test-rule-1:c/3', { not: 'test-rule-2:{"d":4}' }],
allOf: ['test-rule-1:b/2', 'test-rule-2:c'],
},
},
],
},
},
{
conditions: {
allOf: [
{
anyOf: [
{
rule: 'test-rule-1',
resourceType: 'test-resource',
params: {
foo: 'a',
bar: 1,
},
},
{
rule: 'test-rule-2',
resourceType: 'test-resource',
params: {
foo: 'b',
},
},
],
},
{
not: {
allOf: [
{
rule: 'test-rule-1',
resourceType: 'test-resource',
params: {
foo: 'c',
bar: 3,
},
},
{
not: {
rule: 'test-rule-2',
resourceType: 'test-resource',
params: {
foo: 'd',
},
},
},
],
},
},
],
},
expectedResult: {
allOf: [
{
anyOf: ['test-rule-1:a/1', 'test-rule-2:b'],
},
{
not: {
allOf: ['test-rule-1:c/3', { not: 'test-rule-2:d' }],
},
},
],
@@ -13,6 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { InputError } from '@backstage/errors';
import {
AllOfCriteria,
AnyOfCriteria,
@@ -45,7 +46,14 @@ const mapConditions = <TQuery>(
};
}
return getRule(criteria.rule).toQuery(...criteria.params);
const rule = getRule(criteria.rule);
const result = rule.paramsSchema?.safeParse(criteria.params);
if (result && !result.success) {
throw new InputError(`Parameters to rule are invalid`, result.error);
}
return rule.toQuery(criteria.params ?? {});
};
/**
@@ -21,6 +21,7 @@ import {
} from '@backstage/plugin-permission-common';
import express, { Express, Router } from 'express';
import request, { Response } from 'supertest';
import { z } from 'zod';
import { createPermissionIntegrationRouter } from './createPermissionIntegrationRouter';
import { createPermissionRule } from './createPermissionRule';
@@ -39,16 +40,20 @@ const testRule1 = createPermissionRule({
name: 'test-rule-1',
description: 'Test rule 1',
resourceType: 'test-resource',
apply: (_resource: any, _firstParam: string, _secondParam: number) => true,
toQuery: (_firstParam: string, _secondParam: number) => ({}),
paramsSchema: z.object({
foo: z.string(),
bar: z.number().describe('bar'),
}),
apply: (_resource: any, _params) => true,
toQuery: _params => ({}),
});
const testRule2 = createPermissionRule({
name: 'test-rule-2',
description: 'Test rule 2',
resourceType: 'test-resource',
apply: (_resource: any, _firstParam: object) => false,
toQuery: (_firstParam: object) => ({}),
apply: (_resource: any) => false,
toQuery: () => ({}),
});
describe('createPermissionIntegrationRouter', () => {
@@ -79,23 +84,31 @@ describe('createPermissionIntegrationRouter', () => {
{
rule: 'test-rule-1',
resourceType: 'test-resource',
params: ['abc', 123],
params: {
foo: 'abc',
bar: 123,
},
},
{
anyOf: [
{
rule: 'test-rule-1',
resourceType: 'test-resource',
params: ['a', 1],
params: {
foo: 'a',
bar: 1,
},
},
{
rule: 'test-rule-2',
resourceType: 'test-resource',
},
{ rule: 'test-rule-2', resourceType: 'test-resource', params: [{}] },
],
},
{
not: {
rule: 'test-rule-2',
resourceType: 'test-resource',
params: [{}],
},
},
{
@@ -105,12 +118,14 @@ describe('createPermissionIntegrationRouter', () => {
{
rule: 'test-rule-1',
resourceType: 'test-resource',
params: ['a', 1],
params: {
foo: 'a',
bar: 1,
},
},
{
rule: 'test-rule-2',
resourceType: 'test-resource',
params: [{}],
},
],
},
@@ -120,12 +135,14 @@ describe('createPermissionIntegrationRouter', () => {
{
rule: 'test-rule-1',
resourceType: 'test-resource',
params: ['b', 2],
params: {
foo: 'b',
bar: 2,
},
},
{
rule: 'test-rule-2',
resourceType: 'test-resource',
params: [{ c: 3 }],
},
],
},
@@ -161,16 +178,21 @@ describe('createPermissionIntegrationRouter', () => {
{
rule: 'test-rule-2',
resourceType: 'test-resource',
params: [{ foo: 0 }],
},
{
allOf: [
{
rule: 'test-rule-1',
resourceType: 'test-resource',
params: ['a', 1],
params: {
foo: 'a',
bar: 1,
},
},
{
rule: 'test-rule-2',
resourceType: 'test-resource',
},
{ rule: 'test-rule-2', resourceType: 'test-resource', params: [{}] },
],
},
{
@@ -180,12 +202,14 @@ describe('createPermissionIntegrationRouter', () => {
{
rule: 'test-rule-1',
resourceType: 'test-resource',
params: ['a', 1],
params: {
foo: 'a',
bar: 1,
},
},
{
rule: 'test-rule-2',
resourceType: 'test-resource',
params: [{ b: 2 }],
},
],
},
@@ -195,13 +219,15 @@ describe('createPermissionIntegrationRouter', () => {
{
rule: 'test-rule-1',
resourceType: 'test-resource',
params: ['c', 3],
params: {
foo: 'c',
bar: 3,
},
},
{
not: {
rule: 'test-rule-2',
resourceType: 'test-resource',
params: [{ d: 4 }],
},
},
],
@@ -247,7 +273,10 @@ describe('createPermissionIntegrationRouter', () => {
conditions: {
rule: 'test-rule-1',
resourceType: 'test-resource',
params: [],
params: {
foo: 'a',
bar: 1,
},
},
},
{
@@ -257,7 +286,6 @@ describe('createPermissionIntegrationRouter', () => {
conditions: {
rule: 'test-rule-2',
resourceType: 'test-resource',
params: [],
},
},
{
@@ -268,7 +296,10 @@ describe('createPermissionIntegrationRouter', () => {
not: {
rule: 'test-rule-1',
resourceType: 'test-resource',
params: [],
params: {
foo: 'a',
bar: 1,
},
},
},
},
@@ -280,7 +311,6 @@ describe('createPermissionIntegrationRouter', () => {
not: {
rule: 'test-rule-2',
resourceType: 'test-resource',
params: [],
},
},
},
@@ -293,12 +323,14 @@ describe('createPermissionIntegrationRouter', () => {
{
rule: 'test-rule-1',
resourceType: 'test-resource',
params: [],
params: {
foo: 'a',
bar: 1,
},
},
{
rule: 'test-rule-2',
resourceType: 'test-resource',
params: [],
},
],
},
@@ -342,7 +374,9 @@ describe('createPermissionIntegrationRouter', () => {
conditions: {
rule: 'test-rule-1',
resourceType: 'test-incorrect-resource-1',
params: [{}],
params: {
foo: {},
},
},
},
{
@@ -352,7 +386,9 @@ describe('createPermissionIntegrationRouter', () => {
conditions: {
rule: 'test-rule-1',
resourceType: 'test-resource',
params: [{}],
params: {
foo: {},
},
},
},
{
@@ -362,7 +398,9 @@ describe('createPermissionIntegrationRouter', () => {
conditions: {
rule: 'test-rule-1',
resourceType: 'test-incorrect-resource-2',
params: [{}],
params: {
foo: {},
},
},
},
],
@@ -390,7 +428,7 @@ describe('createPermissionIntegrationRouter', () => {
conditions: {
rule: 'test-rule-1',
resourceType: 'test-resource',
params: [],
params: {},
},
},
],
@@ -427,7 +465,10 @@ describe('createPermissionIntegrationRouter', () => {
conditions: {
rule: 'test-rule-1',
resourceType: 'test-resource',
params: [],
params: {
foo: 'a',
bar: 1,
},
},
},
{
@@ -437,7 +478,10 @@ describe('createPermissionIntegrationRouter', () => {
conditions: {
rule: 'test-rule-1',
resourceType: 'test-resource',
params: [],
params: {
foo: 'a',
bar: 1,
},
},
},
{
@@ -447,7 +491,10 @@ describe('createPermissionIntegrationRouter', () => {
conditions: {
rule: 'test-rule-1',
resourceType: 'test-resource',
params: [],
params: {
foo: 'a',
bar: 1,
},
},
},
],
@@ -524,13 +571,32 @@ describe('createPermissionIntegrationRouter', () => {
name: testRule1.name,
description: testRule1.description,
resourceType: testRule1.resourceType,
parameters: { count: 2 },
paramsSchema: {
$schema: 'http://json-schema.org/draft-07/schema#',
additionalProperties: false,
properties: {
foo: {
type: 'string',
},
bar: {
description: 'bar',
type: 'number',
},
},
required: ['foo', 'bar'],
type: 'object',
},
},
{
name: testRule2.name,
description: testRule2.description,
resourceType: testRule2.resourceType,
parameters: { count: 1 },
paramsSchema: {
$schema: 'http://json-schema.org/draft-07/schema#',
additionalProperties: false,
properties: {},
type: 'object',
},
},
],
});
@@ -17,6 +17,7 @@
import express, { Response } from 'express';
import Router from 'express-promise-router';
import { z } from 'zod';
import zodToJsonSchema from 'zod-to-json-schema';
import { InputError } from '@backstage/errors';
import { errorHandler } from '@backstage/backend-common';
import {
@@ -29,6 +30,7 @@ import {
} from '@backstage/plugin-permission-common';
import { PermissionRule } from '../types';
import {
NoInfer,
createGetRule,
isAndCriteria,
isNotCriteria,
@@ -45,7 +47,7 @@ const permissionCriteriaSchema: z.ZodSchema<
z.object({
rule: z.string(),
resourceType: z.string(),
params: z.array(z.unknown()),
params: z.record(z.any()).optional(),
}),
]),
);
@@ -124,16 +126,15 @@ const applyConditions = <TResourceType extends string, TResource>(
return !applyConditions(criteria.not, resource, getRule);
}
return getRule(criteria.rule).apply(resource, ...criteria.params);
};
const rule = getRule(criteria.rule);
const result = rule.paramsSchema?.safeParse(criteria.params);
/**
* Prevent use of type parameter from contributing to type inference.
*
* https://github.com/Microsoft/TypeScript/issues/14829#issuecomment-980401795
* @ignore
*/
type NoInfer<T> = T extends infer S ? S : never;
if (result && !result.success) {
throw new InputError(`Parameters to rule are invalid`, result.error);
}
return rule.apply(resource, criteria.params ?? {});
};
/**
* Create an express Router which provides an authorization route to allow
@@ -194,9 +195,7 @@ export const createPermissionIntegrationRouter = <
name: rule.name,
description: rule.description,
resourceType: rule.resourceType,
parameters: {
count: rule.toQuery.length,
},
paramsSchema: zodToJsonSchema(rule.paramsSchema ?? z.object({})),
}));
return res.json({ permissions, rules: serializableRules });
@@ -14,6 +14,7 @@
* limitations under the License.
*/
import { PermissionRuleParams } from '@backstage/plugin-permission-common';
import { PermissionRule } from '../types';
/**
@@ -25,7 +26,7 @@ export const createPermissionRule = <
TResource,
TQuery,
TResourceType extends string,
TParams extends unknown[],
TParams extends PermissionRuleParams = undefined,
>(
rule: PermissionRule<TResource, TQuery, TResourceType, TParams>,
) => rule;
@@ -40,7 +41,7 @@ export const createPermissionRule = <
*/
export const makeCreatePermissionRule =
<TResource, TQuery, TResourceType extends string>() =>
<TParams extends unknown[]>(
<TParams extends PermissionRuleParams = undefined>(
rule: PermissionRule<TResource, TQuery, TResourceType, TParams>,
) =>
createPermissionRule(rule);
@@ -22,6 +22,14 @@ import {
} from '@backstage/plugin-permission-common';
import { PermissionRule } from '../types';
/**
* Prevent use of type parameter from contributing to type inference.
*
* https://github.com/Microsoft/TypeScript/issues/14829#issuecomment-980401795
* @ignore
*/
export type NoInfer<T> = T extends infer S ? S : never;
/**
* Utility function used to parse a PermissionCriteria
* @param criteria - a PermissionCriteria
+14 -4
View File
@@ -14,7 +14,12 @@
* limitations under the License.
*/
import type { PermissionCriteria } from '@backstage/plugin-permission-common';
import type {
PermissionCriteria,
PermissionRuleParams,
} from '@backstage/plugin-permission-common';
import { z } from 'zod';
import { NoInfer } from './integration/util';
/**
* A conditional rule that can be provided in an
@@ -36,23 +41,28 @@ export type PermissionRule<
TResource,
TQuery,
TResourceType extends string,
TParams extends unknown[] = unknown[],
TParams extends PermissionRuleParams = PermissionRuleParams,
> = {
name: string;
description: string;
resourceType: TResourceType;
/**
* A ZodSchema that reflects the structure of the parameters that are passed to
*/
paramsSchema?: z.ZodSchema<TParams>;
/**
* Apply this rule to a resource already loaded from a backing data source. The params are
* arguments supplied for the rule; for example, a rule could be `isOwner` with entityRefs as the
* params.
*/
apply(resource: TResource, ...params: TParams): boolean;
apply(resource: TResource, params: NoInfer<TParams>): boolean;
/**
* Translate this rule to criteria suitable for use in querying a backing data store. The criteria
* can be used for loading a collection of resources efficiently with conditional criteria already
* applied.
*/
toQuery(...params: TParams): PermissionCriteria<TQuery>;
toQuery(params: NoInfer<TParams>): PermissionCriteria<TQuery>;
};
+6 -3
View File
@@ -15,6 +15,7 @@ import { PermissionCriteria } from '@backstage/plugin-permission-common';
import { PermissionEvaluator } from '@backstage/plugin-permission-common';
import { PermissionPolicy } from '@backstage/plugin-permission-node';
import { PermissionRule } from '@backstage/plugin-permission-node';
import { PermissionRuleParams } from '@backstage/plugin-permission-common';
import { PlaylistMetadata } from '@backstage/plugin-playlist-common';
import { PluginDatabaseManager } from '@backstage/backend-common';
import { PluginEndpointDiscovery } from '@backstage/backend-common';
@@ -26,7 +27,7 @@ import { ResourcePermission } from '@backstage/plugin-permission-common';
export const createPlaylistConditionalDecision: (
permission: ResourcePermission<'playlist-list'>,
conditions: PermissionCriteria<
PermissionCondition<'playlist-list', unknown[]>
PermissionCondition<'playlist-list', PermissionRuleParams>
>,
) => ConditionalPolicyDecision;
@@ -70,13 +71,15 @@ export const playlistConditions: Conditions<{
PlaylistMetadata,
ListPlaylistsFilter,
'playlist-list',
[userOwnershipRefs: string[]]
{
owners: string[];
}
>;
isPublic: PermissionRule<
PlaylistMetadata,
ListPlaylistsFilter,
'playlist-list',
[]
undefined
>;
}>;
+2 -1
View File
@@ -39,7 +39,8 @@
"node-fetch": "^2.6.7",
"uuid": "^8.2.0",
"winston": "^3.2.1",
"yn": "^4.0.0"
"yn": "^4.0.0",
"zod": "^3.11.6"
},
"devDependencies": {
"@backstage/cli": "workspace:^",
@@ -67,10 +67,9 @@ describe('DefaultPlaylistPermissionPolicy', () => {
resourceType: PLAYLIST_LIST_RESOURCE_TYPE,
conditions: {
anyOf: [
playlistConditions.isOwner([
'user:default/me',
'group:default/owner',
]),
playlistConditions.isOwner({
owners: ['user:default/me', 'group:default/owner'],
}),
playlistConditions.isPublic(),
],
},
@@ -89,10 +88,9 @@ describe('DefaultPlaylistPermissionPolicy', () => {
resourceType: PLAYLIST_LIST_RESOURCE_TYPE,
conditions: {
anyOf: [
playlistConditions.isOwner([
'user:default/me',
'group:default/owner',
]),
playlistConditions.isOwner({
owners: ['user:default/me', 'group:default/owner'],
}),
playlistConditions.isPublic(),
],
},
@@ -109,10 +107,9 @@ describe('DefaultPlaylistPermissionPolicy', () => {
result: AuthorizeResult.CONDITIONAL,
pluginId: 'playlist',
resourceType: PLAYLIST_LIST_RESOURCE_TYPE,
conditions: playlistConditions.isOwner([
'user:default/me',
'group:default/owner',
]),
conditions: playlistConditions.isOwner({
owners: ['user:default/me', 'group:default/owner'],
}),
});
});
@@ -126,10 +123,9 @@ describe('DefaultPlaylistPermissionPolicy', () => {
result: AuthorizeResult.CONDITIONAL,
pluginId: 'playlist',
resourceType: PLAYLIST_LIST_RESOURCE_TYPE,
conditions: playlistConditions.isOwner([
'user:default/me',
'group:default/owner',
]),
conditions: playlistConditions.isOwner({
owners: ['user:default/me', 'group:default/owner'],
}),
});
});
});
@@ -68,7 +68,9 @@ export class DefaultPlaylistPermissionPolicy implements PermissionPolicy {
) {
return createPlaylistConditionalDecision(request.permission, {
anyOf: [
playlistConditions.isOwner(user?.identity.ownershipEntityRefs ?? []),
playlistConditions.isOwner({
owners: user?.identity.ownershipEntityRefs ?? [],
}),
playlistConditions.isPublic(),
],
});
@@ -81,7 +83,9 @@ export class DefaultPlaylistPermissionPolicy implements PermissionPolicy {
) {
return createPlaylistConditionalDecision(
request.permission,
playlistConditions.isOwner(user?.identity.ownershipEntityRefs ?? []),
playlistConditions.isOwner({
owners: user?.identity.ownershipEntityRefs ?? [],
}),
);
}
@@ -19,6 +19,7 @@ import {
PLAYLIST_LIST_RESOURCE_TYPE,
PlaylistMetadata,
} from '@backstage/plugin-playlist-common';
import { z } from 'zod';
import { ListPlaylistsFilter } from '../service';
@@ -32,11 +33,13 @@ const isOwner = createPlaylistPermissionRule({
name: 'IS_OWNER',
description: 'Should allow only if the playlist belongs to the user',
resourceType: PLAYLIST_LIST_RESOURCE_TYPE,
apply: (list: PlaylistMetadata, userOwnershipRefs: string[]) =>
userOwnershipRefs.includes(list.owner),
toQuery: (userOwnershipRefs: string[]) => ({
paramsSchema: z.object({
owners: z.array(z.string()).describe('List of owner entity refs'),
}),
apply: (list: PlaylistMetadata, { owners }) => owners.includes(list.owner),
toQuery: ({ owners }) => ({
key: 'owner',
values: userOwnershipRefs,
values: owners,
}),
});