/* * 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.bilibili.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 lombok.extern.slf4j.Slf4j; import tech.ordinaryroad.live.chat.client.bilibili.client.BilibiliLiveChatClient; import tech.ordinaryroad.live.chat.client.bilibili.config.BilibiliLiveChatClientConfig; import tech.ordinaryroad.live.chat.client.bilibili.constant.ProtoverEnum; import tech.ordinaryroad.live.chat.client.bilibili.netty.frame.factory.BilibiliWebSocketFrameFactory; import tech.ordinaryroad.live.chat.client.commons.base.listener.IBaseConnectionListener; import tech.ordinaryroad.live.chat.client.servers.netty.client.handler.BaseNettyClientConnectionHandler; /** * 连接处理器 * * @author mjz * @date 2023/8/21 */ @Slf4j @ChannelHandler.Sharable public class BilibiliConnectionHandler extends BaseNettyClientConnectionHandler { /** * 以ClientConfig为主 */ private final long roomId; /** * 以ClientConfig为主 */ private final ProtoverEnum protover; /** * 以ClientConfig为主 */ private String cookie; public BilibiliConnectionHandler(WebSocketClientHandshaker handshaker, BilibiliLiveChatClient client, IBaseConnectionListener listener) { super(handshaker, client, listener); this.roomId = client.getConfig().getRoomId(); this.protover = client.getConfig().getProtover(); this.cookie = client.getConfig().getCookie(); } public BilibiliConnectionHandler(WebSocketClientHandshaker handshaker, BilibiliLiveChatClient client) { this(handshaker, client, null); } public BilibiliConnectionHandler(WebSocketClientHandshaker handshaker, long roomId, ProtoverEnum protover, IBaseConnectionListener listener, String cookie) { super(handshaker, listener); this.roomId = roomId; this.protover = protover; this.cookie = cookie; } public BilibiliConnectionHandler(WebSocketClientHandshaker handshaker, long roomId, ProtoverEnum protover, IBaseConnectionListener listener) { this(handshaker, roomId, protover, listener, null); } public BilibiliConnectionHandler(WebSocketClientHandshaker handshaker, long roomId, ProtoverEnum protover, String cookie) { this(handshaker, roomId, protover, null, cookie); } public BilibiliConnectionHandler(WebSocketClientHandshaker handshaker, long roomId, ProtoverEnum protover) { this(handshaker, roomId, protover, null, null); } @Override protected void sendHeartbeat(ChannelHandlerContext ctx) { if (log.isDebugEnabled()) { log.debug("发送心跳包"); } ctx.writeAndFlush( getWebSocketFrameFactory(getRoomId()).createHeartbeat(getProtover()) ).addListener((ChannelFutureListener) future -> { if (future.isSuccess()) { if (log.isDebugEnabled()) { log.debug("心跳包发送完成"); } } else { log.error("心跳包发送失败", future.cause()); } }); } private static BilibiliWebSocketFrameFactory getWebSocketFrameFactory(long roomId) { return BilibiliWebSocketFrameFactory.getInstance(roomId); } @Override public void sendAuthRequest(Channel channel) { // 5s内认证 if (log.isDebugEnabled()) { log.debug("发送认证包"); } channel.writeAndFlush(getWebSocketFrameFactory(getRoomId()).createAuth(getProtover(), getCookie())); } public long getRoomId() { return client != null ? client.getConfig().getRoomId() : roomId; } private ProtoverEnum getProtover() { return client != null ? client.getConfig().getProtover() : protover; } private String getCookie() { return client != null ? client.getConfig().getCookie() : cookie; } @Override protected long getHeartbeatPeriod() { if (client == null) { return BilibiliLiveChatClientConfig.DEFAULT_HEARTBEAT_PERIOD; } else { return client.getConfig().getHeartbeatPeriod(); } } @Override protected long getHeartbeatInitialDelay() { if (client == null) { return BilibiliLiveChatClientConfig.DEFAULT_HEARTBEAT_INITIAL_DELAY; } else { return client.getConfig().getHeartbeatInitialDelay(); } } }