This commit is contained in:
Rinjae
2025-09-05 18:57:45 +09:00
commit aacc1a389e
1229 changed files with 167963 additions and 0 deletions
@@ -0,0 +1,102 @@
package com.eactive.eai.agent.encryption;
import org.springframework.stereotype.Component;
import com.eactive.eai.common.exception.ExceptionUtil;
import com.eactive.eai.common.lifecycle.Lifecycle;
import com.eactive.eai.common.lifecycle.LifecycleException;
import com.eactive.eai.common.lifecycle.LifecycleListener;
import com.eactive.eai.common.lifecycle.LifecycleSupport;
import com.eactive.eai.common.property.PropManager;
import com.eactive.eai.common.server.Keys;
import com.eactive.eai.common.util.ApplicationContextProvider;
import com.eactive.eai.common.util.Logger;
@Component
public class EncryptionManager implements Lifecycle {
static Logger logger = Logger.getLogger(Logger.LOGGER_DEFAULT);
private static final String GROUP_NAME = "ENCRYPTION";
private String encryptYN = "";
private boolean started;
private LifecycleSupport lifecycle = new LifecycleSupport(this);
private EncryptionManager() {
}
public static EncryptionManager getInstance() {
return ApplicationContextProvider.getContext().getBean(EncryptionManager.class);
}
public void start() throws LifecycleException {
if (started)
throw new LifecycleException("RECEAICMM201");
lifecycle.fireLifecycleEvent(STARTING_EVENT, this);
try {
init();
} catch (Exception e) {
throw new LifecycleException(ExceptionUtil.getErrorCode(e, "RECEAICMM202"));
}
started = true;
lifecycle.fireLifecycleEvent(STARTED_EVENT, this);
}
private void init() throws Exception {
encryptYN = "";
encryptYN = PropManager.getInstance().getProperty(GROUP_NAME, System.getProperty(Keys.SERVER_KEY));
if (encryptYN == null) {
encryptYN = "N";
} else {
if (encryptYN.trim().length() == 0) {
encryptYN = "N";
}
}
logger.warn("EncryptionManager] init :: encryption YN [ " + encryptYN + " ]");
}
public synchronized void reload() throws Exception {
if (logger.isWarn()) {
logger.warn("EncryptionManager] reload all Started ...");
}
init();
if (logger.isWarn()) {
logger.warn("EncryptionManager] reload all finished ...");
}
}
public void stop() throws LifecycleException {
if (!started)
throw new LifecycleException("RECEAICMM203");
lifecycle.fireLifecycleEvent(STOPING_EVENT, this);
encryptYN = null;
started = false;
lifecycle.fireLifecycleEvent(STOPPED_EVENT, this);
}
public void addLifecycleListener(LifecycleListener listener) {
lifecycle.addLifecycleListener(listener);
}
public LifecycleListener[] findLifecycleListeners() {
return lifecycle.findLifecycleListeners();
}
public void removeLifecycleListener(LifecycleListener listener) {
lifecycle.removeLifecycleListener(listener);
}
public boolean isStarted() {
return this.started;
}
public String getEncryptYN() {
return encryptYN;
}
}
@@ -0,0 +1,65 @@
package com.eactive.eai.agent.encryption;
import com.eactive.eai.agent.command.Command;
import com.eactive.eai.agent.command.CommandException;
import com.eactive.eai.common.util.Logger;
public class ReloadEncryptionYNCommand extends Command {
private static final long serialVersionUID = 1L;
public ReloadEncryptionYNCommand() {
super("ReloadEncryptionYNCommand");
}
public Object execute() throws CommandException {
Logger logger = Logger.getLogger(Logger.LOGGER_DEFAULT);
if (logger.isInfo())
logger.info(this.name + " is executed");
if (!(args instanceof String)) {
String rspErrorCode = "EAIINIT001";
String msg = makeException(rspErrorCode, null);
if (logger.isError())
logger.error(msg);
throw new CommandException(msg);
}
try {
EncryptionManager manager = EncryptionManager.getInstance();
String keyName = (String) args;
if (keyName != null) {
if ("ENC".equals(keyName)) {
manager.reload();
if (logger.isWarn())
logger.warn(this.name + "] 암호화 여부가 Reload 되었습니다.");
} else {
// String rspErrorCode = "EAIINIT002";
String msg = "EAIINIT002 암호화 여부 동기화중 keyName [" + keyName + "] 오류가 발생하였습니다. ";
if (logger.isError())
logger.error(msg);
throw new CommandException(msg);
}
}
} catch (Exception e) {
String rspErrorCode = "EAIINIT003";
String msg = makeException(rspErrorCode, e);
if (logger.isError())
logger.error(msg, e);
throw new CommandException(msg);
}
return "success";
}
// public static void main(String args[]) throws Exception {
// test();
//}
// private static void test() throws Exception {
// Command command = new ReloadEncryptionYNCommand();
// command.setArgs("ENC");
// AgentUtil.broadcast(command);
//
// }
}