User Registration Guard

User Registration Guard

Let's you flexibly customize if and how you prevent users from registering with your Vendure instance. For example, reduce fraud by blocking disposable email providers or IP ranges from registering with your Vendure instance or harden your admin accounts by only allowing specific domains in email addresses.

npm install @danielbiegler/vendure-plugin-user-registration-guard
Latest version1.0.0
Compatibility>=3.0.0
Last publishedMay 2, 2025
Vendure Community
Vendure CommunityOpen source plugins by the Vendure community

Banner Image

Let's you flexibly customize if and how you prevent users from registering with your Vendure instance.

For example, reduce fraud by blocking disposable email providers or IP ranges from registering with your Vendure instance or harden your admin accounts by only allowing specific domains in email addresses.

npm version badge

Features

  • Let's you create arbitrarily complex assertions for Customer registrations and Administrator creations
  • Logical operators (AND, OR) for when you have multiple checks
  • Publishes a BlockedCustomerRegistrationEvent or BlockedCreateAdministratorEvent on the EventBus for your consumption, for example if you'd like to monitor failed attempts
  • Works via Nestjs Interceptor and does not(!) override the existing mutation APIs (registerCustomerAccount, createAdministrator), which makes this plugin integrate seamlessly with your own resolver overrides
    • Also supports TypeScript Generics so you can use your own extended types!
    • Also let's you inject providers into your assertions i.e. use Vendure's or your own custom services
  • Nicely commented and documented
  • No dependencies

End-To-End Tests

✓ user-registration-guard/e2e/email.e2e-spec.ts (4) ✓ user-registration-guard/e2e/events.e2e-spec.ts (4) ✓ user-registration-guard/e2e/injector.e2e-spec.ts (2) ✓ user-registration-guard/e2e/ip.e2e-spec.ts (2) ✓ user-registration-guard/e2e/logical-and_fail.e2e-spec.ts (2) ✓ user-registration-guard/e2e/logical-and_ok.e2e-spec.ts (2) ✓ user-registration-guard/e2e/logical-or_fail.e2e-spec.ts (2) ✓ user-registration-guard/e2e/logical-or_ok.e2e-spec.ts (2) ✓ user-registration-guard/e2e/reject.e2e-spec.ts (2) Test Files 9 passed (9) Tests 22 passed (22)

How To: Usage

The plugin does not extend the API, has no dependencies and requires no migration.

1. Add the plugin to your Vendure Config

You can find the package over on npm and install it via:

Please refer to the specific docs for how and what you can customize.

2. Create an assertion

Here's an example assertion where we block customer registrations if the email ends with example.com:

The reason field is helpful for when you're subscribing to the published events and want to log or understand why somebody got blocked.

In your assertions, see the types, you'll receive these arguments:

For example, if you'd like to block IP ranges you can access the underlying Express Request object through the RequestContext .

If you'd like to delegate the decision to a service you may inject it like so:

If you've extended your GraphQL API types you may override the TypeScript Generic to get completions in your assertion functions like so:

3. Add it to the plugin

4. Try registering new customers

This user will now be blocked from registering according to our blockExampleDotCom assertion.

Handling errors

The plugin is non-intrusive and does not extend the API itself to avoid introducing unhandled errors in your code.

It respects RegisterCustomerAccountResult being a Union, so we don't throw an error, but return a NativeAuthStrategyError. You may handle the error just like the other RegisterCustomerAccountResult types like PasswordValidationError for example.

In contrast, for admins we do throw the error! This is a little different because by default the createAdministrator mutation does not return a Union with error types.

Granted, the NativeAuthStrategyError is technically not correct for blocking registrations and doesn't communicate the blocking properly, but it's the only reasonable error type in the Union for a default non-api-extended Vendure instance. You might want to add some comments in your registration logic that the error means blockage.

5. Subscribe to events

You may want to subscribe to the EventBus to monitor blocked registration attempts.


Credits