-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathmain.js
371 lines (319 loc) · 9.37 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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
const { app, BrowserWindow, ipcMain, dialog, TouchBar } = require(
'electron');
const dotenv = require('dotenv').config();
const nativeImage = require('electron').nativeImage;
const { autoUpdater } = require('electron-updater');
const log = require('electron-log');
const fs = require('fs');
const path = require('path');
const settings = require('electron-settings');
const svgo = require('svgo');
const execFile = require('child_process').execFile;
const mozjpeg = require('mozjpeg');
const pngquant = require('pngquant-bin');
const makeDir = require('make-dir');
const { TouchBarButton } = TouchBar;
const gifsicle = require('gifsicle');
global.debug = {
devTools: 0
};
/**
* Support for .env
*/
if(!dotenv.error){
global.debug = {
devTools: process.env.ELECTRON_DEBUG
};
}
/**
* Start logging in os log
*/
autoUpdater.logger = log;
autoUpdater.logger['transports'].file.level = 'info';
log.info('App starting...');
/**
* Init vars
*/
let svg = new svgo();
let mainWindow;
/**
* Create the browser window
*/
const createWindow = () => {
/** Create the browser window. */
mainWindow = new BrowserWindow({
titleBarStyle: 'hiddenInset',
width: 340,
height: 550,
minWidth: 340,
minHeight: 550,
frame: false,
backgroundColor: '#F7F7F7',
resizable: true,
show: false,
//icon: path.join(__dirname, 'assets/icons/png/64x64.png'),
webPreferences: {
nodeIntegration: true,
enableRemoteModule: true
}
});
/** Show window when ready */
mainWindow.on('ready-to-show', () => {
mainWindow.show();
});
/** Load index.html of the app. */
mainWindow.loadURL(path.join('file://', __dirname, '/index.html')).then(
() => {
/** Open the DevTools. */
global['debug'].devTools === 0 ||
mainWindow.webContents.openDevTools();
}
).catch(
(error) => {
log.error(error);
}
);
/** Open the DevTools. */
global['debug'].devTools === 0 || mainWindow.webContents.openDevTools();
/** Window closed */
mainWindow.on('closed', () => {
mainWindow = null;
});
/** Default settings */
const defaultSettings = {
notification: true,
folderswitch: true,
clearlist: false,
suffix: true,
updatecheck: true,
subfolder: false,
};
/** set missing settings */
const newSettings = Object.assign({}, defaultSettings, settings.getSync());
settings.setSync(newSettings);
mainWindow.setTouchBar(touchBar);
require('./menu/mainmenu');
};
/** Touchbar support */
let touchBarResult = new TouchBarButton({
label: 'Let me shrink some images!',
backgroundColor: '#000000',
click: () => {
dialog.showOpenDialog({
properties: ['openFile', 'multiSelections']
}).then(result => {
if (result.canceled)
{
return;
}
for (let filePath of result.filePaths)
{
processFile(filePath, path.basename(filePath));
}
}).catch(err => {
log.error(err);
});
}
});
let touchBarIcon = new TouchBarButton({
backgroundColor: '#000000',
'icon': nativeImage.createFromPath(path.join(__dirname, 'assets/icons/png/16x16.png')),
iconPosition: 'center'
});
const touchBar = new TouchBar({
items: [
touchBarResult
]
});
/** Add Touchbar icon */
touchBar.escapeItem = touchBarIcon;
app.on('will-finish-launching', () => {
app.on('open-file', (event, filePath) => {
event.preventDefault();
processFile(filePath, path.basename(filePath));
});
});
/** Start app */
app.on('ready', () => {
createWindow();
if (settings.getSync('updatecheck') === true)
{
autoUpdater.checkForUpdatesAndNotify().catch((error) => {
log.error(error);
});
}
});
/** Quit when all windows are closed. */
app.on('window-all-closed', () => {
if (process.platform !== 'darwin')
{
app.quit();
}
});
app.on('activate', () => {
if (mainWindow === null)
{
createWindow();
}
});
/** When the update has been downloaded and is ready to be installed, notify the BrowserWindow */
autoUpdater.on('update-downloaded', (info) => {
log.info(info);
mainWindow.webContents.send('updateReady');
});
/** When receiving a quitAndInstall signal, quit and install the new version ;) */
ipcMain.on('quitAndInstall', (event, arg) => {
log.info(event);
log.info(arg);
autoUpdater.quitAndInstall();
});
/** Main logic */
ipcMain.on(
'shrinkImage', (event, fileName, filePath) => {
processFile(filePath, fileName);
}
);
/**
* Shrinking the image
* @param {string} filePath Filepath
* @param {string} fileName Filename
*/
const processFile = (filePath, fileName) => {
/** Focus window on drag */
!mainWindow || mainWindow.focus();
/** Change Touchbar */
touchBarResult.label = 'I am shrinking for you';
/** Get filesize */
let sizeOrig = getFileSize(filePath, false);
/** Process image(s) */
fs.readFile(filePath, 'utf8', (err, data) => {
if (err)
{
throw err;
}
app.addRecentDocument(filePath);
const newFile = generateNewPath(filePath);
switch (path.extname(fileName).toLowerCase())
{
case '.svg':
{
svg.optimize(data).then((result) => {
fs.writeFile(newFile, result.data, (err) => {
touchBarResult.label = 'Your shrunken image: ' +
newFile;
sendToRenderer(err, newFile, sizeOrig);
});
}).catch((error) => {
dialog.showErrorBox('Error', error.message);
});
break;
}
case '.jpg':
case '.jpeg':
{
/** Create temp file from original, see #54 **/
let origFile;
let addTmpFile = !settings.getSync('suffix') && !settings.getSync('subfolder');
if (addTmpFile) {
origFile = newFile + '.tmp';
fs.copyFileSync(filePath, origFile);
}else {
origFile = filePath;
}
execFile(mozjpeg, ['-outfile', newFile, origFile], (err) => {
/** Delete tmp file **/
!addTmpFile || fs.unlinkSync(origFile);
touchBarResult.label = 'Your shrunken image: ' + newFile;
sendToRenderer(err, newFile, sizeOrig);
});
break;
}
case '.png':
{
execFile(pngquant, ['-fo', newFile, filePath], (err) => {
touchBarResult.label = 'Your shrunken image: ' + newFile;
sendToRenderer(err, newFile, sizeOrig);
});
break;
}
case '.gif':
{
execFile(gifsicle, ['-o', newFile, filePath, '-O=2', '-i'],
err => {
touchBarResult.label = 'Your shrunken image: ' +
newFile;
sendToRenderer(err, newFile, sizeOrig);
});
break;
}
default:
mainWindow.webContents.send('error');
dialog.showMessageBoxSync({
'type': 'error',
'message': 'Only PNG SVG, JPG and GIF allowed'
});
}
});
};
/**
* Generate new path to shrunken file
* @param {string} pathName Filepath
* @return {object} filepath object
*/
const generateNewPath = (pathName) => {
let objPath = path.parse(pathName);
if ( settings.getSync('folderswitch') === false &&
typeof settings.getSync('savepath') !== 'undefined')
{
objPath.dir = settings.getSync('savepath')[0];
}
if (settings.getSync('subfolder'))
{
objPath.dir = objPath.dir + '/minified';
}
makeDir.sync(objPath.dir);
/** Suffix setting */
const suffix = settings.getSync('suffix') ? '.min' : '';
objPath.base = objPath.name + suffix + objPath.ext;
return path.format(objPath);
};
/**
* Calculate filesize
* @param {string} filePath Filepath
* @param {boolean} mb If true return as MB
* @return {number} filesize in MB or KB
*/
const getFileSize = (filePath, mb) => {
const stats = fs.statSync(filePath);
if (mb)
{
return stats.size / 1024;
}
return stats.size;
};
/**
* Send data to renderer script
* @param {object} err Error message
* @param {string} newFile New filename
* @param {number} sizeOrig Original filesize
*/
const sendToRenderer = (err, newFile, sizeOrig) => {
if (!err)
{
let sizeShrinked = getFileSize(newFile, false);
mainWindow.webContents.send(
'isShrinked',
newFile,
sizeOrig,
sizeShrinked
);
} else
{
log.error(err);
mainWindow.webContents.send('error');
dialog.showMessageBoxSync({
'type': 'error',
'message': 'I\'m not able to write your new image. Sorry! Error: ' + err
});
}
};