* layout * Refactor * wip * Quick changes to make this deployable without full management * test
48 lines
1.1 KiB
TypeScript
48 lines
1.1 KiB
TypeScript
import Router from "koa-router";
|
|
import { sortBy } from "lodash";
|
|
import { signin } from "@shared/utils/urlHelpers";
|
|
import { requireDirectory } from "@server/utils/fs";
|
|
|
|
export type AuthenticationProviderConfig = {
|
|
id: string;
|
|
name: string;
|
|
enabled: boolean;
|
|
authUrl: string;
|
|
router: Router;
|
|
};
|
|
|
|
const providers: AuthenticationProviderConfig[] = [];
|
|
|
|
requireDirectory(__dirname).forEach(([module, id]) => {
|
|
// @ts-expect-error ts-migrate(2339) FIXME: Property 'config' does not exist on type 'unknown'... Remove this comment to see the full error message
|
|
const { config, default: router } = module;
|
|
|
|
if (id === "index") {
|
|
return;
|
|
}
|
|
|
|
if (!config) {
|
|
throw new Error(
|
|
`Auth providers must export a 'config' object, missing in ${id}`
|
|
);
|
|
}
|
|
|
|
if (!router || !router.routes) {
|
|
throw new Error(
|
|
`Default export of an auth provider must be a koa-router, missing in ${id}`
|
|
);
|
|
}
|
|
|
|
if (config && config.enabled) {
|
|
providers.push({
|
|
id,
|
|
name: config.name,
|
|
enabled: config.enabled,
|
|
authUrl: signin(id),
|
|
router,
|
|
});
|
|
}
|
|
});
|
|
|
|
export default sortBy(providers, "id");
|