Aller au contenu

lib/auth/verify-email

Ce contenu n’est pas encore disponible dans votre langue.

function createEmailVerificationRequest(userId: string): Promise<{
expiresAt: Date;
id: string;
token: string;
userId: string;
}>

Defined in: studiocms/packages/studiocms/src/lib/auth/verify-email.ts:83

Creates an email verification request for a given user.

This function first deletes any existing email verification requests for the user, and then creates a new email verification request using the studioCMS SDK.

string

The unique identifier of the user for whom the email verification request is being created.

Promise<{ expiresAt: Date; id: string; token: string; userId: string; }>

A promise that resolves to the result of the email verification request creation.


function deleteEmailVerificationRequest(id: string): Promise<void>

Defined in: studiocms/packages/studiocms/src/lib/auth/verify-email.ts:70

Deletes an email verification request by its ID.

string

The unique identifier of the email verification request to be deleted.

Promise<void>

A promise that resolves when the email verification request is successfully deleted.


function getEmailVerificationRequest(id: string): Promise<
| null
| {
expiresAt: Date;
id: string;
token: string;
userId: string;
}>

Defined in: studiocms/packages/studiocms/src/lib/auth/verify-email.ts:58

Retrieves an email verification request by its ID.

string

The unique identifier of the email verification request.

Promise< | null | { expiresAt: Date; id: string; token: string; userId: string; }>

A promise that resolves to the email verification request.


function isEmailVerificationEnabled(): Promise<boolean>

Defined in: studiocms/packages/studiocms/src/lib/auth/verify-email.ts:44

Checks if email verification is enabled in the StudioCMS configuration.

This function retrieves the notification settings from the database and returns the value of the emailVerification property. If the settings are not available, it defaults to false.

Promise<boolean>

A promise that resolves to true if email verification is enabled, otherwise false.


function isEmailVerified(user:
| undefined
| CombinedUserData
| UserSessionData): Promise<boolean>

Defined in: studiocms/packages/studiocms/src/lib/auth/verify-email.ts:165

Checks if the user’s email is verified based on various conditions.

The user data which includes email verification status and permissions.

undefined | CombinedUserData | UserSessionData

Promise<boolean>

A promise that resolves to a boolean indicating whether the user’s email is verified.

The function performs the following checks:

  1. If the user is undefined, returns false.
  2. If the mailer is not enabled, returns true.
  3. If email verification is not required in settings, returns true.
  4. If OAuth bypass verification is enabled and the user has OAuth data, returns true.
  5. Based on the user’s rank:
    • ‘owner’: Always returns true.
    • ‘admin’: Returns the user’s email verification status if admin verification is required, otherwise returns true.
    • ‘editor’: Returns the user’s email verification status if editor verification is required, otherwise returns true.
    • Default: Returns the user’s email verification status.

function sendVerificationEmail(userId: string, isOAuth: boolean): Promise<
| undefined
| MailerResponse>

Defined in: studiocms/packages/studiocms/src/lib/auth/verify-email.ts:100

Sends a verification email to the user with the given userId.

string

The ID of the user to send the verification email to.

boolean = false

Optional. Indicates if the user is authenticated via OAuth. Defaults to false.

Promise< | undefined | MailerResponse>

A promise that resolves to the response of the mail sending operation.

Will throw an error if the user is not found, if the verification token creation fails, or if the user does not have an email.