-
Notifications
You must be signed in to change notification settings - Fork 571
/
Copy pathboot.ts
209 lines (181 loc) · 5.67 KB
/
boot.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
import './utils/ensure-platform-support';
import 'setimmediate';
import { parse } from 'cookie';
import getConfig from '../get-config';
import { boot as bootWithoutAuth } from './boot-without-auth';
import { boot as bootLoggingOut } from './logging-out';
const config = getConfig();
const clearStorage = (): Promise<void> =>
new Promise((resolveStorage) => {
localStorage.removeItem('access_token');
localStorage.removeItem('lastSyncedTime');
localStorage.removeItem('localQueue:note');
localStorage.removeItem('localQueue:preferences');
localStorage.removeItem('localQueue:tag');
localStorage.removeItem('stored_user');
window.electron?.send('appStateUpdate', {});
const settings = localStorage.getItem('simpleNote');
if (settings) {
try {
const { accountName, ...otherSettings } = JSON.parse(settings);
localStorage.setItem('simpleNote', JSON.stringify(otherSettings));
} catch (e) {
// pass - we only care if we can successfully do this,
// not if we fail to do it
}
}
Promise.all([
new Promise((resolve) => {
const r = indexedDB.deleteDatabase('ghost');
r.onupgradeneeded = resolve;
r.onblocked = resolve;
r.onsuccess = resolve;
r.onerror = resolve;
}),
new Promise((resolve) => {
const r = indexedDB.deleteDatabase('simplenote');
r.onupgradeneeded = resolve;
r.onblocked = resolve;
r.onsuccess = resolve;
r.onerror = resolve;
}),
new Promise((resolve) => {
const r = indexedDB.deleteDatabase('simplenote_v2');
r.onupgradeneeded = resolve;
r.onblocked = resolve;
r.onsuccess = resolve;
r.onerror = resolve;
}),
])
.then(() => {
window.electron?.send('clearCookies');
resolveStorage();
})
.catch(() => resolveStorage());
});
const forceReload = () => history.go();
const loadAccount = () => {
const storedUserData = localStorage.getItem('stored_user');
if (!storedUserData) {
return [null, null];
}
try {
const storedUser = JSON.parse(storedUserData);
return [storedUser.accessToken, storedUser.username];
} catch (e) {
return [null, null];
}
};
const saveAccount = (accessToken: string, username: string): void => {
localStorage.setItem(
'stored_user',
JSON.stringify({ accessToken, username })
);
};
const getStoredAccount = () => {
const [storedToken, storedUsername] = loadAccount();
// App Engine gets preference if it sends authentication details
const cookie = parse(document.cookie);
if (config.is_app_engine && cookie?.token && cookie?.email) {
if (cookie.email !== storedUsername) {
clearStorage();
saveAccount(cookie.token, cookie.email);
}
return [cookie.token, cookie.email];
}
if (storedToken) {
return [storedToken, storedUsername];
}
const accessToken = localStorage.getItem('access_token');
if (accessToken) {
return [accessToken, null];
}
return [null, null];
};
const [storedToken, storedUsername] = getStoredAccount();
if (config.is_app_engine && !storedToken) {
window.webConfig?.signout?.(() => {
window.location = `${config.app_engine_url}/`;
});
}
const ensureNormalization = () =>
!('normalize' in String.prototype)
? import(/* webpackChunkName: 'unorm' */ 'unorm')
: Promise.resolve();
// @TODO: Move this into some framework spot
// still no IE support
// https://tc39.github.io/ecma262/#sec-array.prototype.findindex
/* eslint-disable */
if (!Array.prototype.findIndex) {
Object.defineProperty(Array.prototype, 'findIndex', {
value: function (predicate: Function) {
// 1. Let O be ? ToObject(this value).
if (this == null) {
throw new TypeError('"this" is null or not defined');
}
var o = Object(this);
// 2. Let len be ? ToLength(? Get(O, "length")).
var len = o.length >>> 0;
// 3. If IsCallable(predicate) is false, throw a TypeError exception.
if (typeof predicate !== 'function') {
throw new TypeError('predicate must be a function');
}
// 4. If thisArg was supplied, let T be thisArg; else let T be undefined.
var thisArg = arguments[1];
// 5. Let k be 0.
var k = 0;
// 6. Repeat, while k < len
while (k < len) {
// a. Let Pk be ! ToString(k).
// b. Let kValue be ? Get(O, Pk).
// c. Let testResult be ToBoolean(? Call(predicate, T, « kValue, k, O »)).
// d. If testResult is true, return k.
var kValue = o[k];
if (predicate.call(thisArg, kValue, k, o)) {
return k;
}
// e. Increase k by 1.
k++;
}
// 7. Return -1.
return -1;
},
configurable: true,
writable: true,
});
}
/* eslint-enable */
const run = (token: string | null, username: string | null) => {
if (token) {
Promise.all([
ensureNormalization(),
import(/* webpackChunkName: 'boot-with-auth' */ './boot-with-auth'),
]).then(([unormPolyfillLoaded, { bootWithToken }]) => {
bootWithToken(
() => {
bootLoggingOut();
clearStorage().then(() => {
if (window.webConfig?.signout) {
window.webConfig.signout(forceReload);
} else {
forceReload();
}
});
},
token,
username
);
});
} else {
window.addEventListener('storage', (event) => {
if (event.key === 'stored_user') {
forceReload();
}
});
bootWithoutAuth((token: string, username: string) => {
saveAccount(token, username);
run(token, username);
});
}
};
run(storedToken, storedUsername);