|
| 1 | +// Modules to control application life and create native browser window |
| 2 | +const {app, BrowserWindow, ipcMain} = require('electron') |
| 3 | +const path = require('path') |
| 4 | +const exec = require('child_process').exec; |
| 5 | +const iconv = require('iconv-lite'); |
| 6 | +const fs = require('fs'); |
| 7 | + |
| 8 | +String.prototype.replaceAll = function(org, dest) { |
| 9 | + return this.split(org).join(dest); |
| 10 | +} |
| 11 | + |
| 12 | +String.prototype.insert = function(_idx, _str) { |
| 13 | + return this.substring(0,_idx) + _str + this.substring(_idx,this.length); |
| 14 | +} |
| 15 | + |
| 16 | +function execute(command, callback) { |
| 17 | + exec(command, (error, stdout, stderr) => { |
| 18 | + callback(stdout); |
| 19 | + }); |
| 20 | +}; |
| 21 | +/* Event handler for asynchronous incoming messages */ |
| 22 | +ipcMain.on("repoStartPath-check", (event, arg) => { |
| 23 | + console.log('checking configure.conf'); |
| 24 | + var repoStartPath = fs.readFileSync("./configure.conf", 'utf8'); |
| 25 | + repoStartPath = repoStartPath.split('\n')[0]; |
| 26 | + repoStartPath = repoStartPath.substring('PATH'.length, repoStartPath.length); |
| 27 | + repoStartPath = repoStartPath.replaceAll(" ",""); |
| 28 | + repoStartPath = repoStartPath.substring(0, repoStartPath.length-1); |
| 29 | + console.log('PATH is '+ repoStartPath); |
| 30 | + |
| 31 | + event.sender.send("repoStartPath-reply", repoStartPath); |
| 32 | +}); |
| 33 | + |
| 34 | +/* Event handler for asynchronous incoming messages */ |
| 35 | +ipcMain.on("addUsers", (event, arg) => { |
| 36 | + var arr = arg.split('#$') |
| 37 | + |
| 38 | + var repoPath = arr[0].split('\n'); |
| 39 | + var userList = arr[1].split('\n'); |
| 40 | + var _repoStartPath = arr[2] |
| 41 | + _repoStartPath = _repoStartPath.replaceAll("\n",""); |
| 42 | + console.log('repoStartPath is '+_repoStartPath); |
| 43 | + |
| 44 | + var successLog = []; |
| 45 | + var errorLog = []; |
| 46 | + |
| 47 | + for(var i =0;i<repoPath.length;i++){ |
| 48 | + repoPath[i] = repoPath[i].replaceAll(" ",""); |
| 49 | + var ss = repoPath[i].indexOf('/', 8); |
| 50 | + var path = _repoStartPath + "/" + repoPath[i].substring(ss, repoPath[i].length) + "/conf/" |
| 51 | + path = path.replaceAll("//","/"); |
| 52 | + console.log(path + 'is started'); |
| 53 | + |
| 54 | + try{ |
| 55 | + var data = fs.readFileSync(path+"authz", 'utf8'); |
| 56 | + |
| 57 | + var successUserList = []; |
| 58 | + |
| 59 | + var startPoint = data.indexOf("admin = ") + "admin = ".length; |
| 60 | + for(var j=0;j<userList.length;j++){ |
| 61 | + // 중복 유저 체크 |
| 62 | + var lines = data.toString().split("\n"); |
| 63 | + var userStr = ""; |
| 64 | + for(let k = 0;k< lines.length;k++){ |
| 65 | + if(lines[k].indexOf('admin =') != -1){ |
| 66 | + console.log(lines[k]); |
| 67 | + console.log('startPoint '+startPoint); |
| 68 | + userStr = lines[k].substring(lines[k].indexOf("admin = ") + "admin = ".length,lines[k].length); |
| 69 | + userStr = userStr.replace(/ /g,""); |
| 70 | + console.log(userStr); |
| 71 | + break |
| 72 | + } |
| 73 | + } |
| 74 | + |
| 75 | + var userArr = userStr.split(','); |
| 76 | + console.log(userArr); |
| 77 | + |
| 78 | + |
| 79 | + var flag = false; |
| 80 | + for(let k = 0;k< userArr.length;k++){ |
| 81 | + if(userList[j] == userArr[k]){ |
| 82 | + flag = true; |
| 83 | + errorLog.push(repoPath[i]+' 작업실패, '+userList[j]+' 유저가 이미 존재합니다.'+'\n') |
| 84 | + break |
| 85 | + } |
| 86 | + } |
| 87 | + |
| 88 | + if(flag){ |
| 89 | + continue; |
| 90 | + } |
| 91 | + |
| 92 | + data = data.insert(startPoint, userList[j] + ", "); |
| 93 | + successUserList.push(userList[j]); |
| 94 | + } |
| 95 | + fs.writeFileSync(path+"authz", data); |
| 96 | + console.log( 'success to add users in authz ' + path); |
| 97 | + |
| 98 | + |
| 99 | + data = fs.readFileSync(path+"passwd", 'utf8') |
| 100 | + startPoint = data.indexOf("[users]", 200) + "[users]".length; |
| 101 | + for(var j=0;j<successUserList.length;j++){ |
| 102 | + data = data.insert(startPoint, "\r\n" + successUserList[j] + " = " + '1234'); |
| 103 | + } |
| 104 | + fs.writeFileSync(path+"passwd", data); |
| 105 | + console.log('success to add users in passwd ' + path); |
| 106 | + for (let j = 0; j < successUserList.length; j++) { |
| 107 | + successLog.push(repoPath[i]+' 작업성공, '+successUserList[j]+'가 추가되었습니다.'+'\n'); |
| 108 | + } |
| 109 | + }catch(e){ |
| 110 | + console.log('bad path') |
| 111 | + errorLog.push(repoPath[i]+' 작업실패, 잘못된 경로입니다.'+'\n') |
| 112 | + event.sender.send("alert-result", 'error'); |
| 113 | + console.log(e) |
| 114 | + } |
| 115 | + } |
| 116 | + event.sender.send("alert-result", successLog.toString()+errorLog.toString()); |
| 117 | +}); |
| 118 | + |
| 119 | +function createWindow () { |
| 120 | + // Create the browser window. |
| 121 | + const mainWindow = new BrowserWindow({ |
| 122 | + width: 800, |
| 123 | + height: 600, |
| 124 | + webPreferences: { |
| 125 | + nodeIntegration: true, |
| 126 | + preload: path.join(__dirname, 'preload.js') |
| 127 | + } |
| 128 | + }) |
| 129 | + |
| 130 | + // and load the index.html of the app. |
| 131 | + mainWindow.loadFile('index.html') |
| 132 | + |
| 133 | + // Open the DevTools. |
| 134 | + // mainWindow.webContents.openDevTools() |
| 135 | +} |
| 136 | + |
| 137 | +// This method will be called when Electron has finished |
| 138 | +// initialization and is ready to create browser windows. |
| 139 | +// Some APIs can only be used after this event occurs. |
| 140 | +app.whenReady().then(() => { |
| 141 | + createWindow() |
| 142 | + |
| 143 | + app.on('activate', function () { |
| 144 | + // On macOS it's common to re-create a window in the app when the |
| 145 | + // dock icon is clicked and there are no other windows open. |
| 146 | + if (BrowserWindow.getAllWindows().length === 0) createWindow() |
| 147 | + }) |
| 148 | +}) |
| 149 | + |
| 150 | +// Quit when all windows are closed, except on macOS. There, it's common |
| 151 | +// for applications and their menu bar to stay active until the user quits |
| 152 | +// explicitly with Cmd + Q. |
| 153 | +app.on('window-all-closed', function () { |
| 154 | + if (process.platform !== 'darwin') app.quit() |
| 155 | +}) |
| 156 | + |
| 157 | +// In this file you can include the rest of your app's specific main process |
| 158 | +// code. You can also put them in separate files and require them here. |
0 commit comments