-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.ts
226 lines (202 loc) · 6.5 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
import { app, BrowserWindow, ipcMain, screen, session } from 'electron';
import * as path from 'path';
import * as url from 'url';
import * as https from 'https';
import * as querystring from 'querystring';
import * as os from 'os';
let win, serve;
const args = process.argv.slice(1);
serve = args.some(val => val === '--serve');
// namdien177 - github oauth app
const GITHUB_OAUTH = {
redirect_uri: 'http://localhost:4200',
url: `https://github.com/login/oauth/authorize?`,
client_id: 'b2c1fa872f64704b94a4',
client_secret: '1e3c5e56102b01548e6f8b450eb7df8afc5b8b56',
// Full access public & private repo.
// More Infor: https://developer.github.com/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/
scopes: ['repo']
};
function createWindow() {
const electronScreen = screen;
const size = electronScreen.getPrimaryDisplay().workAreaSize;
// Create the browser window.
win = new BrowserWindow({
x: size.width / 2 - (size.width > 1280 ? 1280 : size.width) / 2,
y: size.height / 2 - (size.height > 720 ? 720 : size.height) / 2,
width: size.width > 1280 ? 1280 : size.width,
height: size.height > 720 ? 720 : size.height,
frame: false,
minHeight: 620,
minWidth: 1050,
webPreferences: {
nodeIntegration: true,
},
});
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();
try {
BrowserWindow.addDevToolsExtension(
path.join(
os.homedir(),
'/AppData/Local/Google/Chrome/User Data/Default/Extensions/lmhkpmbekcpmknklioeibfkpmmfibljd/2.17.0_0'
),
);
} catch (e) {
console.error(e);
}
}
// 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', () => {
// 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('activate', () => {
// On OS X it's common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open.
if (win === null) {
createWindow();
}
});
} catch (e) {
// Catch Error
// throw e;
}
ipcMain.on('github-authenticate', function (event, arg) {
let credentials = null;
let crashErrorLogs = null;
let requested = false;
const filter = {
urls: ['https://*.github.com/*']
};
const githubAuthUrl = `${ GITHUB_OAUTH.url }client_id=${ GITHUB_OAUTH.client_id }&scope=${ GITHUB_OAUTH.scopes }`;
const electronScreen = screen;
const size = electronScreen.getPrimaryDisplay().workAreaSize;
const authWindow = new BrowserWindow({
width: size.width > 1280 ? 1280 : size.width,
height: size.height > 720 ? 720 : size.height,
show: false,
parent: win,
modal: true,
skipTaskbar: true,
webPreferences: {
nodeIntegration: false
}
});
authWindow.loadURL(githubAuthUrl);
authWindow.webContents.on('did-finish-load', function () {
authWindow.show();
if (serve) {
authWindow.webContents.openDevTools();
}
});
authWindow.webContents.on('will-navigate', async (eventNavigate, urlPassing) => {
await clearSession(urlPassing, authWindow);
if (urlPassing.match(/^(http:\/\/localhost:4200\/\?via=github&code=)/) && !requested) {
requested = true;
const authorized = await handleUrl(urlPassing, 139);
if (authorized) {
credentials = authorized['access_token'];
crashErrorLogs = authorized['crashError'];
if (credentials) {
authWindow.close();
}
}
}
});
session.defaultSession.webRequest.onCompleted(filter, async (details) => {
const onCompleteUrl = details.url;
await clearSession(onCompleteUrl, authWindow);
});
authWindow.on('close', () => event.returnValue = { credentials, crashErrorLogs });
});
async function clearSession(urlSession: string, authWindowPassing: BrowserWindow) {
if (urlSession.includes('code=')) {
const githubSession = authWindowPassing.webContents.session;
// clear cookies for next time login;
await githubSession.clearStorageData({
storages: [
'cookies', 'localstorage'
]
});
}
}
async function handleUrl(codeUrl, row?: number) {
const raw_code = /code=([^&]*)/.exec(codeUrl) || null,
code = (raw_code && raw_code.length > 1) ? raw_code[1] : null,
error = /\?error=(.+)$/.exec(codeUrl);
// If there is a code in the callback, proceed to get token from github
if (code) {
const postData = querystring.stringify({
'client_id': GITHUB_OAUTH.client_id,
'client_secret': GITHUB_OAUTH.client_secret,
'code': code
});
const post = {
host: 'github.com',
path: '/login/oauth/access_token',
method: 'POST',
headers:
{
'Content-Type': 'application/x-www-form-urlencoded',
'Content-Length': postData.length,
'Accept': 'application/json'
}
};
const requestGitHub = new Promise((resolve, reject) => {
const req = https.request(post, function (response) {
let result = '';
response.on('data', function (data) {
result = result + data;
});
response.on('end', function () {
const json = JSON.parse(result.toString());
console.log(row, 'access token:' + json.access_token);
if (json.access_token) {
resolve(json);
} else {
resolve(null);
}
});
response.on('error', function (err) {
console.error('ERROR: ' + err.message);
resolve(null);
});
});
req.write(postData);
req.end();
});
return await requestGitHub;
} else if (error) {
console.error('couldnt login to github!');
return null;
}
}