|
|
|
@ -73,7 +73,7 @@ public class LsctBean extends AbstractBean {
|
|
|
|
|
* @throws NumberFormatException
|
|
|
|
|
* @throws SftpException
|
|
|
|
|
*/
|
|
|
|
|
public List<DataObject> getCrdnLsctList(RentQuery req) throws Exception {
|
|
|
|
|
public List<DataObject> getCrdnLsctList(RentQuery req) {
|
|
|
|
|
// 기존 과태료 시스템에서 사용하던 암/복호화 함수 사용을 위해서..
|
|
|
|
|
XitAria crypto = new XitAria("xit-aria");
|
|
|
|
|
|
|
|
|
@ -237,6 +237,8 @@ public class LsctBean extends AbstractBean {
|
|
|
|
|
throw new RuntimeException("[F] 단속 부가 대장 등록 작업에 실패하였습니다."); // 예외를 발생시켜서 DB Rollback
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////
|
|
|
|
|
//FTP 서버 정보 조회
|
|
|
|
|
DataObject main = mainList.get(iLoop);
|
|
|
|
@ -252,9 +254,10 @@ public class LsctBean extends AbstractBean {
|
|
|
|
|
Channel channel = null;
|
|
|
|
|
ChannelSftp channelSftp = null;
|
|
|
|
|
//세션객체 생성
|
|
|
|
|
try {
|
|
|
|
|
session = jsch.getSession("admin", "127.0.0.1", Integer.parseInt("22"));
|
|
|
|
|
session.setPassword("pass");
|
|
|
|
|
|
|
|
|
|
session.setPassword("pass");
|
|
|
|
|
|
|
|
|
|
//세션관련 설정정보 설정
|
|
|
|
|
java.util.Properties config = new java.util.Properties();
|
|
|
|
@ -262,19 +265,25 @@ public class LsctBean extends AbstractBean {
|
|
|
|
|
//호스트 정보 검사하지 않는다.
|
|
|
|
|
config.put("StrictHostKeyChecking", "no");
|
|
|
|
|
session.setConfig(config);
|
|
|
|
|
session.setTimeout(10000); //타임아웃 설정
|
|
|
|
|
|
|
|
|
|
//log.info("connect.. " + connIp);
|
|
|
|
|
System.out.println("connect.. ");
|
|
|
|
|
session.setTimeout(10000);
|
|
|
|
|
session.connect(); //접속
|
|
|
|
|
channel = session.openChannel("sftp"); //sftp 채널 접속
|
|
|
|
|
channel.connect();
|
|
|
|
|
|
|
|
|
|
} catch (NumberFormatException e) {
|
|
|
|
|
throw new RuntimeException("[F] FTP 접속 오류");
|
|
|
|
|
} catch (JSchException e) {
|
|
|
|
|
throw new RuntimeException("[F] FTP 접속 오류");
|
|
|
|
|
}
|
|
|
|
|
channelSftp = (ChannelSftp) channel;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
String remoteWorkPath = storageServer.string("REMOTE_WORK_PATH");
|
|
|
|
|
try {
|
|
|
|
|
channelSftp.cd(remoteWorkPath);
|
|
|
|
|
} catch (SftpException e) {
|
|
|
|
|
throw new RuntimeException("[F] FTP 경로 이동 오류");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//접속완료
|
|
|
|
|
///////////////////////////////////////////////////////////////////
|
|
|
|
@ -295,15 +304,31 @@ public class LsctBean extends AbstractBean {
|
|
|
|
|
|
|
|
|
|
String remoteFileName = main.string("MM_CODE")+i_char+".JPG";
|
|
|
|
|
String remoteFilePath = remoteWorkPath+remoteFileName;
|
|
|
|
|
InputStream is = channelSftp.get(remoteFilePath);
|
|
|
|
|
|
|
|
|
|
InputStream is;
|
|
|
|
|
try {
|
|
|
|
|
is = channelSftp.get(remoteFilePath);
|
|
|
|
|
} catch (SftpException e) {
|
|
|
|
|
throw new RuntimeException("[F] FTP 파일 읽기 오류");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(is == null) {
|
|
|
|
|
fileSearchEnd = true;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
byte[] bytesOfFile = is.readAllBytes();
|
|
|
|
|
byte[] bytesOfFile;
|
|
|
|
|
try {
|
|
|
|
|
bytesOfFile = is.readAllBytes();
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
throw new RuntimeException("[F] FTP 파일 읽기 오류");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
is.close();
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
throw new RuntimeException("[F] FTP 파일 읽기 오류");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/////////////////////////////////////////////
|
|
|
|
|
// 단속 파일 등록
|
|
|
|
@ -323,14 +348,9 @@ public class LsctBean extends AbstractBean {
|
|
|
|
|
//sftp연결종료
|
|
|
|
|
session.disconnect();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
// 단속 정보가 존재한다면 update??
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//사진?
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
}
|
|
|
|
|
//등록 또는 수정 완료
|
|
|
|
|
//////////////////////////
|
|
|
|
@ -364,7 +384,7 @@ public class LsctBean extends AbstractBean {
|
|
|
|
|
* @throws JSchException
|
|
|
|
|
* @throws NumberFormatException
|
|
|
|
|
*/
|
|
|
|
|
public List<DataObject> getLsctList(RentQuery req) throws Exception {
|
|
|
|
|
public List<DataObject> getLsctList(RentQuery req) {
|
|
|
|
|
// 기존 과태료 시스템에서 사용하던 암/복호화 함수 사용을 위해서..
|
|
|
|
|
XitAria crypto = new XitAria("xit-aria");
|
|
|
|
|
|
|
|
|
@ -545,9 +565,10 @@ public class LsctBean extends AbstractBean {
|
|
|
|
|
Channel channel = null;
|
|
|
|
|
ChannelSftp channelSftp = null;
|
|
|
|
|
//세션객체 생성
|
|
|
|
|
try {
|
|
|
|
|
session = jsch.getSession("admin", "127.0.0.1", Integer.parseInt("22"));
|
|
|
|
|
session.setPassword("pass");
|
|
|
|
|
|
|
|
|
|
session.setPassword("pass");
|
|
|
|
|
|
|
|
|
|
//세션관련 설정정보 설정
|
|
|
|
|
java.util.Properties config = new java.util.Properties();
|
|
|
|
@ -555,19 +576,25 @@ public class LsctBean extends AbstractBean {
|
|
|
|
|
//호스트 정보 검사하지 않는다.
|
|
|
|
|
config.put("StrictHostKeyChecking", "no");
|
|
|
|
|
session.setConfig(config);
|
|
|
|
|
session.setTimeout(10000); //타임아웃 설정
|
|
|
|
|
|
|
|
|
|
//log.info("connect.. " + connIp);
|
|
|
|
|
System.out.println("connect.. ");
|
|
|
|
|
session.setTimeout(10000);
|
|
|
|
|
session.connect(); //접속
|
|
|
|
|
channel = session.openChannel("sftp"); //sftp 채널 접속
|
|
|
|
|
channel.connect();
|
|
|
|
|
|
|
|
|
|
} catch (NumberFormatException e) {
|
|
|
|
|
throw new RuntimeException("[F] FTP 접속 오류");
|
|
|
|
|
} catch (JSchException e) {
|
|
|
|
|
throw new RuntimeException("[F] FTP 접속 오류");
|
|
|
|
|
}
|
|
|
|
|
channelSftp = (ChannelSftp) channel;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
String remoteWorkPath = storageServer.string("REMOTE_WORK_PATH");
|
|
|
|
|
try {
|
|
|
|
|
channelSftp.cd(remoteWorkPath);
|
|
|
|
|
} catch (SftpException e) {
|
|
|
|
|
throw new RuntimeException("[F] FTP 경로 이동 오류");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//접속완료
|
|
|
|
|
///////////////////////////////////////////////////////////////////
|
|
|
|
@ -588,15 +615,31 @@ public class LsctBean extends AbstractBean {
|
|
|
|
|
|
|
|
|
|
String remoteFileName = main.string("MM_CODE")+i_char+".JPG";
|
|
|
|
|
String remoteFilePath = remoteWorkPath+remoteFileName;
|
|
|
|
|
InputStream is = channelSftp.get(remoteFilePath);
|
|
|
|
|
|
|
|
|
|
InputStream is;
|
|
|
|
|
try {
|
|
|
|
|
is = channelSftp.get(remoteFilePath);
|
|
|
|
|
} catch (SftpException e) {
|
|
|
|
|
throw new RuntimeException("[F] FTP 파일 읽기 오류");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(is == null) {
|
|
|
|
|
fileSearchEnd = true;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
byte[] bytesOfFile = is.readAllBytes();
|
|
|
|
|
byte[] bytesOfFile;
|
|
|
|
|
try {
|
|
|
|
|
bytesOfFile = is.readAllBytes();
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
throw new RuntimeException("[F] FTP 파일 읽기 오류");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
is.close();
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
throw new RuntimeException("[F] FTP 파일 읽기 오류");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/////////////////////////////////////////////
|
|
|
|
|
// 단속 파일 등록
|
|
|
|
|