/* * MIT License * * Copyright (c) 2023 OrdinaryRoad * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ package tech.ordinaryroad.live.chat.client.douyu.netty.handler; import io.netty.channel.Channel; import io.netty.channel.ChannelFutureListener; import io.netty.channel.ChannelHandler; import io.netty.channel.ChannelHandlerContext; import io.netty.handler.codec.http.websocketx.WebSocketClientHandshaker; import io.netty.handler.codec.http.websocketx.WebSocketFrame; import lombok.Getter; import lombok.extern.slf4j.Slf4j; import tech.ordinaryroad.live.chat.client.commons.base.listener.IBaseConnectionListener; import tech.ordinaryroad.live.chat.client.douyu.client.base.BaseDouyuLiveChatClient; import tech.ordinaryroad.live.chat.client.douyu.config.DouyuLiveChatClientConfig; import tech.ordinaryroad.live.chat.client.douyu.constant.DouyuClientModeEnum; import tech.ordinaryroad.live.chat.client.douyu.netty.frame.factory.DouyuWebSocketFrameFactory; import tech.ordinaryroad.live.chat.client.servers.netty.client.handler.BaseNettyClientConnectionHandler; /** * 连接处理器 * * @author mjz * @date 2023/8/21 */ @Slf4j @ChannelHandler.Sharable public class DouyuConnectionHandler extends BaseNettyClientConnectionHandler { @Getter private final DouyuClientModeEnum mode; /** * 以ClientConfig为主 */ private final long roomId; /** * 以ClientConfig为主 */ private final String ver; /** * 以ClientConfig为主 */ private final String aver; /** * 以ClientConfig为主 */ private String cookie; public DouyuConnectionHandler(DouyuClientModeEnum mode, WebSocketClientHandshaker handshaker, BaseDouyuLiveChatClient client, IBaseConnectionListener listener) { super(handshaker, client, listener); this.mode = mode; this.roomId = client.getConfig().getRoomId(); this.ver = client.getConfig().getVer(); this.aver = client.getConfig().getAver(); this.cookie = client.getConfig().getCookie(); } public DouyuConnectionHandler(DouyuClientModeEnum mode, WebSocketClientHandshaker handshaker, BaseDouyuLiveChatClient client) { this(mode, handshaker, client, null); } public DouyuConnectionHandler(DouyuClientModeEnum mode, WebSocketClientHandshaker handshaker, long roomId, String ver, String aver, IBaseConnectionListener listener, String cookie) { super(handshaker, listener); this.mode = mode; this.roomId = roomId; this.ver = ver; this.aver = aver; this.cookie = cookie; } public DouyuConnectionHandler(DouyuClientModeEnum mode, WebSocketClientHandshaker handshaker, long roomId, String ver, String aver, IBaseConnectionListener listener) { this(mode, handshaker, roomId, ver, aver, listener, null); } public DouyuConnectionHandler(DouyuClientModeEnum mode, WebSocketClientHandshaker handshaker, long roomId, String ver, String aver, String cookie) { this(mode, handshaker, roomId, ver, aver, null, cookie); } public DouyuConnectionHandler(DouyuClientModeEnum mode, WebSocketClientHandshaker handshaker, long roomId, String ver, String aver) { this(mode, handshaker, roomId, ver, aver, null, null); } @Override protected void sendHeartbeat(ChannelHandlerContext ctx) { if (log.isDebugEnabled()) { log.debug("发送心跳包"); } WebSocketFrame webSocketFrame; if (mode == DouyuClientModeEnum.DANMU) { webSocketFrame = getWebSocketFrameFactory(getRoomId()).createHeartbeat(); } else { webSocketFrame = getWebSocketFrameFactory(getRoomId()).createKeeplive(getCookie()); } ctx.writeAndFlush(webSocketFrame).addListener((ChannelFutureListener) future -> { if (future.isSuccess()) { if (log.isDebugEnabled()) { log.debug("心跳包发送完成"); } } else { log.error("心跳包发送失败", future.cause()); } }); } @Override public void sendAuthRequest(Channel channel) { if (log.isDebugEnabled()) { log.debug("发送认证包"); } channel.writeAndFlush(getWebSocketFrameFactory(getRoomId()).createAuth(mode, getVer(), getAver(), getCookie())); } private DouyuWebSocketFrameFactory getWebSocketFrameFactory(long roomId) { return DouyuWebSocketFrameFactory.getInstance(roomId); } public long getRoomId() { return client != null ? client.getConfig().getRoomId() : roomId; } private String getVer() { return client != null ? client.getConfig().getVer() : ver; } private String getAver() { return client != null ? client.getConfig().getAver() : aver; } private String getCookie() { return client != null ? client.getConfig().getCookie() : cookie; } @Override protected long getHeartbeatPeriod() { if (client == null) { return DouyuLiveChatClientConfig.DEFAULT_HEARTBEAT_PERIOD; } else { return client.getConfig().getHeartbeatPeriod(); } } @Override protected long getHeartbeatInitialDelay() { if (client == null) { return DouyuLiveChatClientConfig.DEFAULT_HEARTBEAT_INITIAL_DELAY; } else { return client.getConfig().getHeartbeatInitialDelay(); } } }