コード例 #1
0
        public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer)
        {
            if (reader.Value is string value && !string.IsNullOrEmpty(value))
            {
                var s = !value.StartsWith("/");
                return($"{ClientConstants.GetImageUrlPrefix(true)}{(s ? "/" : "")}{value}");
            }

            return(string.Empty);
        }
コード例 #2
0
        /// <summary>
        /// Adds the api layer to the application's service collection.
        /// </summary>
        /// <param name="services">The <see cref="IServiceCollection"/>.</param>
        /// <param name="configuration">The <see cref="IConfiguration"/>.</param>
        public static void AddServiceLayer(this IServiceCollection services, IConfiguration configuration)
        {
            services.AddMediatR(typeof(AddUser));

            services.Configure <IdentityOptions>(options =>
            {
                // User username configuration
                options.User.AllowedUserNameCharacters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
                options.User.RequireUniqueEmail        = true;

                // User password configuration
                options.Password.RequireDigit           = true;
                options.Password.RequireLowercase       = true;
                options.Password.RequireUppercase       = true;
                options.Password.RequireNonAlphanumeric = true;
                options.Password.RequiredLength         = 6;

                // Lockout configuration (When users fail logging in too many times in a row)
                options.Lockout.DefaultLockoutTimeSpan  = TimeSpan.FromMinutes(5);
                options.Lockout.MaxFailedAccessAttempts = 5;
                options.Lockout.AllowedForNewUsers      = true;
            });

            services.AddIdentity <KwetterUser, KwetterRole>()
            .AddEntityFrameworkStores <AspNetCoreIdentityContext>()
            .AddDefaultTokenProviders();

            services.AddIdentityServer()
            .AddAspNetIdentity <KwetterUser>()
            .AddInMemoryPersistedGrants()
            .AddInMemoryClients(ClientConstants.GetAll())
            .AddInMemoryIdentityResources(IdentityResourceConstants.GetAll())
            .AddInMemoryApiScopes(ApiScopeConstants.GetAll())
            .AddInMemoryApiResources(ApiResourceConstants.GetAll())
            .AddDeveloperSigningCredential()
            .AddProfileService <ProfileService>()
            .AddResourceOwnerValidator <ResourceOwnerPasswordValidator>();
        }
コード例 #3
0
 public void Correct_Amount_Of_Clients_Exists()
 {
     Assert.AreEqual(ClientConstants.GetAll().Count(), 1);
 }