-
Notifications
You must be signed in to change notification settings - Fork 862
/
Copy pathstorage.ts
742 lines (651 loc) · 19.8 KB
/
storage.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
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
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
import { Encryption } from "./encryption";
import { OTPEntry, OTPType, OTPAlgorithm, CodeState } from "./otp";
import { StorageLocation, UserSettings } from "./settings";
import { DataType } from "./otp";
export class BrowserStorage {
private static async getStorageLocation(): Promise<StorageLocation> {
await UserSettings.updateItems();
const managedLocation = await ManagedStorage.get<StorageLocation>(
"storageArea"
);
if (
managedLocation === StorageLocation.Sync ||
managedLocation === StorageLocation.Local
) {
return new Promise((resolve) => {
if (UserSettings.items.storageLocation !== managedLocation) {
UserSettings.items.storageLocation = managedLocation;
UserSettings.commitItems();
}
resolve(managedLocation);
return;
});
} else if (
UserSettings.items.storageLocation !== StorageLocation.Sync &&
UserSettings.items.storageLocation !== StorageLocation.Local
) {
return new Promise((resolve, reject) => {
let amountSync: number;
let amountLocal: number;
chrome.storage.local.get((local) => {
amountLocal = Object.keys(local).length;
if (local.LocalStorage) {
amountLocal--;
}
try {
chrome.storage.sync.get((sync) => {
amountSync = Object.keys(sync).length;
// If storage location can't be found try to auto-detect storage
// location
if (amountLocal > amountSync && amountSync === 0) {
UserSettings.items.storageLocation = StorageLocation.Local;
} else if (amountLocal < amountSync && amountLocal === 0) {
UserSettings.items.storageLocation = StorageLocation.Sync;
} else {
// Use default
UserSettings.items.storageLocation = StorageLocation.Sync;
}
UserSettings.commitItems();
resolve(UserSettings.items.storageLocation);
return;
});
} catch (error) {
reject(error);
return;
}
});
});
} else {
return new Promise((resolve) => {
resolve(UserSettings.items.storageLocation || StorageLocation.Sync);
return;
});
}
}
// TODO: promise this
static async get() {
const storageLocation = await this.getStorageLocation();
const removeOtherData = function (items: Record<string, unknown>): void {
delete items.key;
delete items.LocalStorage;
for (const itemId in items) {
const item = items[itemId];
if (
item !== null &&
typeof item === "object" &&
"dataType" in item &&
item.dataType === "Key"
) {
delete items[itemId];
}
}
};
let items = {} as { [key: string]: OTPStorage };
if (storageLocation === "local") {
items = await chrome.storage.local.get();
} else if (storageLocation === "sync") {
items = await chrome.storage.sync.get();
}
removeOtherData(items);
return items;
}
static async getKeys(): Promise<OldKey | Key[]> {
const storageLocation = await this.getStorageLocation();
const data = (await chrome.storage[storageLocation].get()) as Record<
string,
unknown
>;
// Return old key first, so we know to run a migration
if (data && typeof data === "object" && "key" in data) {
if (isOldKey(data.key)) {
return data.key;
} else {
console.error("'key' is malformed!");
}
}
const keys: Key[] = [];
if (data && typeof data === "object") {
for (const record in data) {
const key = data[record];
if (isKey(key)) {
keys.push(key);
}
}
}
return keys;
}
static async set(data: object) {
const storageLocation = await this.getStorageLocation();
if (storageLocation === StorageLocation.Local) {
await chrome.storage.local.set(data);
} else if (storageLocation === StorageLocation.Sync) {
await chrome.storage.sync.set(data);
}
return;
}
static async remove(data: string | string[]) {
const storageLocation = await this.getStorageLocation();
if (storageLocation === "local") {
await chrome.storage.local.remove(data);
} else if (storageLocation === "sync") {
await chrome.storage.sync.remove(data);
}
return;
}
// Use for Chrome only.
// https://github.com/Authenticator-Extension/Authenticator/issues/412
static async clearLogs() {
const storageLocation = await this.getStorageLocation();
if (storageLocation === "local") {
const data = await chrome.storage.local.get();
await chrome.storage.local.clear();
await chrome.storage.local.set(data);
} else if (storageLocation === "sync") {
const data = await chrome.storage.sync.get();
await chrome.storage.sync.clear();
await chrome.storage.sync.set(data);
}
}
}
export function isOldKey(key: unknown): key is OldKey {
return Boolean(
key &&
typeof key === "object" &&
"enc" in key &&
"hash" in key &&
key.enc &&
key.hash &&
typeof key.enc === "string" &&
typeof key.hash === "string"
);
}
function isKey(key: unknown): key is Key {
return Boolean(
key &&
typeof key === "object" &&
"dataType" in key &&
"id" in key &&
"salt" in key &&
key.dataType === "Key" &&
key.id &&
key.salt &&
typeof key.id === "string" &&
typeof key.salt === "string"
);
}
export class EntryStorage {
private static getOTPStorageFromEntry(
entry: OTPEntry,
unencrypted?: boolean
): OTPStorage {
let secret: string;
if (!entry.secret && entry.encData && entry.keyId) {
return {
dataType: DataType.EncOTPStorage,
keyId: entry.keyId,
data: entry.encData,
index: entry.index,
};
} else if (entry.secret) {
secret = entry.secret;
} else {
secret = "";
console.warn("Invalid entry", entry);
}
let encrypted = entry.encryption?.getEncryptionStatus() || false;
if (unencrypted && entry.secret) {
secret = entry.secret;
encrypted = false;
}
const storageItem: RawOTPStorage = {
encrypted,
hash: entry.hash,
index: entry.index,
type: entry.type,
secret,
};
if (entry.pinned) {
storageItem.pinned = true;
}
if (entry.type === OTPType.hotp || entry.type === OTPType.hhex) {
storageItem.counter = entry.counter;
}
if (entry.period && entry.period !== 30) {
storageItem.period = entry.period;
}
if (entry.issuer) {
storageItem.issuer = entry.issuer;
}
if (entry.account) {
storageItem.account = entry.account;
}
if (entry.digits && entry.digits !== 6) {
storageItem.digits = entry.digits;
}
if (entry.algorithm && entry.algorithm !== OTPAlgorithm.SHA1) {
storageItem.algorithm = OTPAlgorithm[entry.algorithm];
}
if (entry.encryption?.getEncryptionKeyId()) {
storageItem.keyId = entry.encryption.getEncryptionKeyId();
}
storageItem.dataType = DataType.OTPStorage;
if (
!unencrypted &&
encrypted &&
entry.encryption?.getEncryptionStatus() &&
entry.encryption.getEncryptionKeyId()
) {
const encData = entry.encryption.getEncryptedString(
JSON.stringify(storageItem)
);
return {
dataType: DataType.EncOTPStorage,
data: encData,
keyId: entry.encryption.getEncryptionKeyId(),
index: entry.index,
};
} else if (encrypted) {
console.error("Could not encrypt malformed entry: ", entry);
}
return storageItem;
}
private static ensureUniqueIndex(data: { [hash: string]: OTPStorage }) {
const tempEntryArray: [hash: string, storage: OTPStorage][] = [];
for (const hash of Object.keys(data)) {
if (
hash === "UserSettings" ||
(data[hash] as { dataType: string }).dataType === "Key" ||
!this.isValidEntry(data, hash)
) {
continue;
}
tempEntryArray.push([hash, data[hash]]);
}
tempEntryArray.sort((a, b) => {
return a[1].index - b[1].index;
});
let i = 0;
const newData: { [hash: string]: OTPStorage } = tempEntryArray.reduce(
(previous: { [hash: string]: OTPStorage }, entry) => {
const mergedData = {
...previous,
[entry[0]]: { ...entry[1], index: i },
};
i += 1;
return mergedData;
},
{}
);
return newData;
}
private static isOTPStorage(entry: unknown) {
if (typeof entry !== "object") {
return false;
}
if (!entry || !("secret" in entry || "data" in entry)) {
return false;
}
return true;
}
private static isValidEntry(
_data: { [hash: string]: OTPStorage },
hash: string
) {
if (typeof _data[hash] !== "object") {
console.log('Key "' + hash + '" is not an object');
return false;
} else {
if (!this.isOTPStorage(_data[hash])) {
console.log('Key "' + hash + '" is not OTPStorage');
return false;
}
return true;
}
}
static async hasEncryptionKey(): Promise<boolean> {
const keys = await BrowserStorage.getKeys();
if (isOldKey(keys)) {
return true;
} else {
return keys.length !== 0;
}
}
static getExport(data: OTPEntryInterface[], encrypted?: boolean) {
try {
const exportData: { [hash: string]: OTPStorage } = {};
for (const entry of data) {
// Skip unable-decrypted data
if (entry.code === CodeState.Encrypted || !entry.secret) {
continue;
}
exportData[entry.hash] = this.getOTPStorageFromEntry(entry, !encrypted);
}
return exportData;
} catch (error) {
return error;
}
}
static async backupGetExport(encryption: Encryption, encrypted?: boolean) {
const _data = await BrowserStorage.get();
for (const hash of Object.keys(_data)) {
if (
hash === "UserSettings" ||
(_data[hash] as { dataType: string }).dataType === "Key" ||
!this.isValidEntry(_data, hash)
) {
delete _data[hash];
continue;
}
const entry = _data[hash];
// TODO: fix this
if (entry.dataType === "EncOTPStorage") {
continue;
}
// remove unnecessary fields
if (!(entry.type === OTPType.hotp) && !(entry.type === OTPType.hhex)) {
delete entry.counter;
}
if (entry.period === 30) {
delete entry.period;
}
if (!entry.issuer) {
delete entry.issuer;
}
if (!entry.account) {
delete entry.account;
}
if (entry.digits === 6) {
delete entry.digits;
}
if (entry.algorithm === OTPAlgorithm[OTPAlgorithm.SHA1]) {
delete entry.algorithm;
}
delete entry.pinned;
if (!encrypted) {
// decrypt the data to export
if (entry.encrypted) {
const decryptedSecret = encryption.decryptSecretString(entry.secret);
if (decryptedSecret !== entry.secret && decryptedSecret !== null) {
entry.secret = decryptedSecret;
entry.encrypted = false;
}
}
// we need correct hash
if (hash !== entry.hash) {
_data[entry.hash] = entry;
delete _data[hash];
}
}
}
if (encryption.getEncryptionStatus()) {
const keys = await BrowserStorage.getKeys();
if (isOldKey(keys)) {
Object.assign(_data, { key: keys });
} else {
for (const key of keys) {
Object.assign(_data, { [key.id]: key });
}
}
}
return _data;
}
static async import(
encryption: Encryption,
data: { [hash: string]: RawOTPStorage }
) {
let _data = await BrowserStorage.get();
for (const hash of Object.keys(data)) {
// never trust data import from user
// data must be decrypted before calling this method
if (!data[hash].secret || data[hash].encrypted) {
// TODO: we need give a failed warning
continue;
}
const rawAlgorithm = data[hash].algorithm;
const entryData: {
account: string;
encrypted: false;
index: number;
issuer: string;
secret: string;
type: OTPType;
counter: number;
period: number;
hash: string;
digits: number;
algorithm: OTPAlgorithm;
pinned: boolean;
} = {
type: data[hash].type || OTPType.totp,
index: data[hash].index || 0,
issuer: data[hash].issuer || "",
account: data[hash].account || "",
encrypted: false,
secret: data[hash].secret,
counter: data[hash].counter || 0,
period: data[hash].period || 30,
digits: data[hash].digits || 6,
algorithm: rawAlgorithm
? (parseInt(rawAlgorithm) as OTPAlgorithm)
: OTPAlgorithm.SHA1,
pinned: data[hash].pinned || false,
hash: data[hash].hash || hash,
};
if (isNaN(entryData.period) || entryData.period <= 0) {
entryData.period = 30;
}
// If invalid digits, then use default.
if (entryData.digits > 10 || entryData.digits < 1) {
entryData.digits = 6;
}
// If invalid algorithm, then use default
if (!OTPAlgorithm[entryData.algorithm]) {
entryData.algorithm = OTPAlgorithm.SHA1;
}
if (/^(blz-|bliz-)/.test(entryData.secret)) {
const secretMatches = entryData.secret.match(/^(blz-|bliz-)(.*)/);
if (secretMatches && secretMatches.length >= 3) {
entryData.secret = secretMatches[2];
entryData.type = OTPType.battle;
}
}
if (/^stm-/.test(entryData.secret)) {
const secretMatches = entryData.secret.match(/^stm-(.*)/);
if (secretMatches && secretMatches.length >= 2) {
entryData.secret = secretMatches[1];
entryData.type = OTPType.steam;
}
}
if (
!/^[a-z2-7]+=*$/i.test(entryData.secret) &&
/^[0-9a-f]+$/i.test(entryData.secret) &&
entryData.type === OTPType.totp
) {
entryData.type = OTPType.hex;
}
if (
!/^[a-z2-7]+=*$/i.test(entryData.secret) &&
/^[0-9a-f]+$/i.test(entryData.secret) &&
entryData.type === OTPType.hotp
) {
entryData.type = OTPType.hhex;
}
// not a valid / old hash
if (
!/^[a-f0-9]{8}-?[a-f0-9]{4}-?4[a-f0-9]{3}-?[89ab][a-f0-9]{3}-?[a-f0-9]{12}$/.test(
hash
)
) {
entryData.hash = crypto.randomUUID();
delete data[hash];
}
const entry = new OTPEntry(entryData, encryption);
_data[entryData.hash] = this.getOTPStorageFromEntry(entry);
}
_data = this.ensureUniqueIndex(_data);
await BrowserStorage.set(_data);
}
static async add(entry: OTPEntry) {
await BrowserStorage.set({
[entry.hash]: this.getOTPStorageFromEntry(entry),
});
}
static async update(entry: OTPEntry) {
let _data = await BrowserStorage.get();
if (!Object.prototype.hasOwnProperty.call(_data, entry.hash)) {
throw new Error("Entry to change does not exist.");
}
const storageItem = this.getOTPStorageFromEntry(entry);
_data[entry.hash] = storageItem;
_data = this.ensureUniqueIndex(_data);
await BrowserStorage.set(_data);
}
static async set(entries: OTPEntry[]) {
let _data = await BrowserStorage.get();
entries.forEach((entry) => {
const storageItem = this.getOTPStorageFromEntry(entry);
_data[entry.hash] = storageItem;
});
_data = this.ensureUniqueIndex(_data);
await BrowserStorage.set(_data);
}
static async get() {
const _data = await BrowserStorage.get();
const data: OTPEntry[] = [];
for (const hash of Object.keys(_data)) {
if (
hash === "UserSettings" ||
(_data[hash] as { dataType: string }).dataType === "Key" ||
!this.isValidEntry(_data, hash)
) {
continue;
}
const entryData = _data[hash];
if (entryData.dataType === "EncOTPStorage") {
data.push(
new OTPEntry({
encrypted: true,
encData: entryData.data,
keyId: entryData.keyId,
hash,
index: entryData.index,
})
);
continue;
}
if (!entryData.hash) {
entryData.hash = hash;
}
if (!entryData.type) {
entryData.type = OTPType.totp;
}
let type: OTPType;
switch (entryData.type) {
case OTPType.totp:
case OTPType.hotp:
case OTPType.battle:
case OTPType.steam:
case OTPType.hex:
case OTPType.hhex:
type = entryData.type;
break;
default:
// we need correct the type here
// and save it
// We may have already had some error OTP type entries in the storage
// totp = 1
// hotp = 2
// battle = 3
// steam = 4
// hex = 5
// hhex = 6
if ((entryData.type as unknown) === 1) {
type = OTPType.totp;
} else if ((entryData.type as unknown) === 2) {
type = OTPType.hotp;
} else if ((entryData.type as unknown) === 3) {
type = OTPType.battle;
} else if ((entryData.type as unknown) === 4) {
type = OTPType.steam;
} else if ((entryData.type as unknown) === 5) {
type = OTPType.hex;
} else if ((entryData.type as unknown) === 6) {
type = OTPType.hhex;
} else {
type = OTPType.totp;
}
entryData.type = type;
}
let period: number | undefined;
if (
entryData.type === OTPType.totp &&
entryData.period &&
entryData.period > 0
) {
period = entryData.period;
}
const entry = new OTPEntry({
account: entryData.account,
encrypted: entryData.encrypted,
hash: entryData.hash,
index: entryData.index,
issuer: entryData.issuer,
secret: entryData.secret,
type,
counter: entryData.counter,
period,
digits: entryData.digits ? Number(entryData.digits) : undefined,
// @ts-expect-error - it's fine if this ends up undefined
algorithm: OTPAlgorithm[entryData.algorithm],
pinned: entryData.pinned,
});
data.push(entry);
}
data.sort((a, b) => {
return a.index - b.index;
});
return data;
}
static async remove(hash: string) {
await BrowserStorage.remove(hash);
}
static async delete(entry: OTPEntry) {
let _data = await BrowserStorage.get();
if (Object.prototype.hasOwnProperty.call(_data, entry.hash)) {
delete _data[entry.hash];
}
_data = this.ensureUniqueIndex(_data);
await BrowserStorage.remove(entry.hash);
await BrowserStorage.set(_data);
}
}
export class ManagedStorage {
static get<T>(key: string): T | undefined;
static get<T>(key: string, defaultValue: T): T;
static get<T>(key: string, defaultValue?: T) {
const managedStoragePromise = new Promise(
(resolve: (result: T | undefined) => void) => {
if (chrome.storage.managed) {
chrome.storage.managed.get((data) => {
if (chrome.runtime.lastError) {
return resolve(defaultValue);
}
if (data) {
if (data[key]) {
return resolve(data[key]);
}
}
return resolve(defaultValue);
});
} else {
// no available in Safari
resolve(defaultValue);
}
}
);
const timeoutPromise = new Promise((resolve) => {
setTimeout(() => resolve(defaultValue), 10);
});
return Promise.race([managedStoragePromise, timeoutPromise]);
}
}