12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- using Luticate2.Auth.Business;
- using Luticate2.Auth.DataAccess;
- using Luticate2.Auth.Middlewares;
- using Luticate2.Utils.Controllers;
- using Microsoft.AspNetCore.Builder;
- using Microsoft.AspNetCore.Http;
- using Microsoft.Extensions.DependencyInjection;
-
- namespace Luticate2.Auth.Controllers
- {
- public static class LuAuthExtensions
- {
- public static IServiceCollection AddLuticateAuth(this IServiceCollection services, LuUtilsExtensions.LuOptionsDelegate optionsDelegate)
- {
- services.AddLuticateUtils(optionsDelegate);
-
- services.AddSingleton<LuGroupsController>();
- services.AddSingleton<LuGroupsBusiness>();
- services.AddSingleton<LuGroupsDataAccess>();
-
- services.AddSingleton<LuUsersController>();
-
- services.AddDbContext<LuDatabaseContext>();
-
- return services;
- }
-
- public static IMvcBuilder AddLuticateAuth(this IMvcBuilder builder)
- {
- builder.AddLuticateUtils();
- return builder;
- }
-
- public static IApplicationBuilder UseLuticateAuth(this IApplicationBuilder app)
- {
- app.UseLuticateUtils();
- app.UseMiddleware<LuAuthMiddleware>();
- return app;
- }
-
- public static object GetLuCurrentUser(this HttpContext context)
- {
- return context.GetLuItems()["currentUser"];//TODO
- }
- }
- }
|