mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 16:23:06 +10:00
Allow organisations to manage an SSO OIDC compliant portal. This method is intended to streamline the onboarding process and paves the way to allow organisations to manage their members in a more strict way.
95 lines
2.5 KiB
TypeScript
95 lines
2.5 KiB
TypeScript
import { IS_BILLING_ENABLED } from '@documenso/lib/constants/app';
|
|
import { DOCUMENSO_ENCRYPTION_KEY } from '@documenso/lib/constants/crypto';
|
|
import { AppError, AppErrorCode } from '@documenso/lib/errors/app-error';
|
|
import { symmetricDecrypt } from '@documenso/lib/universal/crypto';
|
|
import { formatOrganisationCallbackUrl } from '@documenso/lib/utils/organisation-authentication-portal';
|
|
import { prisma } from '@documenso/prisma';
|
|
|
|
type GetOrganisationAuthenticationPortalOptions =
|
|
| {
|
|
type: 'url';
|
|
organisationUrl: string;
|
|
}
|
|
| {
|
|
type: 'id';
|
|
organisationId: string;
|
|
};
|
|
|
|
export const getOrganisationAuthenticationPortalOptions = async (
|
|
options: GetOrganisationAuthenticationPortalOptions,
|
|
) => {
|
|
const organisation = await prisma.organisation.findFirst({
|
|
where:
|
|
options.type === 'url'
|
|
? {
|
|
url: options.organisationUrl,
|
|
}
|
|
: {
|
|
id: options.organisationId,
|
|
},
|
|
include: {
|
|
organisationClaim: true,
|
|
organisationAuthenticationPortal: true,
|
|
groups: true,
|
|
},
|
|
});
|
|
|
|
if (!organisation) {
|
|
throw new AppError(AppErrorCode.NOT_FOUND, {
|
|
message: 'Organisation not found',
|
|
});
|
|
}
|
|
|
|
if (!IS_BILLING_ENABLED()) {
|
|
throw new AppError(AppErrorCode.NOT_SETUP, {
|
|
message: 'Billing is not enabled',
|
|
});
|
|
}
|
|
|
|
if (
|
|
!organisation.organisationClaim.flags.authenticationPortal ||
|
|
!organisation.organisationAuthenticationPortal.enabled
|
|
) {
|
|
throw new AppError(AppErrorCode.NOT_SETUP, {
|
|
message: 'Authentication portal is not enabled for this organisation',
|
|
});
|
|
}
|
|
|
|
const {
|
|
clientId,
|
|
clientSecret: encryptedClientSecret,
|
|
wellKnownUrl,
|
|
} = organisation.organisationAuthenticationPortal;
|
|
|
|
if (!clientId || !encryptedClientSecret || !wellKnownUrl) {
|
|
throw new AppError(AppErrorCode.NOT_SETUP, {
|
|
message: 'Authentication portal is not configured for this organisation',
|
|
});
|
|
}
|
|
|
|
if (!DOCUMENSO_ENCRYPTION_KEY) {
|
|
throw new AppError(AppErrorCode.NOT_SETUP, {
|
|
message: 'Encryption key is not set',
|
|
});
|
|
}
|
|
|
|
const clientSecret = Buffer.from(
|
|
symmetricDecrypt({ key: DOCUMENSO_ENCRYPTION_KEY, data: encryptedClientSecret }),
|
|
).toString('utf-8');
|
|
|
|
return {
|
|
organisation,
|
|
clientId,
|
|
clientSecret,
|
|
wellKnownUrl,
|
|
clientOptions: {
|
|
id: organisation.id,
|
|
scope: ['openid', 'email', 'profile'],
|
|
clientId,
|
|
clientSecret,
|
|
redirectUrl: formatOrganisationCallbackUrl(organisation.url),
|
|
wellKnownUrl,
|
|
},
|
|
};
|
|
};
|