|
@@ -40,14 +40,14 @@ namespace GxPress.Repository.Implement
|
|
|
private readonly IMapper _mapper;
|
|
|
private readonly IWebHostEnvironment _environment;
|
|
|
|
|
|
- private readonly ILogger<UserRepository> _logger;
|
|
|
+ private readonly ILogger<UserRepository> _logger;
|
|
|
private readonly IDistributedCache _cache;
|
|
|
//private readonly string _connectionString;
|
|
|
//private readonly string _databaseTypestr;
|
|
|
private readonly string _connectionString;
|
|
|
private readonly string _databaseTypeStr;
|
|
|
public UserRepository(IOptionsMonitor<DatabaseOptions> dbOptionsAccessor, IMapper mapper,
|
|
|
- IWebHostEnvironment environment, IDistributedCache cache,ILogger<UserRepository> logger)
|
|
|
+ IWebHostEnvironment environment, IDistributedCache cache, ILogger<UserRepository> logger)
|
|
|
{
|
|
|
_databaseTypeStr = dbOptionsAccessor.CurrentValue.DatabaseType;
|
|
|
_connectionString = dbOptionsAccessor.CurrentValue.ConnectionString;
|
|
@@ -63,7 +63,7 @@ namespace GxPress.Repository.Implement
|
|
|
_roleRepository = new Repository<Role>(database);
|
|
|
_mapper = mapper;
|
|
|
_cache = cache;
|
|
|
- _logger=logger;
|
|
|
+ _logger = logger;
|
|
|
}
|
|
|
|
|
|
public IDatabase Database => _repository.Database;
|
|
@@ -661,15 +661,19 @@ namespace GxPress.Repository.Implement
|
|
|
// {
|
|
|
// ServerCertificateCustomValidationCallback = (message, certificate2, arg3, arg4) => true
|
|
|
// };
|
|
|
- HttpClientHandler clientHandler = new HttpClientHandler();
|
|
|
- clientHandler.ServerCertificateCustomValidationCallback = (sender, cert, chain, sslPolicyErrors) => { return true; };
|
|
|
- HttpClient httpClient = new HttpClient(clientHandler); //http对象
|
|
|
- HttpResponseMessage response = await httpClient.PostAsync(
|
|
|
- $"{imServiceUrl}/users",
|
|
|
- new JsonContent(new { username = request.Phone, password = "123456", nickname = request.Name }));
|
|
|
- if (response.IsSuccessStatusCode)
|
|
|
+ // HttpClientHandler clientHandler = new HttpClientHandler();
|
|
|
+ // clientHandler.ServerCertificateCustomValidationCallback = (sender, cert, chain, sslPolicyErrors) => { return true; };
|
|
|
+ // HttpClient httpClient = new HttpClient(clientHandler); //http对象
|
|
|
+ // HttpResponseMessage response = await httpClient.PostAsync(
|
|
|
+ // $"{imServiceUrl}/users",
|
|
|
+ // new JsonContent(new { username = request.Phone, password = "123456", nickname = request.Name }));
|
|
|
+
|
|
|
+ string result = HttpClientHelper.GetResponseData("{\"username\":\"" + request.Phone + "\", \"password\": \"123456\",\"nickname\":\"" + request.Name + "\"}", $"{imServiceUrl}/users");
|
|
|
+ // if (response.IsSuccessStatusCode)
|
|
|
+ // {
|
|
|
+ //string result = await response.Content.ReadAsStringAsync();
|
|
|
+ if (!string.IsNullOrEmpty(result))
|
|
|
{
|
|
|
- string result = await response.Content.ReadAsStringAsync();
|
|
|
_logger.LogDebug(result);
|
|
|
_logger.LogError(result);
|
|
|
var model = JsonConvert.DeserializeObject<dynamic>(result);
|
|
@@ -682,11 +686,12 @@ namespace GxPress.Repository.Implement
|
|
|
await _repository.UpdateAsync(userEntity);
|
|
|
Thread.Sleep(1000);
|
|
|
}
|
|
|
- else
|
|
|
- {
|
|
|
- //出现请求环信失败
|
|
|
- // throw new BusinessException("创建用户失败");
|
|
|
- }
|
|
|
+ // }
|
|
|
+ // else
|
|
|
+ // {
|
|
|
+ // //出现请求环信失败
|
|
|
+ // // throw new BusinessException("创建用户失败");
|
|
|
+ // }
|
|
|
}
|
|
|
catch (Exception e)
|
|
|
{
|