-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
291 lines (257 loc) · 7.9 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
/**
* 该模块为 APP 主线程,负责控制应用生命周期、
* 处理和调度消息的发送与接收
*/
const {
app,
BrowserWindow,
Menu,
Tray,
ipcMain,
dialog
} = require("electron");
// 进程实例数量检测(仅允许一个 app 实例运行)
// const isSecondInstance = app.makeSingleInstance(() => {
// function showWin(winName) {
// if (!global[winName].isVisible()) {
// global[winName].show();
// }
// global[winName].focus();
// }
// // 当第二个进程实例开启时显示并聚焦第一个实例主窗口
// global.mainWin && showWin("mainWin");
// global.userInitWin && showWin("userInitWin");
// });
// 杀死第二个进程实例
// if (isSecondInstance) {
// app.exit();
// }
const { spawn } = require("child_process");
const myIp = require("internal-ip").v4.sync();
const randomID = require("crypto-random-string");
const progress = require("progress-stream");
const fs = require("fs");
const comm = require("./communication"); // 通信模块
const {
basename,
extname
} = require("path");
const downloadsFolder = app.getPath("downloads");
const lanToolFolder = `${downloadsFolder}/LANTool`;
const imageFolder = lanToolFolder + "/images"; // 图片文件夹
const fileFolder = lanToolFolder + "/files"; // 默认文件下载文件夹
try {
fs.mkdirSync(lanToolFolder);
fs.mkdirSync(imageFolder);
fs.mkdirSync(fileFolder);
} catch (e) {}
// 创建新用户
function createNewUser() {
global.userInitWin = new BrowserWindow({
width: 780,
height: 500,
minWidth: 780,
minHeight: 500,
frame: false,
show: false
});
global.userInitWin.loadURL(`file://${__dirname}/createNewUser.html`);
global.userInitWin.once("ready-to-show", () => global.userInitWin.show());
return new Promise((resolve, reject) => {
ipcMain.once("new-user-creation-done", (event, selfInfo) => {
resolve(selfInfo);
})
});
}
// 向主窗口 render 线程发送消息
function sendToMainWin(...args) {
global.mainWin && global.mainWin.webContents.send(...args);
}
// Python 子进程.
const pyChild = spawn("python3", [`${__dirname}/python/message.py`, myIp]);
pyChild.stderr.on("data", err => {
console.log(err.toString());
});
// 文本消息事件
comm.on("message", message => {
sendToMainWin("recive-msg", message);
});
// 发送文本信息的请求事件
ipcMain.on("send-msg", (event, message) => {
comm.sendTextMsg(message.target, message.msg);
});
// 握手消息事件
comm.on("handshake", user => {
sendToMainWin("add-user", user);
comm.handshakeACK(user.ip);
});
// 广播上线握手消息的请求事件
ipcMain.on("broadcast", comm.broadcast);
// 握手确认消息事件
comm.on("handshakeACK", user => {
sendToMainWin("add-user", user);
});
// 其他客户端的下线广播消息事件
comm.on("offline", ({ uid }) => {
sendToMainWin("del-user", uid);
});
// 通用文件消息事件处理函数
function fileDataHandler(socket, info) {
const fileEvt = `${info.uid}-${info.type}-${info.fileName}`;
const progressEvt = `progress-recive-${info.uid}-${info.fileName}`;
const finishEvt = fileEvt + "-finish";
// 注册文件是否接收的事件
ipcMain.once(fileEvt, (event, status) => {
if (status === "accept") {
let path, monitor;
if (info.type === "image") {
path = imageFolder + "/" + info.fileName;
} else {
path = fileFolder + "/" + info.fileName;
// 速度、接收量监视器
monitor = progress({
length: info.size,
time: 200
});
// 接收时实时监视事件
monitor.on("progress", progress => {
sendToMainWin(progressEvt, progress);
});
}
const ws = fs.createWriteStream(path);
// 文件写入本地完成事件
ws.once("finish", () => {
sendToMainWin(finishEvt, path);
});
socket.fAccept(ws, monitor);
} else if(status === "reject") {
socket.fReject();
}
});
// 发送接收文件事件到 render 线程
sendToMainWin(info.type, info);
}
// 通用发送文件事件处理函数
function sendFileDataHandler(event, info) {
const sendEvt = `${info.uid}-${info.type}-${info.fileName}-send`;
const progressEvt = `progress-send-${info.uid}-${info.fileName}`;
const sendStartEvt = sendEvt + "-processing";
const finishEvt = sendEvt + "-finish";
let rs, sendFunc;
if (info.type === "image") {
rs = fs.createReadStream(info.path);
sendFunc = comm.sendImage;
} else {
// 速度、接收量监视器
const monitor = progress({
length: info.size,
time: 200
});
// 传输时实时监视事件
monitor.on("progress", progress => {
sendToMainWin(progressEvt, progress);
});
rs = fs.createReadStream(info.path).pipe(monitor);
sendFunc = comm.sendFile;
}
info.rs = rs;
// 向 render 线程发送开始发送文件的事件
sendFunc(info, () => {
sendToMainWin(sendStartEvt);
}, err => {
// 发送完成,向 render 线程发送消息
sendToMainWin(finishEvt, err);
});
}
// 文件类型判断
function fileType(extname) {
return extname === ".jpg" ? "image" :
extname === ".jpeg" ? "image" :
extname === ".png" ? "image" :
extname === ".gif" ? "image" :
extname === ".bmp" ? "image" :
extname === ".ico" ? "image" : "file";
}
// 图片消息事件
comm.on("image", fileDataHandler);
// 发送图片消息的请求事件
ipcMain.on("send-image", sendFileDataHandler);
// 文件消息事件
comm.on("file", fileDataHandler);
// 发送文件消息的请求事件
ipcMain.on("send-file", sendFileDataHandler);
// 选择文件发送事件
ipcMain.on("select-file", (event, { target, uid }) => {
dialog.showOpenDialog({
buttonLabel: "发送",
properties: ["openFile", "multiSelections"]
}, paths => {
paths && paths.forEach(path => {
const info = {
uid,
path,
target,
side: "self",
avatar: global.selfInfo.avatar,
type: fileType(extname(path)),
fileName: basename(path).replace(/\s+/g, "")
};
if (info.type === "file") {
info.size = fs.statSync(path).size;
}
sendToMainWin("send-file-chose", info);
});
});
});
// 来自 render 线程的 app 退出请求事件
ipcMain.once("app-quit", app.quit);
app.once("before-quit", () => {
comm.offline(); // 退出前发送下线广播
});
app.on("ready", async () => {
// 从配置文件获取用户信息
try {
global.selfInfo = require("./selfInfo.json");
} catch(e) {
// 用户为新用户,新建配置文件
global.selfInfo = await createNewUser();
global.selfInfo.uid = randomID(8);
fs.writeFileSync(`${__dirname}/selfInfo.json`, JSON.stringify(selfInfo));
}
global.selfInfo.ip = myIp;
// 创建主窗口
global.mainWin = new BrowserWindow({
width: 900,
height: 640,
minWidth: 900,
minHeight: 640,
frame: false,
show: false
});
global.mainWin.loadURL(`file://${__dirname}/main.html`);
global.mainWin.once("ready-to-show", () => {
if (global.userInitWin) {
global.userInitWin.close();
global.userInitWin = null;
}
global.mainWin.show();
comm.broadcast();
});
//global.mainWin.webContents.openDevTools();
// 系统托盘
global.tray = new Tray(`${__dirname}/img/owl.png`);
const contextMenu = Menu.buildFromTemplate([
{
label: '显示主界面',
click() {
global.mainWin.show();
global.mainWin.focus();
}
}, {
label: '退出',
click: app.quit
}
]);
global.tray.setToolTip('LAN-Tool');
global.tray.setContextMenu(contextMenu);
});