国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

Netty+SpringBoot+FastDFS+Html5實現聊天App詳解(四)

why_rookie / 1802人閱讀

Netty+SpringBoot+FastDFS+Html5實現聊天App,項目介紹。

Netty+SpringBoot+FastDFS+Html5實現聊天App,項目github鏈接。

本章完整代碼鏈接。

本章內容 (1) 查詢好友列表的接口 (2)通過或忽略好友請求的接口 (3)添加好友功能展示



查詢好友列表的接口
    /**
     * @Description: 查詢我的好友列表
     */
    @PostMapping("/myFriends")
    public IMoocJSONResult myFriends(String userId) {
        // 0. userId 判斷不能為空
        if (StringUtils.isBlank(userId)) {
            return IMoocJSONResult.errorMsg("");
        }
        
        // 1. 數據庫查詢好友列表
        List myFirends = userService.queryMyFriends(userId);
        
        return IMoocJSONResult.ok(myFirends);
    }
通過或忽略好友請求的接口

定義枚舉類型

/**
 * 
 * @Description: 忽略或者通過 好友請求的枚舉
 */
public enum OperatorFriendRequestTypeEnum {
    
    IGNORE(0, "忽略"),
    PASS(1, "通過");
    
    public final Integer type;
    public final String msg;
    
    OperatorFriendRequestTypeEnum(Integer type, String msg){
        this.type = type;
        this.msg = msg;
    }
    
    public Integer getType() {
        return type;
    }  
    
    public static String getMsgByType(Integer type) {
        for (OperatorFriendRequestTypeEnum operType : OperatorFriendRequestTypeEnum.values()) {
            if (operType.getType() == type) {
                return operType.msg;
            }
        }
        return null;
    }
    
}

controller中提供通過或忽略好友請求的接口

    /**
     * @Description: 接受方 通過或者忽略朋友請求
     */
    @PostMapping("/operFriendRequest")
    public IMoocJSONResult operFriendRequest(String acceptUserId, String sendUserId,
                                                Integer operType) {
        
        // 0. acceptUserId sendUserId operType 判斷不能為空
        if (StringUtils.isBlank(acceptUserId) 
                || StringUtils.isBlank(sendUserId) 
                || operType == null) {
            return IMoocJSONResult.errorMsg("");
        }
        
        // 1. 如果operType 沒有對應的枚舉值,則直接拋出空錯誤信息
        if (StringUtils.isBlank(OperatorFriendRequestTypeEnum.getMsgByType(operType))) {
            return IMoocJSONResult.errorMsg("");
        }
        
        if (operType == OperatorFriendRequestTypeEnum.IGNORE.type) {
            // 2. 判斷如果忽略好友請求,則直接刪除好友請求的數據庫表記錄
            userService.deleteFriendRequest(sendUserId, acceptUserId);
        } else if (operType == OperatorFriendRequestTypeEnum.PASS.type) {
            // 3. 判斷如果是通過好友請求,則互相增加好友記錄到數據庫對應的表
            //       然后刪除好友請求的數據庫表記錄
            userService.passFriendRequest(sendUserId, acceptUserId);
        }
        
        // 4. 數據庫查詢好友列表
        List myFirends = userService.queryMyFriends(acceptUserId);
        
        // 5. 將查詢到的好友列表返回給前端
        return IMoocJSONResult.ok(myFirends);
    }
添加好友功展示 通過搜索好友姓名添加好友



通過掃描二維碼添加好友



文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/73288.html

相關文章

  • Netty+SpringBoot+FastDFS+Html5實現聊天App詳解(三)

    摘要:實現聊天,項目介紹。首先根據搜索的用戶的名稱查找是否存在這個用戶。如果搜索前置條件為成功,則向前端返回搜索用戶的信息。發送添加好友的請求判斷不能為空查詢用戶接受到的朋友申請最終實現效果 Netty+SpringBoot+FastDFS+Html5實現聊天App,項目介紹。Netty+SpringBoot+FastDFS+Html5實現聊天App,項目github鏈接。本章完整代碼鏈接。...

    isLishude 評論0 收藏0
  • Netty+SpringBoot+FastDFS+Html5實現聊天App詳解(二)

    摘要:實現聊天,項目介紹。若該用戶不存在則記性注冊,根據前端傳入的信息構建對象,通過的將其保存入數據庫中。注意密碼需要使用工具類進行加密后再保存到數據庫中。對返回的路徑進行切割后得到縮略圖的路徑。通過的方法將二維碼圖片上傳到文件服務器中。 Netty+SpringBoot+FastDFS+Html5實現聊天App,項目介紹。Netty+SpringBoot+FastDFS+Html5實現聊天...

    SnaiLiu 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<