Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add x-tenant-id header to permit.check call #50

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions src/enforcement/enforcer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import { Logger } from 'winston';

import { IPermitConfig } from '../config';
import { CheckConfig, Context, ContextStore } from '../utils/context';
import { AxiosLoggingInterceptor } from '../utils/http-logger';

import { IAction, IResource, IUser, OpaDecisionResult, PolicyDecision } from './interfaces';
import { AxiosLoggingInterceptor } from '../utils/http-logger';

const RESOURCE_DELIMITER = ':';

Expand All @@ -19,12 +19,14 @@ export class PermitError extends Error {
this.name = 'PermitError';
}
}

export class PermitConnectionError extends PermitError {
constructor(message: string) {
super(message);
this.name = 'PermitConnectionError';
}
}

export class PermitPDPStatusError extends PermitError {
constructor(message: string) {
super(message);
Expand Down Expand Up @@ -108,6 +110,7 @@ export class Enforcer implements IEnforcer {
}
});
}

private async checkWithExceptions(
user: IUser | string,
action: IAction,
Expand All @@ -120,7 +123,7 @@ export class Enforcer implements IEnforcer {

const resourceObj = isString(resource) ? Enforcer.resourceFromString(resource) : resource;
const normalizedResource: IResource = this.normalizeResource(resourceObj);

const tenant = resourceObj.tenant || 'default';
const queryContext = this.contextStore.getDerivedContext(context);
const input = {
user: normalizedUser,
Expand All @@ -133,6 +136,7 @@ export class Enforcer implements IEnforcer {
.post<PolicyDecision | OpaDecisionResult>('allowed', input, {
headers: {
Authorization: `Bearer ${this.config.token}`,
'X-Tenant-ID': tenant,
},
timeout: checkTimeout,
})
Expand Down