From 37a0d618c0b33cd817f6ed12c0b54743a2af0ff3 Mon Sep 17 00:00:00 2001
From: zhengyuxuan <zhengyuxuan1995>
Date: 星期四, 27 三月 2025 13:40:03 +0800
Subject: [PATCH] Merge branch 'master' into dev-lifepay-v1.3

---
 LifePayment/LifePayment.Application/User/AccountService.cs |   77 ++++++++++++++++++++++++++++++--------
 1 files changed, 61 insertions(+), 16 deletions(-)

diff --git a/LifePayment/LifePayment.Application/User/AccountService.cs b/LifePayment/LifePayment.Application/User/AccountService.cs
index 96b3ae8..11dcf39 100644
--- a/LifePayment/LifePayment.Application/User/AccountService.cs
+++ b/LifePayment/LifePayment.Application/User/AccountService.cs
@@ -6,15 +6,18 @@
 using Microsoft.EntityFrameworkCore;
 using Microsoft.Extensions.Configuration;
 using System;
+using System.Collections.Generic;
 using System.Linq;
 using System.Threading.Tasks;
 using Volo.Abp;
 using Volo.Abp.Application.Services;
+using Volo.Abp.Caching;
 using Volo.Abp.Domain.Repositories;
 using Volo.Abp.Identity;
 using Volo.Abp.Identity.Application.Contracts.Account;
 using Volo.Abp.IdentityModel;
 using ZeroD.Util;
+using ZeroD.Util.Fadd;
 using static LifePayment.Domain.Shared.LifePaymentConstant;
 
 
@@ -27,7 +30,10 @@
         private readonly IConfiguration _configuration;
         private readonly IIdentityModelAuthenticationService _authenticator;
         private readonly IRepository<User, Guid> _userRepository;
+        private readonly IRepository<UserChannle, Guid> _userChannleRep;
         private readonly IIdentityUserAppService _identityUserService;
+        private readonly IDistributedCache<string> _distributedCache;
+
 
         public AccountService(
                IWxManager wxManager,
@@ -35,7 +41,9 @@
                IIdentityModelAuthenticationService authenticator,
                IRepository<User, Guid> userRepository,
                IIdentityUserAppService identityUserService,
-               IRepository<LifePayUser, Guid> lifePayUserRepository)
+               IRepository<LifePayUser, Guid> lifePayUserRepository,
+               IRepository<UserChannle, Guid> userChannleRep,
+               IDistributedCache<string> distributedCache)
         {
             _configuration = configuration;
             _wxManager = wxManager;
@@ -43,19 +51,39 @@
             _lifePayUserRepository = lifePayUserRepository;
             _authenticator = authenticator;
             _userRepository = userRepository;
+            _userChannleRep = userChannleRep;
+            _distributedCache = distributedCache;
         }
 
         #region 鏌ヨ
 
         public async Task<WxMiniAppIndentityInfo> GetLifePayWxIndentity(string code)
         {
-            var res = await _wxManager.GetWxOauth2AccessToken(code);
-            var result = new WxMiniAppIndentityInfo
+            var cacheData = await _distributedCache.GetAsync(code);
+            var result = new WxMiniAppIndentityInfo();
+            if (cacheData != null)
             {
-                SessionKey = res.SessionKey,
-                OpenId = res.OpenId,
-                UnionId = res.UnionId
-            };
+                result.OpenId = cacheData;
+            }
+            else
+            {
+                var res = await _wxManager.GetWxOauth2AccessToken(code);
+                result = new WxMiniAppIndentityInfo
+                {
+                    SessionKey = res.SessionKey,
+                    OpenId = res.OpenId,
+                    UnionId = res.UnionId
+                };
+                if (!string.IsNullOrEmpty(res.OpenId))
+                {
+                    await _distributedCache.SetAsync(code, res.OpenId, options: new Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions()
+                    {
+                        AbsoluteExpirationRelativeToNow = TimeSpan.FromHours(24)
+                    });
+                }
+
+            }
+
 
             return result;
         }
@@ -92,6 +120,7 @@
                 lifeUser = new LifePayUser()
                 {
                     Id = GuidGenerator.Create(),
+                    CreationChannleNum = input.CheckChannelId,
                     PhoneNumber = input.PhoneNumber,
                     LastLoginTime = DateTime.Now
                 };
@@ -100,6 +129,7 @@
             }
             else
             {
+                lifeUser.LastLoginChannleNum = input.CheckChannelId;
                 lifeUser.LastLoginTime = DateTime.Now;
                 await _lifePayUserRepository.UpdateAsync(lifeUser);
             }
@@ -123,25 +153,27 @@
             var user = await _userRepository.Where(r => r.UserName == accessRequestDto.UserName && !r.IsDeleted).FirstOrDefaultAsync();
 
             // 璁板綍鏃ュ織
-           // await PublishUserOperateHistoryEvent(LogsSpecies.Login, LogsSpecies.Login, user.Id, user.Id, creatorName: user.Name);
+            // await PublishUserOperateHistoryEvent(LogsSpecies.Login, LogsSpecies.Login, user.Id, user.Id, creatorName: user.Name);
 
             return result;
         }
 
-        public async Task<Guid> CreateAccount(CreateAccountInput input, bool isSend, bool isAdminCreate = false, string password = null)
+        public async Task<Guid> CreateAccount(CreateAccountInput input, bool isSend, bool isAdminCreate = false)
         {
-            if (input.ClientId == LifePaymentConstant.ClientId.Back)
-            {
-                CheckExtensions.IfTrueThrowUserFriendlyException(!input.CompanyOrgId.HasValue || !input.DepartmentOrgId.HasValue,
-                                                                 "鎵�灞炲叕鍙稿拰閮ㄩ棬涓嶈兘涓虹┖");
-            }
+            //if (input.ClientId == LifePaymentConstant.ClientId.Back)
+            //{
+            //    CheckExtensions.IfTrueThrowUserFriendlyException(!input.CompanyOrgId.HasValue || !input.DepartmentOrgId.HasValue,
+            //                                                     "鎵�灞炲叕鍙稿拰閮ㄩ棬涓嶈兘涓虹┖");
+            //}
 
             var any = await _userRepository.Where(x => x.PhoneNumber == input.PhoneNumber && x.ClientId == input.ClientId).AnyAsync();
             CheckExtensions.IfTrueThrowUserFriendlyException(any,
                                                              CustomeErrorMessage.PhoneNumberRepeatSaveFail);
 
-            password ??= GlobalRandom.GetRandomPassword();
+            /// input.Password ??= GlobalRandom.GetRandomPassword();
 
+            CheckExtensions.IfTrueThrowUserFriendlyException(string.IsNullOrEmpty(input.Password),
+                                                             "璇疯緭鍏ュ瘑鐮�");
             var res = await _identityUserService.CreateAsync(new IdentityUserCreateDto
             {
                 Name = input.Name,
@@ -149,7 +181,7 @@
                 UserName = input.UserName,
                 RoleNames = input.RoleNames,
                 ClientId = input.ClientId,
-                Password = password,
+                Password = input.Password,
             });
             var user = await _userRepository.InsertAsync(new User
             {
@@ -168,6 +200,19 @@
                 DepartmentOrgId = input.ClientId == LifePaymentConstant.ClientId.Back ? input.DepartmentOrgId : null,
                 CompanyOrgId = input.ClientId == LifePaymentConstant.ClientId.Back ? input.CompanyOrgId : null
             });
+
+            List<UserChannle> userChannles = new List<UserChannle>();
+            foreach (var item in input.ChannlesId)
+            {
+                userChannles.Add(new UserChannle()
+                {
+                    Id = Guid.NewGuid(),
+                    ChannleId = item,
+                    UserId = user.Id
+                });
+            }
+
+            await _userChannleRep.InsertManyAsync(userChannles);
             //if (input.ClientId == Constant.ClientType.Back)
             //{
             //    await _distributedEventBus.PublishAsync(new SendPhoneMessageInput

--
Gitblit v1.9.1