|
@@ -24,6 +24,7 @@ using GxPress.Repository.Interface.WaitHandle;
|
|
|
using GxPress.Request.AddressBookGroup;
|
|
|
using GxPress.Repository.Interface.DepartmentUser;
|
|
|
using GxPress.Repository.Interface.Friends;
|
|
|
+using GxPress.EnumConst;
|
|
|
|
|
|
namespace GxPress.Service.Implement
|
|
|
{
|
|
@@ -389,14 +390,17 @@ namespace GxPress.Service.Implement
|
|
|
{
|
|
|
Id = department.Id,
|
|
|
Name = department.Name,
|
|
|
- UserCount = userInfoResults.Count()
|
|
|
+ UserCount = userInfoResults.Count(),
|
|
|
+ TypeId = UserlinkConst.Work.GetHashCode(),
|
|
|
+ TypeValue = 0,
|
|
|
});
|
|
|
}
|
|
|
}
|
|
|
+ //单位通讯录
|
|
|
userLinkResult.Add(new UserLinkModelResult
|
|
|
{
|
|
|
- TypeId = 1,
|
|
|
- Name = "单位通讯录",
|
|
|
+ TypeId = UserlinkConst.Work.GetHashCode(),
|
|
|
+ Name = UserlinkConst.Work.GetDescriptionOriginal(),
|
|
|
Items = userLinkModelAttributeResult
|
|
|
});
|
|
|
}
|
|
@@ -405,18 +409,23 @@ namespace GxPress.Service.Implement
|
|
|
userLinkResult.Add(
|
|
|
new UserLinkModelResult
|
|
|
{
|
|
|
- TypeId = 2,
|
|
|
- Name = "系统通讯录",
|
|
|
+ TypeId = UserlinkConst.System.GetHashCode(),
|
|
|
+ Name = UserlinkConst.System.GetDescriptionOriginal(),
|
|
|
Items = new List<UserLinkModelAttributeResult>{
|
|
|
- new UserLinkModelAttributeResult{Id=0,Name="我的小组"
|
|
|
- ,TypeValue=1
|
|
|
- ,UserCount=await groupUserRepository.GetUserIntoGroupUserCountAsync(userId)
|
|
|
+ new UserLinkModelAttributeResult{
|
|
|
+ Id=0,
|
|
|
+ Name=UserlinkConst.MyGroup.GetDescriptionOriginal(),
|
|
|
+ TypeValue=UserlinkConst.MyGroup.GetHashCode(),
|
|
|
+ TypeId= UserlinkConst.System.GetHashCode(),
|
|
|
+ UserCount=await groupUserRepository.GetUserIntoGroupUserCountAsync(userId)
|
|
|
},
|
|
|
- new UserLinkModelAttributeResult{Id=0
|
|
|
- ,Name="我的群聊"
|
|
|
- ,TypeValue=2
|
|
|
- ,UserCount=await groupChatUserRepository.GetUserIntoGroupChatUserCountAsync(userId)},
|
|
|
- //new UserLinkModelAttributeResult{Id=0,Name="我的课程",TypeValue=3}
|
|
|
+ new UserLinkModelAttributeResult{
|
|
|
+ Id=0,
|
|
|
+ Name=UserlinkConst.MyGroupChat.GetDescriptionOriginal(),
|
|
|
+ TypeId= UserlinkConst.System.GetHashCode(),
|
|
|
+ TypeValue=UserlinkConst.MyGroupChat.GetHashCode(),
|
|
|
+ UserCount=await groupChatUserRepository.GetUserIntoGroupChatUserCountAsync(userId)
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
);
|
|
@@ -429,22 +438,25 @@ namespace GxPress.Service.Implement
|
|
|
{
|
|
|
Id = item.Id,
|
|
|
Name = item.GroupName,
|
|
|
+ TypeId = UserlinkConst.My.GetHashCode(),
|
|
|
UserCount = item.UserCount
|
|
|
});
|
|
|
if (addressBookGroupList.Count() > 0)
|
|
|
+ //自建通讯录
|
|
|
userLinkResult.Add(
|
|
|
new UserLinkModelResult
|
|
|
{
|
|
|
- TypeId = 3,
|
|
|
- Name = "自建通讯录",
|
|
|
+ TypeId = UserlinkConst.My.GetHashCode(),
|
|
|
+ Name = UserlinkConst.My.GetDescriptionOriginal(),
|
|
|
Items = systemLinkModelAttributeResults
|
|
|
}
|
|
|
);
|
|
|
userLinkResult.Add(
|
|
|
+ //其他
|
|
|
new UserLinkModelResult
|
|
|
{
|
|
|
- TypeId = 4,
|
|
|
- Name = "其他",
|
|
|
+ TypeId = UserlinkConst.Other.GetHashCode(),
|
|
|
+ Name = UserlinkConst.Other.GetDescriptionOriginal(),
|
|
|
Items = new List<UserLinkModelAttributeResult>()
|
|
|
}
|
|
|
);
|
|
@@ -469,7 +481,12 @@ namespace GxPress.Service.Implement
|
|
|
public async Task<IEnumerable<UserInfoResult>> GetLatelyChatUsersAsync(int userId)
|
|
|
{
|
|
|
var userIds = await oftenContactRepository.GetAllAsync(userId);
|
|
|
- return await _userRepository.GetUserInfoResultsAsync(userIds);
|
|
|
+ var item = await _userRepository.GetUserInfoResultsAsync(userIds);
|
|
|
+ foreach (var userInfo in item)
|
|
|
+ {
|
|
|
+ userInfo.TypeId = 0; userInfo.TypeValue = 0;
|
|
|
+ }
|
|
|
+ return item;
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 获取好友列表
|