李昊 4 years ago
parent
commit
9230960265

+ 5 - 5
gx_api/GxPress/Api/GxPress.Api/ExceptionMiddleware.cs

@@ -34,17 +34,17 @@ namespace GxPress.Api
         {
             try
             {
-                //
-                var watch = new Stopwatch();
-                watch.Start();
                 await _next.Invoke(context);
+                // var watch = new Stopwatch();
+                // watch.Start();
                 if (context.User != null)
                 {
                     var ty = _contextAccessor?.HttpContext?.User?.FindFirst(ClaimTypes.Role);
-                    if (!ty.Value.Equals("Admin"))
+                    if (ty != null && !ty.Value.Equals("Admin"))
                     {
-                        _apiLogService.DataSave(context, watch.ElapsedMilliseconds, 2);
+                        _apiLogService.DataSave(context, 1, 2);
                     }
+                    // watch.Stop();
 
                 }
             }

+ 1 - 0
gx_api/GxPress/Api/GxPress.Api/GxPress.Api.csproj

@@ -34,6 +34,7 @@
     <PackageReference Include="Swashbuckle.AspNetCore" Version="5.0.0-rc4" />
     <PackageReference Include="Swashbuckle.AspNetCore.ReDoc" Version="5.0.0-rc4" />
     <PackageReference Include="sqlSugarCore" Version="5.0.0.14" />
+    <PackageReference Include="mySqlSugar" Version="3.5.3.4" />
   </ItemGroup>
   <ItemGroup>
     <ProjectReference Include="..\..\Infrastructure\GxPress.Auth\GxPress.Auth.csproj" />

+ 9 - 11
gx_api/GxPress/Api/GxPress.Api/Startup.cs

@@ -1,10 +1,7 @@
 using System.IO;
 using GxPress.Api.ServiceExtensions;
 using GxPress.Common.AppOptions;
-using GxPress.Common.Middleware;
 using GxPress.Common.Tools;
-using GxPress.Repository.Implement;
-using GxPress.Repository.Interface;
 using GxPress.Service.Implement;
 using GxPress.Service.Interface;
 using Microsoft.AspNetCore.Builder;
@@ -20,7 +17,7 @@ using Newtonsoft.Json;
 using Newtonsoft.Json.Serialization;
 using Quartz;
 using Quartz.Impl;
-using SqlSugar;
+
 
 namespace GxPress.Api
 {
@@ -37,13 +34,14 @@ namespace GxPress.Api
         // For more information on how to configure your application, visit https://go.microsoft.com/fwlink/?LinkID=398940
         public void ConfigureServices(IServiceCollection services)
         {
-            services.AddSingleton(new SqlSugarClient(new ConnectionConfig
-            {
-                ConnectionString = "server=47.95.221.96;uid=root;pwd=siteservercms88;database=ccpph_tede;MultipleActiveResultSets=true",//必填, 数据库连接字符串
-                DbType = DbType.SqlServer,         //必填, 数据库类型
-                IsAutoCloseConnection = true,       //默认false, 时候知道关闭数据库连接, 设置为true无需使用using或者Close操作
-                InitKeyType = InitKeyType.SystemTable    //默认SystemTable, 字段信息读取, 如:该属性是不是主键,是不是标识列等等信息
-            }));
+            // DbContext.ConnectionString = Configuration.GetConnectionString("DefaultConnection");
+            // services.AddSingleton(new SqlSugarClient(new ConnectionConfig
+            // {
+            //     ConnectionString = "server=47.95.221.96;uid=root;pwd=siteservercms88;database=ccpph_tede;MultipleActiveResultSets=true",//必填, 数据库连接字符串
+            //     DbType = DbType.MySql,         //必填, 数据库类型
+            //     IsAutoCloseConnection = true,       //默认false, 时候知道关闭数据库连接, 设置为true无需使用using或者Close操作
+            //     InitKeyType = InitKeyType.SystemTable    //默认SystemTable, 字段信息读取, 如:该属性是不是主键,是不是标识列等等信息
+            // }));
             services.AddSingleton<IHttpContextAccessor, HttpContextAccessor>();
             services.AddSingleton<ISchedulerFactory, StdSchedulerFactory>();
             // services.AddSingleton<IUserService, UserService>();

+ 39 - 30
gx_api/GxPress/Service/GxPress.Service.Implement/ApiLogService.cs

@@ -1,54 +1,63 @@
 using System;
 using System.IO;
+using Datory;
+using GxPress.Common.AppOptions;
+using GxPress.Common.Tools;
 using GxPress.Entity;
 using GxPress.Service.Interface;
 using Microsoft.AspNetCore.Http;
 using Microsoft.Extensions.Configuration;
-using SqlSugar;
+using Microsoft.Extensions.Options;
 
 namespace GxPress.Service.Implement
 {
     public class ApiLogService : IApiLogService
     {
         private readonly IConfiguration _configuration;
-        private readonly SqlSugarClient _dbContext;
 
-        public ApiLogService(IConfiguration configuration, SqlSugarClient dbContext)
+        private readonly Repository<UserLogin> _repository;
+
+        public ApiLogService(IConfiguration configuration, IOptionsMonitor<DatabaseOptions> dbOptionsAccessor)
         {
             _configuration = configuration;
-            _dbContext = dbContext;
+            var databaseType =
+           StringUtils.ToEnum<DatabaseType>(dbOptionsAccessor.CurrentValue.DatabaseType, DatabaseType.MySql);
+            //_connectionString = dbOptionsAccessor.CurrentValue.ConnectionString;
+            var database = new Database(databaseType, dbOptionsAccessor.CurrentValue.ConnectionString);
+            _repository = new Repository<UserLogin>(database);
         }
 
-        public void DataSave(HttpContext context, long responseTime,int userId)
+        public async void DataSave(HttpContext context, long responseTime, int userId)
         {
             var isLog = _configuration.GetValue<bool>("ApiLog:IsEnable");
-            if (isLog)
+            // if (isLog)
+            // {
+            var requestMethod = context.Request.Method;
+            var requestURL = $"{context.Request.Scheme}://{context.Request.Host}{context.Request.Path}";
+            //var accessToken = context.GetTokenAsync("access_token").Result;//添加身份验证的项目可以使用此方法获取到access_toekn
+            var accessToken = string.Empty;
+            var requestBody = string.Empty;
+            if (requestMethod == "POST")
             {
-                var requestMethod = context.Request.Method;
-                var requestURL = $"{context.Request.Scheme}://{context.Request.Host}{context.Request.Path}";
-                //var accessToken = context.GetTokenAsync("access_token").Result;//添加身份验证的项目可以使用此方法获取到access_toekn
-                var accessToken = string.Empty;
-                var requestBody = string.Empty;
-                if (requestMethod == "POST")
-                {
-                    context.Request.Body.Seek(0, SeekOrigin.Begin);
-                    var _reader = new StreamReader(context.Request.Body);
-                    requestBody = _reader.ReadToEnd();
-                }
-                _dbContext.Insertable(new UserLogin
-                {
-                    AccessToken = accessToken,
-                    AccessTime = DateTime.Now,
-                    AccessAction = requestMethod,
-                    AccessApiUrl = requestURL,
-                    QueryString = context.Request.QueryString.ToString(),
-                    Body = requestBody,
-                    HttpStatus = context.Response.StatusCode,
-                    ClientIP = context.Connection.RemoteIpAddress.ToString(),
-                    ResponseTime = responseTime,
-                    UserId=userId
-                }).ExecuteCommand();
+                context.Request.Body.Seek(0, SeekOrigin.Begin);
+                var _reader = new StreamReader(context.Request.Body);
+                requestBody = _reader.ReadToEnd();
             }
+            var model=new UserLogin
+            {
+                AccessToken = accessToken,
+                AccessTime = DateTime.Now,
+                AccessAction = requestMethod,
+                AccessApiUrl = requestURL,
+                QueryString = context.Request.QueryString.ToString(),
+                Body = requestBody,
+                HttpStatus = context.Response.StatusCode,
+                ClientIP = context.Connection.RemoteIpAddress.ToString(),
+                ResponseTime = responseTime,
+                UserId = userId
+            };
+            await _repository.InsertAsync(model);
+            //}
         }
     }
 }

+ 1 - 0
gx_api/GxPress/Service/GxPress.Service.Implement/GxPress.Service.Implement.csproj

@@ -13,6 +13,7 @@
     <PackageReference Include="Spire.Doc" Version="8.2.9" />
     <PackageReference Include="Aspose.Words" Version="20.2.0" />
     <PackageReference Include="sqlSugarCore" Version="5.0.0.14" />
+    <PackageReference Include="mySqlSugar" Version="3.5.3.4" />
   </ItemGroup>
 
   <ItemGroup>