李昊 4 years ago
parent
commit
38ab00b52e

+ 1 - 1
gx_api/GxPress/Api/GxPress.Api/AppControllers/GroupController.cs

@@ -230,7 +230,7 @@ namespace GxPress.Api.AppControllers
         [HttpGet("category-list/{categoryId}")]
         [HttpGet("category-list/{categoryId}")]
         public async Task<IEnumerable<Entity.Group>> GetAllAsync(int categoryId)
         public async Task<IEnumerable<Entity.Group>> GetAllAsync(int categoryId)
         {
         {
-            return await _groupService.GetAllAsync(categoryId);
+            return await _groupService.GetAllAsync(categoryId, _loginContext.AccountId);
         }
         }
         /// <summary>
         /// <summary>
         /// 根据parendId获取小组广场
         /// 根据parendId获取小组广场

+ 14 - 2
gx_api/GxPress/Api/GxPress.Api/WebControllers/UserController.cs

@@ -13,6 +13,7 @@ using GxPress.Common.Validation;
 using GxPress.Entity;
 using GxPress.Entity;
 using GxPress.EnumConst;
 using GxPress.EnumConst;
 using GxPress.Repository.Interface;
 using GxPress.Repository.Interface;
+using GxPress.Repository.Interface.Friends;
 using GxPress.Request.AddressBookGroup;
 using GxPress.Request.AddressBookGroup;
 using GxPress.Request.AddressBookGroupUser;
 using GxPress.Request.AddressBookGroupUser;
 using GxPress.Request.App.User;
 using GxPress.Request.App.User;
@@ -53,11 +54,11 @@ namespace GxPress.Api.WebControllers
         private readonly IUserLoginRepository userLoginRepository;
         private readonly IUserLoginRepository userLoginRepository;
         private readonly IAddressBookGroupRepository addressBookGroupRepository;
         private readonly IAddressBookGroupRepository addressBookGroupRepository;
         private readonly IAddressBookGroupUserRepository _addressBookGroupUserRepository;
         private readonly IAddressBookGroupUserRepository _addressBookGroupUserRepository;
-
         private readonly IFeedbackRepository _feedbackRepository;
         private readonly IFeedbackRepository _feedbackRepository;
+        private readonly IFriendsRepository friendsRepository;
         public UserController(IUserRepository userRepository, IOptions<JwtOptions> jwtOptions,
         public UserController(IUserRepository userRepository, IOptions<JwtOptions> jwtOptions,
             ILogger<UserController> logger, IDepartmentRepository departmentRepository, ILoginContext loginContext,
             ILogger<UserController> logger, IDepartmentRepository departmentRepository, ILoginContext loginContext,
-            IUserService userService, IFileLibraryRepository fileLibraryRepository, IDistributedCache cache, IUserLoginRepository userLoginRepository, IAddressBookGroupRepository addressBookGroupRepository, IAddressBookGroupUserRepository _addressBookGroupUserRepository, IFeedbackRepository _feedbackRepository)
+            IUserService userService, IFileLibraryRepository fileLibraryRepository, IDistributedCache cache, IUserLoginRepository userLoginRepository, IAddressBookGroupRepository addressBookGroupRepository, IAddressBookGroupUserRepository _addressBookGroupUserRepository, IFeedbackRepository _feedbackRepository, IFriendsRepository friendsRepository)
         {
         {
             _userRepository = userRepository;
             _userRepository = userRepository;
             _departmentRepository = departmentRepository;
             _departmentRepository = departmentRepository;
@@ -71,6 +72,7 @@ namespace GxPress.Api.WebControllers
             this.addressBookGroupRepository = addressBookGroupRepository;
             this.addressBookGroupRepository = addressBookGroupRepository;
             this._addressBookGroupUserRepository = _addressBookGroupUserRepository;
             this._addressBookGroupUserRepository = _addressBookGroupUserRepository;
             this._feedbackRepository = _feedbackRepository;
             this._feedbackRepository = _feedbackRepository;
+            this.friendsRepository = friendsRepository;
         }
         }
         /// <summary>
         /// <summary>
         /// 登录
         /// 登录
@@ -478,5 +480,15 @@ namespace GxPress.Api.WebControllers
         {
         {
             return await _userService.FindUserInfoNoFriendsResultAsync(_loginContext.AccountId, keyword);
             return await _userService.FindUserInfoNoFriendsResultAsync(_loginContext.AccountId, keyword);
         }
         }
+
+        /// <summary>
+        /// 删除我的好友
+        /// </summary>
+        /// <returns></returns>
+        [HttpDelete("friends")]
+        public async Task<bool> DeleteAsync(IEnumerable<int> friendsIds)
+        {
+            return await friendsRepository.DeleteAsync(friendsIds, _loginContext.AccountId);
+        }
     }
     }
 }
 }

+ 1 - 1
gx_api/GxPress/Api/GxPress.Api/WebControllers/WebGroupController.cs

@@ -79,7 +79,7 @@ namespace GxPress.Api.WebControllers
         [AllowAnonymous]
         [AllowAnonymous]
         public async Task<IEnumerable<Entity.Group>> GetAllAsync(int categoryId)
         public async Task<IEnumerable<Entity.Group>> GetAllAsync(int categoryId)
         {
         {
-            return await _groupService.GetAllAsync(categoryId);
+            return await _groupService.GetAllAsync(categoryId, _loginContext.AccountId);
         }
         }
         /// <summary>
         /// <summary>
         /// 根据parendId获取小组广场
         /// 根据parendId获取小组广场

+ 11 - 1
gx_api/GxPress/Model/GxPress.Entity/Group.cs

@@ -88,11 +88,21 @@ namespace GxPress.Entity
         /// <value></value>
         /// <value></value>
         [DataColumn]
         [DataColumn]
         public bool IsShow { get; set; }
         public bool IsShow { get; set; }
-         /// <summary>
+        /// <summary>
         /// 历史用户头像
         /// 历史用户头像
         /// </summary>
         /// </summary>
         /// <value></value>
         /// <value></value>
         [DataColumn]
         [DataColumn]
         public string HistoryAvatarUrl { get; set; }
         public string HistoryAvatarUrl { get; set; }
+        /// <summary>
+        /// 是否申请
+        /// </summary>
+        /// <value></value>
+        public bool IsApply { get; set; }
+        /// <summary>
+        /// 是否加入
+        /// </summary>
+        /// <value></value>
+        public bool IsUser { get; set; }
     }
     }
 }
 }

+ 24 - 1
gx_api/GxPress/Repository/GxPress.Repository.Implement/GroupRepository.cs

@@ -423,7 +423,7 @@ namespace GxPress.Repository.Implement
         /// </summary>
         /// </summary>
         /// <param name="categoryId"></param>
         /// <param name="categoryId"></param>
         /// <returns></returns>
         /// <returns></returns>
-        public async Task<IEnumerable<Entity.Group>> GetAllAsync(int categoryId)
+        public async Task<IEnumerable<Entity.Group>> GetAllAsync(int categoryId, int userId)
         {
         {
             var sql = $@"SELECT 
             var sql = $@"SELECT 
                             *,
                             *,
@@ -443,6 +443,29 @@ namespace GxPress.Repository.Implement
                             tede_group a
                             tede_group a
                         WHERE
                         WHERE
                             a.GroupCategroyId = {categoryId} and a.IsShow=1";
                             a.GroupCategroyId = {categoryId} and a.IsShow=1";
+            if (userId > 0)
+            {
+                sql = $@"SELECT 
+                                *,
+                                (SELECT 
+                                        COUNT(1)
+                                    FROM
+                                        tede_group_user
+                                    WHERE
+                                        GroupId = a.Id AND UserId = {userId}
+                                    LIMIT 1) AS IsUser,
+                                (SELECT 
+                                        count(1)
+                                    FROM
+                                        tede_admin_verify
+                                    WHERE
+                                        SourceType = 1 AND VerifyType = 3
+                                            AND UserId = {userId}
+                                            AND DisposeType = 0
+                                            AND SourceId = a.Id limit 1) as IsApply
+                            FROM
+                                tede_group a";
+            }
             var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
             var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
             var database = new Database(databaseType, _connectionString);
             var database = new Database(databaseType, _connectionString);
             var connection = database.GetConnection();
             var connection = database.GetConnection();

+ 1 - 1
gx_api/GxPress/Repository/GxPress.Repository.Interface/IGroupRepository.cs

@@ -83,7 +83,7 @@ namespace GxPress.Repository.Interface
         /// </summary>
         /// </summary>
         /// <param name="categoryId"></param>
         /// <param name="categoryId"></param>
         /// <returns></returns>
         /// <returns></returns>
-        Task<IEnumerable<Entity.Group>> GetAllAsync(int categoryId);
+        Task<IEnumerable<Entity.Group>> GetAllAsync(int categoryId, int userId);
         /// <summary>
         /// <summary>
         /// 用户小组列表
         /// 用户小组列表
         /// </summary>
         /// </summary>

+ 2 - 2
gx_api/GxPress/Service/GxPress.Service.Implement/Group/GroupService.Category.cs

@@ -11,9 +11,9 @@ namespace GxPress.Service.Implement.Group
         /// </summary>
         /// </summary>
         /// <param name="categoryId"></param>
         /// <param name="categoryId"></param>
         /// <returns></returns>
         /// <returns></returns>
-        public async Task<IEnumerable<Entity.Group>> GetAllAsync(int categoryId)
+        public async Task<IEnumerable<Entity.Group>> GetAllAsync(int categoryId,int userId)
         {
         {
-            var group = await _groupRepository.GetAllAsync(categoryId);
+            var group = await _groupRepository.GetAllAsync(categoryId,userId);
             foreach (var item in group)
             foreach (var item in group)
             {
             {
                 item.AvatarUrl = Common.Tools.StringUtils.AddDomain(item.AvatarUrl);
                 item.AvatarUrl = Common.Tools.StringUtils.AddDomain(item.AvatarUrl);

+ 1 - 1
gx_api/GxPress/Service/GxPress.Service.Interface/Group/IGroupService.cs

@@ -52,6 +52,6 @@ namespace GxPress.Service.Interface.Group
         /// </summary>
         /// </summary>
         /// <param name="categoryId"></param>
         /// <param name="categoryId"></param>
         /// <returns></returns>
         /// <returns></returns>
-        Task<IEnumerable<Entity.Group>> GetAllAsync(int categoryId);
+        Task<IEnumerable<Entity.Group>> GetAllAsync(int categoryId,int userId);
     }
     }
 }
 }