mirror of
https://github.com/outline/outline.git
synced 2026-01-07 19:49:58 -06:00
This PR moves the entire project to Typescript. Due to the ~1000 ignores this will lead to a messy codebase for a while, but the churn is worth it – all of those ignore comments are places that were never type-safe previously. closes #1282
147 lines
3.6 KiB
TypeScript
147 lines
3.6 KiB
TypeScript
import httpErrors from "http-errors";
|
|
import env from "./env";
|
|
|
|
export function AuthenticationError(
|
|
message = "Invalid authentication",
|
|
// @ts-expect-error ts-migrate(2322) FIXME: Type 'string | undefined' is not assignable to typ... Remove this comment to see the full error message
|
|
redirectUrl: string = env.URL
|
|
) {
|
|
return httpErrors(401, message, {
|
|
redirectUrl,
|
|
id: "authentication_required",
|
|
});
|
|
}
|
|
|
|
export function AuthorizationError(
|
|
message = "You do not have permission to access this resource"
|
|
) {
|
|
return httpErrors(403, message, {
|
|
id: "permission_required",
|
|
});
|
|
}
|
|
|
|
export function AdminRequiredError(
|
|
message = "An admin role is required to access this resource"
|
|
) {
|
|
return httpErrors(403, message, {
|
|
id: "admin_required",
|
|
});
|
|
}
|
|
|
|
export function UserSuspendedError({ adminEmail }: { adminEmail: string }) {
|
|
return httpErrors(403, "Your access has been suspended by the team admin", {
|
|
id: "user_suspended",
|
|
errorData: {
|
|
adminEmail,
|
|
},
|
|
});
|
|
}
|
|
|
|
export function InvalidRequestError(message = "Request invalid") {
|
|
return httpErrors(400, message, {
|
|
id: "invalid_request",
|
|
});
|
|
}
|
|
|
|
export function NotFoundError(message = "Resource not found") {
|
|
return httpErrors(404, message, {
|
|
id: "not_found",
|
|
});
|
|
}
|
|
|
|
export function ParamRequiredError(message = "Required parameter missing") {
|
|
return httpErrors(400, message, {
|
|
id: "param_required",
|
|
});
|
|
}
|
|
|
|
export function ValidationError(message = "Validation failed") {
|
|
return httpErrors(400, message, {
|
|
id: "validation_error",
|
|
});
|
|
}
|
|
|
|
export function EditorUpdateError(
|
|
message = "The client editor is out of date and must be reloaded"
|
|
) {
|
|
return httpErrors(400, message, {
|
|
id: "editor_update_required",
|
|
});
|
|
}
|
|
|
|
export function FileImportError(message = "The file could not be imported") {
|
|
return httpErrors(400, message, {
|
|
id: "import_error",
|
|
});
|
|
}
|
|
|
|
export function OAuthStateMismatchError(
|
|
message = "State returned in OAuth flow did not match"
|
|
) {
|
|
return httpErrors(400, message, {
|
|
id: "state_mismatch",
|
|
});
|
|
}
|
|
|
|
export function MaximumTeamsError(
|
|
message = "The maximum number of teams has been reached"
|
|
) {
|
|
return httpErrors(400, message, {
|
|
id: "maximum_teams",
|
|
});
|
|
}
|
|
|
|
export function EmailAuthenticationRequiredError(
|
|
message = "User must authenticate with email",
|
|
// @ts-expect-error ts-migrate(2322) FIXME: Type 'string | undefined' is not assignable to typ... Remove this comment to see the full error message
|
|
redirectUrl: string = env.URL
|
|
) {
|
|
return httpErrors(400, message, {
|
|
redirectUrl,
|
|
id: "email_auth_required",
|
|
});
|
|
}
|
|
|
|
export function MicrosoftGraphError(
|
|
message = "Microsoft Graph API did not return required fields"
|
|
) {
|
|
return httpErrors(400, message, {
|
|
id: "graph_error",
|
|
});
|
|
}
|
|
|
|
export function GoogleWorkspaceRequiredError(
|
|
message = "Google Workspace is required to authenticate"
|
|
) {
|
|
return httpErrors(400, message, {
|
|
id: "google_hd",
|
|
});
|
|
}
|
|
|
|
export function GoogleWorkspaceInvalidError(
|
|
message = "Google Workspace is invalid"
|
|
) {
|
|
return httpErrors(400, message, {
|
|
id: "hd_not_allowed",
|
|
});
|
|
}
|
|
|
|
export function OIDCMalformedUserInfoError(
|
|
message = "User profile information malformed"
|
|
) {
|
|
return httpErrors(400, message, {
|
|
id: "malformed_user_info",
|
|
});
|
|
}
|
|
|
|
export function AuthenticationProviderDisabledError(
|
|
message = "Authentication method has been disabled by an admin",
|
|
// @ts-expect-error ts-migrate(2322) FIXME: Type 'string | undefined' is not assignable to typ... Remove this comment to see the full error message
|
|
redirectUrl: string = env.URL
|
|
) {
|
|
return httpErrors(400, message, {
|
|
redirectUrl,
|
|
id: "authentication_provider_disabled",
|
|
});
|
|
}
|