identity: add support for disabling new signups

This commit is contained in:
Abdullah Atta
2024-08-01 10:32:51 +05:00
parent ad590f6011
commit cbd0c01d28
2 changed files with 3 additions and 1 deletions

View File

@@ -24,6 +24,7 @@ namespace Streetwriters.Common
public class Constants
{
public static bool IS_SELF_HOSTED => Environment.GetEnvironmentVariable("SELF_HOSTED") == "1";
public static bool DISABLE_ACCOUNT_CREATION => Environment.GetEnvironmentVariable("DISABLE_ACCOUNT_CREATION") == "1";
// S3 related
public static string S3_ACCESS_KEY => Environment.GetEnvironmentVariable("S3_ACCESS_KEY");

View File

@@ -53,6 +53,8 @@ namespace Streetwriters.Identity.Controllers
[AllowAnonymous]
public async Task<IActionResult> Signup([FromForm] SignupForm form)
{
if (Constants.DISABLE_ACCOUNT_CREATION)
return BadRequest(new string[] { "Creating new accounts is not allowed." });
try
{
var client = Clients.FindClientById(form.ClientId);
@@ -106,7 +108,6 @@ namespace Streetwriters.Identity.Controllers
if (Constants.IS_SELF_HOSTED)
{
await UserManager.AddClaimAsync(user, UserService.SubscriptionTypeToClaim(client.Id, Common.Enums.SubscriptionType.PREMIUM));
await MFAService.EnableMFAAsync(user, MFAMethods.Email);
}
else
{