org.dromara.jpom.socket.handler.ConsoleHandler 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.handler;
import cn.hutool.core.util.ArrayUtil;
import com.alibaba.fastjson2.JSONObject;
import org.dromara.jpom.common.forward.NodeUrl;
import org.dromara.jpom.permission.ClassFeature;
import org.dromara.jpom.permission.Feature;
import org.dromara.jpom.permission.MethodFeature;
import org.dromara.jpom.socket.BaseProxyHandler;
import org.dromara.jpom.socket.ConsoleCommandOp;
import org.dromara.jpom.transport.IProxyWebSocket;
import java.io.IOException;
import java.util.Map;
/**
* 控制台消息处理器
*
* @author bwcx_jzy
* @since 2019/4/19
*/
@Feature(cls = ClassFeature.PROJECT_CONSOLE, method = MethodFeature.EXECUTE)
public class ConsoleHandler extends BaseProxyHandler {
public ConsoleHandler() {
super(NodeUrl.TopSocket);
}
@Override
protected Object[] getParameters(Map attributes) {
return new Object[]{"projectId", attributes.get("projectId"), "copyId", attributes.get("copyId")};
}
@Override
protected String handleTextMessage(Map attributes,
IProxyWebSocket proxySession,
JSONObject json,
ConsoleCommandOp consoleCommandOp) throws IOException {
//ProjectInfoCacheModel dataItem = (ProjectInfoCacheModel) attributes.get("dataItem");
// UserModel userModel = (UserModel) attributes.get("userInfo");
// if (RunMode.Dsl.name().equals(dataItem.getRunMode()) && userModel.isDemoUser()) {
// if (consoleCommandOp == ConsoleCommandOp.stop || consoleCommandOp == ConsoleCommandOp.start || consoleCommandOp == ConsoleCommandOp.restart) {
// return PermissionInterceptor.DEMO_TIP;
// }
// }
ConsoleCommandOp[] commandOps = new ConsoleCommandOp[]{ConsoleCommandOp.heart, ConsoleCommandOp.showlog};
if (!ArrayUtil.contains(commandOps, consoleCommandOp)) {
super.logOpt(this.getClass(), attributes, json);
}
proxySession.send(json.toString());
return null;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy