-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmain.ts
265 lines (258 loc) · 8.74 KB
/
main.ts
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
import { app, BrowserWindow, screen, ipcMain, shell, Menu } from 'electron';
import * as path from 'path';
import * as url from 'url';
const { setup: setupPushReceiver } = require('electron-push-receiver');
// reference on notification: https://ourcodeworld.com/articles/read/204/using-native-desktop-notification-with-electron-framework
const notifier = require('node-notifier');
const { menu } = require('./menu');
const onError = (err, response) => {
console.error(err, response);
};
const isWindows = process.platform === 'win32';
let win;
let serve: boolean;
const args = process.argv.slice(1);
const log = require('electron-log');
const { autoUpdater } = require('electron-updater');
autoUpdater.logger = log;
autoUpdater.logger.transports.file.level = 'info';
const nativeImage = require('electron').nativeImage;
const isDev = require('electron-is-dev');
serve = args.some(val => val === '--serve');
ipcMain.on('sent-login-message', (event, url) => {
const authUrl = url;
const size = screen.getPrimaryDisplay().workAreaSize;
let authWindow = new BrowserWindow({
width: 700,
height: 500,
show: false,
alwaysOnTop: true,
webPreferences: {
nodeIntegration: true
},
});
authWindow.show();
const menus = Menu.buildFromTemplate([]);
authWindow.setMenu(menus);
const handleRedirect = (e, uri) => {
shell.openExternal(uri);
};
authWindow.webContents.on('will-navigate', handleRedirect);
authWindow.loadURL(authUrl + 'login');
const ses = authWindow.webContents.session;
ses.clearCache();
ses.cookies.get({})
.then((cookies) => {
cookies.forEach(cookie => {
let uRl = '';
// get prefix, like https://www.
uRl += cookie.secure ? 'https://' : 'http://';
uRl += cookie.domain.charAt(0) === '.' ? 'www' : '';
// append domain and path
uRl += cookie.domain;
uRl += cookie.path;
ses.cookies.remove(uRl, cookie.name);
});
}).catch((error) => {
console.log(error);
});
function handleCallback() {
const currentURL = authWindow.webContents.getURL();
let raw = null;
let token = null;
let email = null;
let name = null;
let avatar = null;
let id = null;
let subscription = null;
let expiresAt = null;
const params = currentURL.split('?');
if (params && params.length === 2) {
if (params[0] === authUrl + 'authorized') {
try {
raw = params[1];
token = raw.split('&')[0];
token = token.split('=')[1];
email = raw.split('&')[1];
email = email.split('=')[1];
name = raw.split('&')[2];
name = name.split('=')[1];
avatar = raw.split('&')[3];
avatar = avatar.split('=')[1];
id = raw.split('&')[4];
id = id.split('=')[1];
subscription = raw.split('&')[5];
subscription = subscription.split('=')[1];
expiresAt = raw.split('&')[6];
expiresAt = expiresAt.split('=')[1];
event.sender.send('received-login-message', [email, name, avatar, token, id, subscription, expiresAt]);
authWindow.destroy();
} catch (e) {
log.info(e);
}
}
}
}
authWindow.webContents.on('did-finish-load', (e: any, urls: string) => {
handleCallback();
});
authWindow.on('closed', () => {
authWindow = null;
});
});
///////////////////// AUTO UPDATED /////////////////////////////
// this is just to test autoUpdater feature.
let icon = nativeImage.createFromPath(path.join(__dirname, '../assets/icon/linux/icon.png'));
function showMessage(message, title) {
notifier.notify({
message,
title,
// Special sound
// Case Sensitive string for location of sound file, or use one of OS X's native sounds
// Only Notification Center or Windows Toasters
sound: true,// "Bottle",
// The absolute path to the icon of the message
// (doesn't work on balloons)
// If not found, a system icon will be shown
icon: icon,
// Wait with callback (onClick event of the toast), until user action is taken against notification
wait: true
}, onError);
notifier.on('click', (notifierObject, options) => {
// TODO: implement when a user click on notification.
});
}
function sendStatusToWindow(text: string, title) {
showMessage(text, title);
}
if (!isDev) {
autoUpdater.on('checking-for-update', () => {
// sendStatusToWindow('Checking for update...', 'check updates');
// tag
});
autoUpdater.on('update-available', () => {
// sendStatusToWindow('Update available.', 'update available');
});
autoUpdater.on('update-not-available', () => {
// sendStatusToWindow('Update not available.', 'No Update available');
});
autoUpdater.on('error', (err: string) => {
// sendStatusToWindow('Error in auto-updater. ' + err, '');
});
autoUpdater.on('download-progress', (progressObj: { bytesPerSecond: string; percent: string; transferred: string; total: string; }) => {
let logMessage = 'Download speed: ' + progressObj.bytesPerSecond;
logMessage = logMessage + ' - Downloaded ' + progressObj.percent + '%';
logMessage =
logMessage +
' (' +
progressObj.transferred +
'/' +
progressObj.total +
')';
});
autoUpdater.on('update-downloaded', (event, releaseNotes, releaseName) => {
autoUpdater.quitAndInstall(true, true);
});
}
let iconName;
if (process.platform === 'win32') {
iconName = nativeImage.createFromPath(path.join(__dirname, '../assets/icon/win/icon.png'));
} else
if (process.platform === 'darwin') {
iconName = nativeImage.createFromPath(path.join(__dirname, '../assets/icon/mac/icon.png'));
} else {
iconName = nativeImage.createFromPath(path.join(__dirname, '../assets/icon/linux/icon.png'));
}
function createWindow() {
autoUpdater.setFeedURL({
provider: 'github',
owner: 'yegobox',
repo: 'flipper',
token: process.env.GH_TOKEN
});
autoUpdater.allowPrerelease = true;
if (!isDev) {
try {
setInterval(() => {
autoUpdater.checkForUpdatesAndNotify();
}, 600000); // set the timer to run every 10 min. to check for update
} catch (e) { }
}
const electronScreen = screen;
const size = electronScreen.getPrimaryDisplay().workAreaSize;
win = new BrowserWindow({
x: 0,
y: 0,
frame: isWindows ? false : true, // Remove frame to hide default menu,
width: size.width,
height: size.height,
webPreferences: {
preload: path.join(__dirname, 'preload.js'),
nodeIntegration: true
},
icon: iconName
});
win.setMenu(null);
if (serve) {
require('electron-reload')(__dirname, {
electron: require(`${__dirname}/node_modules/electron`)
});
win.loadURL('http://localhost:4200');
} else {
win.loadURL(url.format({
pathname: path.join(__dirname, 'dist/index.html'),
protocol: 'file:',
slashes: true
}));
}
if (serve) {
// win.webContents.openDevTools();
}
setupPushReceiver(win.webContents);
// Emitted when the window is closed.
win.on('closed', () => {
// Dereference the window object, usually you would store window
// in an array if your app supports multi windows, this is the time
// when you should delete the corresponding element.
win = null;
});
}
try {
// 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('ready', createWindow);
// Quit when all windows are closed.
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') { app.quit(); }
});
app.on('activate', () => {
if (win === null) { createWindow(); }
});
// Register an event listener. When ipcRenderer sends mouse click co-ordinates, show menu at that point.
/*eslint no-shadow: ["error", { "allow": ["args"] }]*/
/*eslint-env es6*/
ipcMain.on(`display-app-menu`, (e, args) => {
if (isWindows && win) {
menu.popup({
window: win,
x: args.x,
y: args.y
});
}
});
} catch (e) {
// Catch Error // throw e;
}
// https://www.electron.build/auto-update#appupdatersetfeedurloptions
// for knowing the downloaded progress will use bellow code.
// TODO: https://gist.github.com/the3moon/0e9325228f6334dabac6dadd7a3fc0b9
// TODO: integrate analytics https://kilianvalkhof.com/2018/apps/using-google-analytics-to-gather-usage-statistics-in-electron/
// docs:
// http://muldersoft.com/docs/stdutils_readme.html
// https://github.com/electron-userland/electron-builder/issues/1084
// https://stackoverflow.com/questions/24326685/pin-icons-to-taskbar
// https://www.electron.build/configuration/nsis
// cd C:\Program Files\Couchbase\Sync Gateway
// sync_gateway.exe serviceconfig.json
// https://forums.couchbase.com/t/admin-api-localhost-website-cors/10965/3