-
Notifications
You must be signed in to change notification settings - Fork 862
/
Copy pathBackupPage.vue
256 lines (246 loc) · 7.64 KB
/
BackupPage.vue
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
<template>
<div>
<!-- File Backup -->
<div v-show="!exportDisabled">
<div class="text warning" v-if="!defaultEncryption">
{{ i18n.export_info }}
</div>
<div class="text">
{{ i18n.backup_file_info }}
</div>
<div class="text warning" v-if="unsupportedAccounts">
{{ i18n.otp_unsupported_warn }}
</div>
<div class="text warning" v-if="currentlyEncrypted">
{{ i18n.phrase_incorrect_export }}
</div>
<a-button-link
download="authenticator.txt"
:href="exportOneLineOtpAuthFile"
v-if="!unsupportedAccounts && isDataLinkSupported"
>{{ i18n.download_backup }}</a-button-link
>
<button
v-on:click="downloadBackUpOneLineOtpAuthFile()"
v-if="!unsupportedAccounts && !isDataLinkSupported"
class="button"
>
{{ i18n.download_backup }}
</button>
<a-button-link
download="authenticator.json"
:href="exportFile"
v-if="unsupportedAccounts && isDataLinkSupported"
>{{ i18n.download_backup }}</a-button-link
>
<button
v-on:click="downloadBackUpExportFile()"
v-if="unsupportedAccounts && !isDataLinkSupported"
class="button"
>
{{ i18n.download_backup }}
</button>
<a-button-link
download="authenticator.json"
:href="exportEncryptedFile"
v-if="!!defaultEncryption && isDataLinkSupported"
>{{ i18n.download_enc_backup }}</a-button-link
>
<button
v-on:click="downloadBackUpExportEncryptedFile()"
v-if="!!defaultEncryption && !isDataLinkSupported"
class="button"
>
{{ i18n.download_enc_backup }}
</button>
</div>
<a-button-link href="import.html">{{ i18n.import_backup }}</a-button-link>
<br />
<!-- 3rd Party Backup Services -->
<div v-show="!backupDisabled && isBackupServiceSupported">
<div class="text">
{{ i18n.storage_sync_info }}
</div>
<p></p>
<a-button @click="showInfo('DrivePage')"> Google Drive </a-button>
<a-button @click="showInfo('OneDrivePage')"> OneDrive </a-button>
<a-button @click="showInfo('DropboxPage')"> Dropbox </a-button>
</div>
</div>
</template>
<script lang="ts">
import Vue from "vue";
import { isSafari } from "../../browser";
import { OTPType } from "../../models/otp";
export default Vue.extend({
data: function () {
const exportData = this.$store.state.accounts.exportData;
const exportEncData = this.$store.state.accounts.exportEncData;
const key = this.$store.state.accounts.key;
return {
unsupportedAccounts: hasUnsupportedAccounts(exportData),
exportFile: getBackupFile(exportData),
exportEncryptedFile: getBackupFile(exportEncData, key),
exportOneLineOtpAuthFile: getOneLineOtpBackupFile(exportData),
};
},
computed: {
defaultEncryption: function () {
return this.$store.state.accounts.defaultEncryption;
},
exportDisabled: function () {
return this.$store.state.menu.exportDisabled;
},
currentlyEncrypted: function () {
return this.$store.getters["accounts/currentlyEncrypted"];
},
backupDisabled: function () {
return this.$store.state.menu.backupDisabled;
},
isDataLinkSupported: function () {
return !isSafari;
},
isBackupServiceSupported: function () {
return !isSafari;
},
},
methods: {
showInfo(tab: string) {
if (tab === "DropboxPage") {
chrome.permissions.request(
{ origins: ["https://*.dropboxapi.com/*"] },
async (granted) => {
if (granted) {
this.$store.commit("style/showInfo");
this.$store.commit("currentView/changeView", tab);
}
}
);
return;
} else if (tab === "DrivePage") {
chrome.permissions.request(
{
origins: [
"https://www.googleapis.com/*",
"https://accounts.google.com/o/oauth2/revoke",
],
},
async (granted) => {
if (granted) {
this.$store.commit("style/showInfo");
this.$store.commit("currentView/changeView", tab);
}
return;
}
);
return;
} else if (tab === "OneDrivePage") {
chrome.permissions.request(
{
origins: [
"https://graph.microsoft.com/me/*",
"https://login.microsoftonline.com/common/oauth2/v2.0/token",
],
},
async (granted) => {
if (granted) {
this.$store.commit("style/showInfo");
this.$store.commit("currentView/changeView", tab);
}
return;
}
);
return;
}
},
downloadBackUpOneLineOtpAuthFile() {
const exportData = this.$store.state.accounts.exportData;
const t = getOneLineOtpBackupFile(exportData);
window.open(t);
},
downloadBackUpExportFile() {
const exportData = this.$store.state.accounts.exportData;
const t = getBackupFile(exportData);
window.open(t);
},
downloadBackUpExportEncryptedFile() {
const exportEncData = this.$store.state.accounts.exportEncData;
const key = this.$store.state.accounts.key;
const t = getBackupFile(exportEncData, key);
window.open(t);
},
},
});
function hasUnsupportedAccounts(exportData: { [h: string]: RawOTPStorage }) {
for (const entry of Object.keys(exportData)) {
if (
exportData[entry].type === "battle" ||
exportData[entry].type === "steam"
) {
return true;
}
}
return false;
}
function getBackupFile(
entryData: { [hash: string]: RawOTPStorage },
key?: Object
) {
if (key) {
Object.assign(entryData, { key: key });
}
let json = JSON.stringify(entryData, null, 2);
// for windows notepad
json = json.replace(/\n/g, "\r\n");
return downloadFileUrlBuilder(json);
}
function getOneLineOtpBackupFile(entryData: { [hash: string]: RawOTPStorage }) {
const otpAuthLines: string[] = [];
for (const hash of Object.keys(entryData)) {
const otpStorage = entryData[hash];
if (otpStorage.issuer) {
otpStorage.issuer = removeUnsafeData(otpStorage.issuer);
}
if (otpStorage.account) {
otpStorage.account = removeUnsafeData(otpStorage.account);
}
const label = otpStorage.issuer
? otpStorage.issuer + ":" + (otpStorage.account || "")
: otpStorage.account || "";
let type = "";
if (otpStorage.type === OTPType.totp || otpStorage.type === OTPType.hex) {
type = OTPType.totp;
} else if (
otpStorage.type === OTPType.hotp ||
otpStorage.type === OTPType.hhex
) {
type = OTPType.hotp;
} else {
continue;
}
const otpAuthLine =
"otpauth://" +
type +
"/" +
label +
"?secret=" +
otpStorage.secret +
(otpStorage.issuer ? "&issuer=" + otpStorage.issuer : "") +
(type === OTPType.hotp ? "&counter=" + otpStorage.counter : "") +
(type === OTPType.totp && otpStorage.period
? "&period=" + otpStorage.period
: "") +
(otpStorage.digits ? "&digits=" + otpStorage.digits : "") +
(otpStorage.algorithm ? "&algorithm=" + otpStorage.algorithm : "");
otpAuthLines.push(otpAuthLine);
}
return downloadFileUrlBuilder(otpAuthLines.join("\r\n"));
}
function downloadFileUrlBuilder(content: string) {
const blob = new Blob([content], { type: "application/octet-stream" });
return URL.createObjectURL(blob);
}
function removeUnsafeData(data: string) {
return encodeURIComponent(data.split("::")[0].replace(/:/g, ""));
}
</script>