next-ucap-messenger/electron-projects/ucap-webmessenger-electron/src/index.ts

579 lines
14 KiB
TypeScript
Raw Normal View History

2019-12-12 08:15:09 +00:00
import { app, ipcMain, IpcMainEvent, Tray, Menu, shell } from 'electron';
import path from 'path';
import fse from 'fs-extra';
2019-12-15 16:06:07 +00:00
import semver from 'semver';
2019-11-11 06:53:39 +00:00
2019-12-17 08:27:08 +00:00
import AutoLaunch from 'auto-launch';
2019-11-11 06:53:39 +00:00
import { AppWindow } from './app/AppWindow';
import { now } from './util/now';
import { showUncaughtException } from './crash/show-uncaught-exception';
import {
UpdaterChannel,
FileChannel,
IdleStateChannel,
NotificationChannel,
2019-11-19 07:44:50 +00:00
ChatChannel,
2019-12-17 07:39:02 +00:00
MessengerChannel,
MessageChannel
2019-11-11 06:53:39 +00:00
} from '@ucap-webmessenger/native-electron';
import { ElectronNotificationService } from '@ucap-webmessenger/electron-notification';
2019-12-15 16:06:07 +00:00
import { ElectronUpdateWindowService } from '@ucap-webmessenger/electron-update-window';
2019-11-11 06:53:39 +00:00
import { root } from './util/root';
import { DefaultFolder } from './lib/default-folder';
import { FileUtil } from './lib/file-util';
import { IdleChecker } from './lib/idle-checker';
2019-12-12 08:15:09 +00:00
import {
NotificationRequest,
2019-12-17 07:39:02 +00:00
UpdateCheckConfig,
NotificationType
2019-12-12 08:15:09 +00:00
} from '@ucap-webmessenger/native';
2019-11-11 06:53:39 +00:00
import { ElectronAppChannel } from '@ucap-webmessenger/electron-core';
2019-12-13 04:45:08 +00:00
import { autoUpdater, CancellationToken } from 'electron-updater';
import log from 'electron-log';
2019-12-12 08:15:09 +00:00
import { RendererUpdater } from './lib/renderer-updater';
2019-11-11 06:53:39 +00:00
2019-11-18 06:02:24 +00:00
const appIconPath = __LINUX__
? path.join(__dirname, 'static', 'icon-logo.png')
2019-12-12 08:15:09 +00:00
: path.join(__dirname, 'resources/image', '64_64.png');
2019-11-18 06:02:24 +00:00
2019-11-11 06:53:39 +00:00
let appWindow: AppWindow | null = null;
2019-11-18 06:02:24 +00:00
let appTray: Tray | null = null;
2019-11-11 06:53:39 +00:00
const launchTime = now();
let readyTime: number | null = null;
type OnDidLoadFn = (window: AppWindow) => void;
let onDidLoadFns: Array<OnDidLoadFn> | null = [];
let preventQuit = false;
let notificationService: ElectronNotificationService | null;
2019-12-15 16:06:07 +00:00
let updateWindowService: ElectronUpdateWindowService | null;
2019-11-11 06:53:39 +00:00
function handleUncaughtException(error: Error) {
preventQuit = true;
// If we haven't got a window we'll assume it's because
// we've just launched and haven't created it yet.
// It could also be because we're encountering an unhandled
// exception on shutdown but that's less likely and since
// this only affects the presentation of the crash dialog
// it's a safe assumption to make.
const isLaunchError = appWindow === null;
if (appWindow) {
appWindow.destroy();
appWindow = null;
}
showUncaughtException(isLaunchError, error);
}
function getUptimeInSeconds() {
return (now() - launchTime) / 1000;
}
process.on('uncaughtException', (error: Error) => {
// error = withSourceMappedStack(error);
// reportError(error, getExtraErrorContext());
handleUncaughtException(error);
});
let isDuplicateInstance = false;
const gotSingleInstanceLock = app.requestSingleInstanceLock();
isDuplicateInstance = !gotSingleInstanceLock;
let idle: IdleChecker | null;
2019-12-12 08:15:09 +00:00
let rendererUpdater: RendererUpdater | undefined;
2019-11-11 06:53:39 +00:00
2019-12-13 04:45:08 +00:00
log.transports.file.level = 'debug';
let autoUpdaterCancellationToken: CancellationToken;
autoUpdater.autoDownload = false;
autoUpdater.logger = log;
2019-12-17 08:27:08 +00:00
const ucapMessengerLauncher = new AutoLaunch({
2019-12-18 04:44:26 +00:00
name: app.name
2019-12-17 08:27:08 +00:00
});
2019-11-11 06:53:39 +00:00
app.on(ElectronAppChannel.SecondInstance, (event, args, workingDirectory) => {
// Someone tried to run a second instance, we should focus our window.
if (appWindow) {
if (appWindow.isMinimized()) {
appWindow.restore();
}
if (!appWindow.isVisible()) {
appWindow.show();
}
appWindow.focus();
}
});
if (isDuplicateInstance) {
app.quit();
}
function createWindow() {
2019-11-18 06:02:24 +00:00
const window = new AppWindow(appIconPath);
2019-11-11 06:53:39 +00:00
if (__DEV__) {
// const {
// default: installExtension,
// REDUX_DEVTOOLS
// } = require('electron-devtools-installer');
import('electron-debug').then(ed => {
ed.default({ showDevTools: true });
});
import('electron-devtools-installer').then(edi => {
const ChromeLens = {
id: 'idikgljglpfilbhaboonnpnnincjhjkd',
2019-11-18 06:02:24 +00:00
electron: '>=1.2.1'
2019-11-11 06:53:39 +00:00
};
const extensions = [edi.REDUX_DEVTOOLS, ChromeLens];
for (const extension of extensions) {
try {
edi.default(extension);
} catch (e) {
console.log(e);
}
}
});
}
window.onClose(() => {
appWindow = null;
if (!__DARWIN__ && !preventQuit) {
app.quit();
}
});
window.onDidLoad(() => {
window.show();
const fns = onDidLoadFns;
onDidLoadFns = null;
for (const fn of fns) {
fn(window);
}
});
window.load();
appWindow = window;
}
2019-11-19 07:44:50 +00:00
function createTray() {
2019-11-18 06:02:24 +00:00
appTray = new Tray(appIconPath);
const contextMenu = Menu.buildFromTemplate([
{
label: '로그아웃',
// accelerator: 'Q',
// selector: 'terminate:',
click: () => {
appWindow.show();
2019-11-19 07:44:50 +00:00
appWindow.browserWindow.webContents.send(MessengerChannel.Logout);
}
},
{
label: '설정',
// accelerator: 'Q',
// selector: 'terminate:',
click: () => {
2019-11-21 01:29:19 +00:00
appWindow.show();
2019-11-19 07:44:50 +00:00
appWindow.browserWindow.webContents.send(MessengerChannel.ShowSetting);
2019-11-18 06:02:24 +00:00
}
},
{ label: '버전', submenu: [{ label: 'Ver. ' + app.getVersion() }] },
{
label: '종료',
// accelerator: 'Q',
// selector: 'terminate:',
click: () => {
// 메신저에 로그아웃 후 종료
appWindow = null;
app.exit();
}
}
]);
2019-11-18 07:49:41 +00:00
appTray.setToolTip('UCapMessenger');
2019-11-18 06:02:24 +00:00
appTray.setContextMenu(contextMenu);
appTray.on('click', () => {
appWindow.isVisible() ? appWindow.hide() : appWindow.show();
});
2019-11-19 07:44:50 +00:00
}
// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.on(ElectronAppChannel.Ready, () => {
if (isDuplicateInstance) {
return;
}
readyTime = now() - launchTime;
createWindow();
createTray();
2019-11-18 06:02:24 +00:00
2019-11-11 06:53:39 +00:00
notificationService = new ElectronNotificationService({
width: 340,
height: 100,
padding: 0,
borderRadius: 0,
// appIcon: iconPath,
displayTime: 5000,
defaultStyleContainer: {},
defaultStyleAppIcon: { display: 'none' },
defaultStyleImage: {},
defaultStyleClose: {},
2019-11-18 06:02:24 +00:00
defaultStyleText: {}
2019-11-11 06:53:39 +00:00
});
notificationService.options.defaultWindow.webPreferences.preload = path.join(
__dirname,
'resources/notification/preload.js'
);
notificationService.templatePath = path.join(
__dirname,
'resources/notification/template.html'
);
2019-12-15 16:06:07 +00:00
updateWindowService = new ElectronUpdateWindowService({
width: 500,
height: 160,
frame: false,
skipTaskbar: true,
alwaysOnTop: true,
maximizable: false,
onReady: () => {},
onAcceptUpdate: () => {
log.info('OnAcceptUpdate');
autoUpdaterCancellationToken = new CancellationToken();
autoUpdater.downloadUpdate(autoUpdaterCancellationToken);
},
onDenyUpdate: () => {
log.info('OnDenyUpdate');
updateWindowService.close();
},
onCancelDownload: () => {
autoUpdaterCancellationToken.cancel();
updateWindowService.close();
}
});
updateWindowService.templatePath = path.join(
__dirname,
'resources/update-window/template.html'
);
// updateWindowService.show();
2019-11-11 06:53:39 +00:00
ipcMain.on('uncaught-exception', (event: IpcMainEvent, error: Error) => {
handleUncaughtException(error);
});
ipcMain.on(
'send-error-report',
(
event: IpcMainEvent,
{ error, extra }: { error: Error; extra: { [key: string]: string } }
) => {}
);
});
// Quit when all windows are closed.
app.on(ElectronAppChannel.WindowAllClosed, () => {
// On OS X it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== 'darwin') {
app.quit();
}
});
app.on(ElectronAppChannel.Activate, () => {
onDidLoad(window => {
window.show();
});
});
function onDidLoad(fn: OnDidLoadFn) {
if (onDidLoadFns) {
onDidLoadFns.push(fn);
} else {
if (appWindow) {
fn(appWindow);
}
}
}
ipcMain.on(UpdaterChannel.Check, (event: IpcMainEvent, ...args: any[]) => {
2019-12-15 17:33:40 +00:00
// if (__DEV__) {
// event.returnValue = false;
// return;
// }
2019-12-15 16:06:07 +00:00
const ver = args[0];
2019-12-15 17:33:40 +00:00
2019-12-15 16:06:07 +00:00
if (semver.lt(app.getVersion(), ver)) {
2019-12-15 17:33:40 +00:00
autoUpdater
.checkForUpdatesAndNotify()
.then(result => {
if (!result) {
event.returnValue = false;
} else {
event.returnValue = true;
}
})
.catch(reason => {
event.returnValue = false;
});
2019-12-15 16:06:07 +00:00
} else {
2019-12-15 17:33:40 +00:00
event.returnValue = false;
2019-12-15 16:06:07 +00:00
}
2019-11-11 06:53:39 +00:00
});
2019-12-17 08:27:08 +00:00
ipcMain.on(
MessengerChannel.ChangeAutoLaunch,
(event: IpcMainEvent, ...args: any[]) => {
const isAutoLaunch = args[0] as boolean;
if (isAutoLaunch) {
ucapMessengerLauncher
.enable()
.then(() => {
event.returnValue = true;
console.log('AutoLaunch is enabled');
})
.catch(reason => {
event.returnValue = false;
});
} else {
ucapMessengerLauncher
.disable()
.then(() => {
event.returnValue = true;
console.log('AutoLaunch is disabled');
})
.catch(reason => {
event.returnValue = false;
});
}
}
);
2019-12-12 08:15:09 +00:00
ipcMain.on(
UpdaterChannel.StartCheckInstant,
(event: IpcMainEvent, ...args: any[]) => {
2019-12-15 09:07:25 +00:00
// const config = args[0] as UpdateCheckConfig;
// if (!!rendererUpdater) {
// rendererUpdater.stopCheck();
// rendererUpdater = null;
// }
// rendererUpdater = new RendererUpdater(appWindow.browserWindow, config); // default 10min
// rendererUpdater.startCheck();
2019-12-12 08:15:09 +00:00
}
);
ipcMain.on(
UpdaterChannel.StopCheckInstant,
(event: IpcMainEvent, ...args: any[]) => {
2019-12-15 09:07:25 +00:00
// if (!!rendererUpdater) {
// rendererUpdater.stopCheck();
// rendererUpdater = null;
// }
2019-12-12 08:15:09 +00:00
}
);
ipcMain.on(
UpdaterChannel.ApplyInstant,
(event: IpcMainEvent, ...args: any[]) => {
2019-12-15 09:07:25 +00:00
// if (!!rendererUpdater) {
// rendererUpdater.apply();
// }
2019-12-12 08:15:09 +00:00
}
);
2019-11-11 06:53:39 +00:00
ipcMain.on(FileChannel.ReadFile, (event: IpcMainEvent, ...args: any[]) => {
try {
fse.readFile(root(args[0]), (err, data) => {
if (!!err) {
2019-12-18 04:44:26 +00:00
event.returnValue = err;
2019-11-11 06:53:39 +00:00
} else {
2019-12-18 04:44:26 +00:00
event.returnValue = data;
2019-11-11 06:53:39 +00:00
}
});
} catch (error) {
event.returnValue = null;
}
});
ipcMain.on(
FileChannel.SaveFile,
async (event: IpcMainEvent, ...args: any[]) => {
try {
const buffer: Buffer = args[0];
const fileName: string = args[1];
2019-11-13 06:28:33 +00:00
const mimeType: string = args[2];
2019-11-11 06:53:39 +00:00
let savePath: string = path.join(
2019-11-13 06:28:33 +00:00
!!args[3] ? args[3] : DefaultFolder.downloads(),
2019-11-11 06:53:39 +00:00
fileName
);
savePath = await FileUtil.uniqueFileName(savePath);
fse.writeFile(savePath, buffer, err => {
if (!err) {
event.returnValue = savePath;
} else {
event.returnValue = undefined;
}
});
} catch (error) {
event.returnValue = undefined;
}
}
);
ipcMain.on(
FileChannel.OpenFolderItem,
async (event: IpcMainEvent, ...args: any[]) => {
try {
let folderItem: string = args[0];
const make: boolean = args[1];
if (!folderItem) {
folderItem = DefaultFolder.downloads();
}
let isSuccess = true;
if (make) {
fse.ensureDirSync(folderItem);
}
if (isSuccess && fse.existsSync(folderItem)) {
shell.openItem(folderItem);
} else {
isSuccess = false;
}
if (isSuccess) {
event.returnValue = true;
} else {
event.returnValue = false;
}
} catch (error) {
event.returnValue = false;
}
}
);
2019-11-11 06:53:39 +00:00
ipcMain.on(
IdleStateChannel.StartCheck,
(event: IpcMainEvent, ...args: any[]) => {
if (!!idle) {
idle.destoryChecker();
idle = null;
}
idle = new IdleChecker(appWindow.browserWindow); // default 10min
idle.startChecker();
}
);
ipcMain.on(
NotificationChannel.Notify,
(event: IpcMainEvent, ...args: any[]) => {
const noti: NotificationRequest = args[0];
notificationService.notify({
title: noti.title,
text: noti.contents,
image:
noti.image ||
2019-12-13 04:45:08 +00:00
path.join(
__dirname,
'resources/notification/images/img_nophoto_50.png'
),
2019-11-11 06:53:39 +00:00
sound: noti.useSound
? path.join(
'file://',
__dirname,
2019-12-13 04:45:08 +00:00
'resources/notification/sounds/messageAlarm.mp3'
2019-11-11 06:53:39 +00:00
)
: '',
onClick: e => {
appWindow.browserWindow.flashFrame(false);
2019-12-17 07:39:02 +00:00
if (noti.type === NotificationType.Event) {
appWindow.browserWindow.webContents.send(
ChatChannel.OpenRoom,
noti.seq
);
} else if (noti.type === NotificationType.Message) {
appWindow.browserWindow.webContents.send(
MessageChannel.OpenMessage,
noti.seq
);
}
appWindow.show();
e.close();
2019-11-18 06:02:24 +00:00
}
2019-11-11 06:53:39 +00:00
});
appWindow.browserWindow.flashFrame(true);
2019-11-11 06:53:39 +00:00
}
);
ipcMain.on(
NotificationChannel.CloseAllNotify,
(event: IpcMainEvent, ...args: any[]) => {
appWindow.browserWindow.flashFrame(false);
2019-11-11 06:53:39 +00:00
console.log('Channel.closeAllNotify', args);
}
);
2019-12-15 16:06:07 +00:00
autoUpdater.on('checking-for-update', () => {
log.info('Checking for update...');
});
autoUpdater.on('update-available', info => {
log.info(info);
log.info('Update available.');
updateWindowService.show();
});
autoUpdater.on('update-not-available', info => {
log.info('Update not available.');
});
autoUpdater.on('error', err => {
log.info('Error in auto-updater. ' + err);
});
autoUpdater.on('download-progress', progressObj => {
let logMessage = 'Download speed: ' + progressObj.bytesPerSecond;
logMessage = logMessage + ' - Downloaded ' + progressObj.percent + '%';
logMessage =
logMessage + ' (' + progressObj.transferred + '/' + progressObj.total + ')';
log.info(logMessage);
updateWindowService.setDownloadValue(
progressObj.transferred,
progressObj.total
);
});
autoUpdater.on('update-downloaded', info => {
log.info('Update downloaded');
updateWindowService.setDownloadComplete();
autoUpdater.quitAndInstall(true, true);
});