public static ClothMarketUserManager Create(IdentityFactoryOptions <ClothMarketUserManager> options, IOwinContext context) { var manager = new ClothMarketUserManager(new UserStore <ClothMarketUser>(context.Get <ClothMarketContext>())); // Configure validation logic for usernames manager.UserValidator = new UserValidator <ClothMarketUser>(manager) { AllowOnlyAlphanumericUserNames = false, RequireUniqueEmail = true }; // Configure validation logic for passwords manager.PasswordValidator = new PasswordValidator { RequiredLength = 6, RequireNonLetterOrDigit = false, RequireDigit = false, RequireLowercase = false, RequireUppercase = false, }; // Configure user lockout defaults manager.UserLockoutEnabledByDefault = true; manager.DefaultAccountLockoutTimeSpan = TimeSpan.FromMinutes(5); manager.MaxFailedAccessAttemptsBeforeLockout = 5; // Register two factor authentication providers. This application uses Phone and Emails as a step of receiving a code for verifying the user // You can write your own provider and plug it in here. manager.RegisterTwoFactorProvider("Phone Code", new PhoneNumberTokenProvider <ClothMarketUser> { MessageFormat = "Your security code is {0}" }); manager.RegisterTwoFactorProvider("Email Code", new EmailTokenProvider <ClothMarketUser> { Subject = "Security Code", BodyFormat = "Your security code is {0}" }); //manager.EmailService = new EmailService(); //manager.SmsService = new SmsService(); var dataProtectionProvider = options.DataProtectionProvider; if (dataProtectionProvider != null) { manager.UserTokenProvider = new DataProtectorTokenProvider <ClothMarketUser>(dataProtectionProvider.Create("ASP.NET Identity")); } return(manager); }
public ClothMarketSignInManager(ClothMarketUserManager userManager, IAuthenticationManager authenticationManager) : base(userManager, authenticationManager) { }