Netty+SpringBoot+FastDFS+Html5實現聊天App,項目介紹。
Netty+SpringBoot+FastDFS+Html5實現聊天App,項目github連接。
本章完整代碼連接。
本節主要講解聊天App PigChat中關於好友申請的發送與接受。前端
包含如下內容:
git
定義枚舉類型 SearchFriendsStatusEnum,表示添加好友的前置狀態github
SUCCESS(0, "OK"), USER_NOT_EXIST(1, "無此用戶..."), NOT_YOURSELF(2, "不能添加你本身..."), ALREADY_FRIENDS(3, "該用戶已是你的好友...");
在service中定義搜索朋友的前置條件判斷的方法preconditionSearchFriends。數據庫
傳入的是用戶的Id以及搜索的用戶的名稱。segmentfault
【1】首先根據搜索的用戶的名稱查找是否存在這個用戶。
【2】若是搜索的用戶不存在,則返回[無此用戶]。
【3】若是搜索的用戶是你本身,則返回[不能添加本身]。
【4】若是搜索的用戶已是你的好友,則返回[該用戶已是你的好友]。
【5】不然返回成功。app
@Transactional(propagation = Propagation.SUPPORTS) @Override public Integer preconditionSearchFriends(String myUserId, String friendUsername) { //1. 查找要添加的朋友是否存在 Users user = queryUserInfoByUsername(friendUsername); // 2. 搜索的用戶若是不存在,返回[無此用戶] if (user == null) { return SearchFriendsStatusEnum.USER_NOT_EXIST.status; } // 3. 搜索帳號是你本身,返回[不能添加本身] if (user.getId().equals(myUserId)) { return SearchFriendsStatusEnum.NOT_YOURSELF.status; } // 4. 搜索的朋友已是你的好友,返回[該用戶已是你的好友] Example mfe = new Example(MyFriends.class); Criteria mfc = mfe.createCriteria(); mfc.andEqualTo("myUserId", myUserId); mfc.andEqualTo("myFriendUserId", user.getId()); MyFriends myFriendsRel = myFriendsMapper.selectOneByExample(mfe); if (myFriendsRel != null) { return SearchFriendsStatusEnum.ALREADY_FRIENDS.status; } //返回成功 return SearchFriendsStatusEnum.SUCCESS.status; }
在controller中建立搜索好友接口 searchUser。
傳入的是用戶的Id,以及要搜索的用戶的名字。ide
【0】首先判斷傳入的參數是否爲空。
【1】經過userService的preconditionSearchFriends方法獲得前置條件。
【2】若是搜索前置條件爲成功,則向前端返回搜索用戶的信息。
【3】不然搜索失敗。spa
/** * @Description: 搜索好友接口, 根據帳號作匹配查詢而不是模糊查詢 */ @PostMapping("/search") public IMoocJSONResult searchUser(String myUserId, String friendUsername) throws Exception { // 0. 判斷 myUserId friendUsername 不能爲空 if (StringUtils.isBlank(myUserId) || StringUtils.isBlank(friendUsername)) { return IMoocJSONResult.errorMsg(""); } // 前置條件 - 1. 搜索的用戶若是不存在,返回[無此用戶] // 前置條件 - 2. 搜索帳號是你本身,返回[不能添加本身] // 前置條件 - 3. 搜索的朋友已是你的好友,返回[該用戶已是你的好友] //1. 獲得前置條件狀態 Integer status = userService.preconditionSearchFriends(myUserId, friendUsername); //2. 搜索成功,返回搜索用戶的信息 if (status == SearchFriendsStatusEnum.SUCCESS.status) { Users user = userService.queryUserInfoByUsername(friendUsername); UsersVO userVO = new UsersVO(); BeanUtils.copyProperties(user, userVO); return IMoocJSONResult.ok(userVO); } else { //3. 搜索失敗 String errorMsg = SearchFriendsStatusEnum.getMsgByKey(status); return IMoocJSONResult.errorMsg(errorMsg); } }
在service中定義添加好友請求記錄,保存到數據庫的sendFriendRequest方法。
傳入的是添加好友記錄的發送方——用戶的Id,以及記錄的接收方——想要添加的朋友的名稱。code
【1】首先根據用戶名把朋友信息查詢出來。
【2】而後查詢發送好友請求記錄表。
【3】若是不是你的好友,而且好友記錄沒有添加,則新增好友請求記錄。這樣能夠保證打你發送了兩次請求以後,數據庫中仍然只記錄一次請求的數據。接口
@Transactional(propagation = Propagation.REQUIRED) @Override public void sendFriendRequest(String myUserId, String friendUsername) { // 1. 根據用戶名把朋友信息查詢出來 Users friend = queryUserInfoByUsername(friendUsername); // 2. 查詢發送好友請求記錄表 Example fre = new Example(FriendsRequest.class); Criteria frc = fre.createCriteria(); frc.andEqualTo("sendUserId", myUserId); frc.andEqualTo("acceptUserId", friend.getId()); FriendsRequest friendRequest = friendsRequestMapper.selectOneByExample(fre); if (friendRequest == null) { // 3. 若是不是你的好友,而且好友記錄沒有添加,則新增好友請求記錄 String requestId = sid.nextShort(); FriendsRequest request = new FriendsRequest(); request.setId(requestId); request.setSendUserId(myUserId); request.setAcceptUserId(friend.getId()); request.setRequestDateTime(new Date()); friendsRequestMapper.insert(request); } }
在controller中建立發送添加好友請求的接口。
傳入的是添加好友記錄的發送方——用戶的Id,以及記錄的接收方——想要添加的朋友的名稱。
【0】首先判斷傳入參數不爲空。
【1】而後判斷前置條件,若爲成功則經過userService的sendFriendRequest方法發送好友請求,不然返回失敗。
/** * @Description: 發送添加好友的請求 */ @PostMapping("/addFriendRequest") public IMoocJSONResult addFriendRequest(String myUserId, String friendUsername) throws Exception { // 0. 判斷 myUserId friendUsername 不能爲空 if (StringUtils.isBlank(myUserId) || StringUtils.isBlank(friendUsername)) { return IMoocJSONResult.errorMsg(""); } // 前置條件 - 1. 搜索的用戶若是不存在,返回[無此用戶] // 前置條件 - 2. 搜索帳號是你本身,返回[不能添加本身] // 前置條件 - 3. 搜索的朋友已是你的好友,返回[該用戶已是你的好友] // 1. 判斷前置條件 Integer status = userService.preconditionSearchFriends(myUserId, friendUsername); if (status == SearchFriendsStatusEnum.SUCCESS.status) { userService.sendFriendRequest(myUserId, friendUsername); } else { String errorMsg = SearchFriendsStatusEnum.getMsgByKey(status); return IMoocJSONResult.errorMsg(errorMsg); } return IMoocJSONResult.ok(); }
在service中定義查詢好友請求列表的queryFriendRequestList方法。
@Transactional(propagation = Propagation.SUPPORTS) @Override public List<FriendRequestVO> queryFriendRequestList(String acceptUserId) { return usersMapperCustom.queryFriendRequestList(acceptUserId); }
在controller中定義接受添加好友請求的接口queryFriendRequests。
/** * @Description: 發送添加好友的請求 */ @PostMapping("/queryFriendRequests") public IMoocJSONResult queryFriendRequests(String userId) { // 0. 判斷不能爲空 if (StringUtils.isBlank(userId)) { return IMoocJSONResult.errorMsg(""); } // 1. 查詢用戶接受到的朋友申請 return IMoocJSONResult.ok(userService.queryFriendRequestList(userId)); }