org.dromara.jpom.socket.BaseProxyHandler Maven / Gradle / Ivy
/*
* The MIT License (MIT)
*
* Copyright (c) 2019 Code Technology Studio
*
* 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 org.dromara.jpom.socket;
import cn.hutool.core.util.StrUtil;
import com.alibaba.fastjson2.JSONObject;
import lombok.extern.slf4j.Slf4j;
import org.dromara.jpom.common.forward.NodeForward;
import org.dromara.jpom.common.forward.NodeUrl;
import org.dromara.jpom.model.data.NodeModel;
import org.dromara.jpom.transport.*;
import org.dromara.jpom.util.SocketSessionUtil;
import org.springframework.web.socket.TextMessage;
import org.springframework.web.socket.WebSocketSession;
import java.io.IOException;
import java.net.URISyntaxException;
import java.util.Map;
/**
* 服务端socket 基本类
*
* @author bwcx_jzy
* @since 2019/4/25
*/
@Slf4j
public abstract class BaseProxyHandler extends BaseHandler {
private final NodeUrl nodeUrl;
public BaseProxyHandler(NodeUrl nodeUrl) {
this.nodeUrl = nodeUrl;
}
/**
* 连接参数
*
* @param attributes 属性
* @return key, value, key, value.....
*/
protected abstract Object[] getParameters(Map attributes);
@Override
public void afterConnectionEstablishedImpl(WebSocketSession session) throws Exception {
super.afterConnectionEstablishedImpl(session);
Map attributes = session.getAttributes();
this.init(session, attributes);
}
/**
* 连接成功 初始化
*
* @param session 会话
* @param attributes 属性
* @throws URISyntaxException 异常
* @throws IOException IO
*/
protected void init(WebSocketSession session, Map attributes) throws Exception {
boolean init = (boolean) attributes.getOrDefault("init", false);
if (init) {
return;
}
NodeModel nodeModel = (NodeModel) attributes.get("nodeInfo");
// UserModel userInfo = (UserModel) attributes.get("userInfo");
if (nodeModel != null) {
Object[] parameters = this.getParameters(attributes);
// 连接节点
INodeInfo nodeInfo = NodeForward.parseNodeInfo(nodeModel);
IUrlItem urlItem = NodeForward.parseUrlItem(nodeInfo, nodeModel.getWorkspaceId(), this.nodeUrl, DataContentType.FORM_URLENCODED);
IProxyWebSocket proxySession = TransportServerFactory.get().websocket(nodeInfo, urlItem, parameters);
proxySession.onMessage(s -> sendMsg(session, s));
if (!proxySession.connectBlocking()) {
this.sendMsg(session, "插件端连接失败");
this.destroy(session);
return;
}
session.getAttributes().put("proxySession", proxySession);
}
attributes.put("init", true);
}
@Override
protected void handleTextMessage(WebSocketSession session, TextMessage message) throws Exception {
String msg = message.getPayload();
Map attributes = session.getAttributes();
IProxyWebSocket proxySession = (IProxyWebSocket) attributes.get("proxySession");
JSONObject json = JSONObject.parseObject(msg);
String op = json.getString("op");
ConsoleCommandOp consoleCommandOp = StrUtil.isNotEmpty(op) ? ConsoleCommandOp.valueOf(op) : null;
String textMessage;
if (proxySession != null) {
textMessage = this.handleTextMessage(attributes, proxySession, json, consoleCommandOp);
} else {
textMessage = this.handleTextMessage(attributes, session, json, consoleCommandOp);
}
if (textMessage != null) {
this.sendMsg(session, textMessage);
}
}
/**
* 消息处理方法
*
* @param attributes 属性
* @param session 当前回话
* @param json 数据
* @param consoleCommandOp 操作类型
*/
protected String handleTextMessage(Map attributes,
WebSocketSession session,
JSONObject json,
ConsoleCommandOp consoleCommandOp) throws IOException {
return null;
}
/**
* 消息处理方法
*
* @param attributes 属性
* @param proxySession 代理回话
* @param json 数据
* @param consoleCommandOp 操作类型
*/
protected String handleTextMessage(Map attributes,
IProxyWebSocket proxySession,
JSONObject json,
ConsoleCommandOp consoleCommandOp) throws IOException {
return null;
}
@Override
public void destroy(WebSocketSession session) {
try {
if (session.isOpen()) {
session.close();
}
} catch (IOException ignored) {
}
Map attributes = session.getAttributes();
IProxyWebSocket proxySession = (IProxyWebSocket) attributes.get("proxySession");
if (proxySession != null) {
try {
proxySession.close();
} catch (Exception e) {
log.error("关闭异常", e);
}
}
SocketSessionUtil.close(session);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy