|
|
@ -56,7 +56,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<input type="file" id="serverFile" name="serverFile" hidden onchange="fnImportFile(this);" />
|
|
|
|
|
|
|
|
|
|
|
|
<jsp:include page="/WEB-INF/jsp/include/bottom.jsp" />
|
|
|
|
<jsp:include page="/WEB-INF/jsp/include/bottom.jsp" />
|
|
|
|
|
|
|
|
|
|
|
@ -66,7 +66,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
<script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 수동 배치 실행
|
|
|
|
|
|
|
|
*/
|
|
|
|
function exceuteBatch(batch){
|
|
|
|
function exceuteBatch(batch){
|
|
|
|
ajax.get({
|
|
|
|
ajax.get({
|
|
|
|
url : wctx.url("/user/superUser/executeBatch.do"),
|
|
|
|
url : wctx.url("/user/superUser/executeBatch.do"),
|
|
|
@ -77,28 +79,89 @@ function exceuteBatch(batch){
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var tempPathArray = [];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 파일트리 컨텍스트 메뉴
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
function customContextMenu(node){
|
|
|
|
|
|
|
|
var items = {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
newDirectory : {
|
|
|
|
|
|
|
|
label:"디렉토리 추가",
|
|
|
|
|
|
|
|
action:function(data){
|
|
|
|
|
|
|
|
var inst = $.jstree.reference(data.reference);
|
|
|
|
|
|
|
|
var obj = inst.get_node(data.reference);
|
|
|
|
|
|
|
|
var pathArray = $("#fileTree").jstree("get_path", obj.id);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var directoryName = prompt("디렉토리명을 입력하세요");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(directoryName != null && directoryName != ""){
|
|
|
|
|
|
|
|
pathArray.push(directoryName);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ajax.post({
|
|
|
|
|
|
|
|
url : wctx.url("/user/superUser/createDirectory.do"),
|
|
|
|
|
|
|
|
data : {
|
|
|
|
|
|
|
|
directories : pathArray
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
success : resp => {
|
|
|
|
|
|
|
|
if(resp.saved){
|
|
|
|
|
|
|
|
getFileTree();
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
alert("폴더 생성에 실패하였습니다.");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
newFile : {
|
|
|
|
|
|
|
|
label:"파일 추가",
|
|
|
|
|
|
|
|
action:function(data){
|
|
|
|
|
|
|
|
var inst = $.jstree.reference(data.reference);
|
|
|
|
|
|
|
|
var obj = inst.get_node(data.reference);
|
|
|
|
|
|
|
|
var pathArray = $("#fileTree").jstree("get_path", obj.id);
|
|
|
|
|
|
|
|
tempPathArray = pathArray;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$("#serverFile").click();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(node.type == "file") {
|
|
|
|
|
|
|
|
delete items.newDirectory;
|
|
|
|
|
|
|
|
delete items.newFile;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return items;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$('#fileTree').jstree({
|
|
|
|
$('#fileTree').jstree({
|
|
|
|
"core" : {
|
|
|
|
"core" : {
|
|
|
|
"data": {}
|
|
|
|
"data": {}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"plugins": ["types"],
|
|
|
|
"plugins": ["types","contextmenu"],
|
|
|
|
"types" : {
|
|
|
|
"types" : {
|
|
|
|
"directory" : { "icon" : "fa fa-folder" },
|
|
|
|
"directory" : { "icon" : "fa fa-folder" },
|
|
|
|
"file" : { "icon" : "fa fa-file" }
|
|
|
|
"file" : { "icon" : "fa fa-file" }
|
|
|
|
},
|
|
|
|
},
|
|
|
|
trace: true,
|
|
|
|
trace: true,
|
|
|
|
core:{check_callback:true,
|
|
|
|
core : {
|
|
|
|
multiple:false
|
|
|
|
check_callback:true,
|
|
|
|
},
|
|
|
|
multiple:false
|
|
|
|
checkbox:{
|
|
|
|
},
|
|
|
|
whole_node:false,
|
|
|
|
contextmenu : {
|
|
|
|
tie_selection:false
|
|
|
|
items : customContextMenu
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
$("#fileTree").bind("refresh.jstree", function(){
|
|
|
|
$("#fileTree").bind("refresh.jstree", function(){
|
|
|
|
$(this).jstree("open_all");
|
|
|
|
$(this).jstree("open_all");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 파일트리 조회
|
|
|
|
|
|
|
|
*/
|
|
|
|
function getFileTree(){
|
|
|
|
function getFileTree(){
|
|
|
|
ajax.get({
|
|
|
|
ajax.get({
|
|
|
|
url : wctx.url("/user/superUser/getFileTree.do"),
|
|
|
|
url : wctx.url("/user/superUser/getFileTree.do"),
|
|
|
@ -113,6 +176,33 @@ function getFileTree(){
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 파일 추가
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
function fnImportFile(obj){
|
|
|
|
|
|
|
|
if(obj.files.length == 0){
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var form = new FormData();
|
|
|
|
|
|
|
|
form.append("newFile", obj.files[0]);
|
|
|
|
|
|
|
|
form.append("directories[]", tempPathArray);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ajax.post({
|
|
|
|
|
|
|
|
url : wctx.url("/user/superUser/importFile.do"),
|
|
|
|
|
|
|
|
data : form,
|
|
|
|
|
|
|
|
processData : false,
|
|
|
|
|
|
|
|
contentType : false,
|
|
|
|
|
|
|
|
success : resp => {
|
|
|
|
|
|
|
|
if(resp.saved){
|
|
|
|
|
|
|
|
getFileTree();
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
alert("파일 추가에 실패하였습니다.");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$(document).ready(function(){
|
|
|
|
$(document).ready(function(){
|
|
|
|
getFileTree();
|
|
|
|
getFileTree();
|
|
|
|
});
|
|
|
|
});
|
|
|
|