-
Notifications
You must be signed in to change notification settings - Fork 325
/
Copy pathoptions.js
223 lines (203 loc) · 7.34 KB
/
options.js
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
'use strict'
import isFQDN from 'is-fqdn'
import { isIPv4, isIPv6 } from 'is-ip'
/**
* @type {Readonly<import('../types/companion.js').CompanionOptions>}
*/
export const optionDefaults = Object.freeze({
active: true, // global ON/OFF switch, overrides everything else
ipfsNodeType: 'external',
ipfsNodeConfig: buildDefaultIpfsNodeConfig(),
publicGatewayUrl: 'https://ipfs.io',
publicSubdomainGatewayUrl: 'https://dweb.link',
useCustomGateway: true,
useSubdomains: true,
enabledOn: [], // hostnames with explicit integration opt-in
disabledOn: [], // hostnames with explicit integration opt-out
automaticMode: true,
linkify: false,
dnslinkPolicy: 'best-effort',
dnslinkDataPreload: true,
dnslinkRedirect: true,
recoverFailedHttpRequests: true,
detectIpfsPathHeader: true,
preloadAtPublicGateway: true,
catchUnhandledProtocols: true,
displayNotifications: true,
displayReleaseNotes: false,
customGatewayUrl: 'http://localhost:8080',
ipfsApiUrl: 'http://127.0.0.1:5001',
ipfsApiPollMs: 3000,
logNamespaces: 'jsipfs*,ipfs*,libp2p:mdns*,libp2p-delegated*,-*:ipns*,-ipfs:preload*,-ipfs-http-client:request*,-ipfs:http-api*',
importDir: '/ipfs-companion-imports/%Y-%M-%D_%h%m%s/',
useLatestWebUI: false,
dismissedUpdate: null,
openViaWebUI: true,
telemetryGroupMinimal: true,
telemetryGroupPerformance: false,
telemetryGroupUx: false,
telemetryGroupFeedback: false,
telemetryGroupLocation: false
})
function buildDefaultIpfsNodeConfig () {
return JSON.stringify({
config: {
Addresses: {
Swarm: []
}
}
}, null, 2)
}
// `storage` should be a browser.storage.local or similar
export async function storeMissingOptions (read, defaults, storage) {
const requiredKeys = Object.keys(defaults)
const changes = {}
const has = (obj, key) => Object.prototype.hasOwnProperty.call(obj, key)
for (const key of requiredKeys) {
// limit work to defaults and missing values, skip values other than defaults
if (!has(read, key) || read[key] === defaults[key]) {
const data = await storage.get(key)
if (!has(data, key)) { // detect and fix key without value in storage
changes[key] = defaults[key]
}
}
}
// save all in bulk
await storage.set(changes)
return changes
}
// safeURL produces URL object with optional normalizations
export function safeURL (url, opts) {
opts = opts || { useLocalhostName: true }
if (typeof url === 'string') {
url = new URL(url)
}
if (url.hostname === '0.0.0.0') {
// normalize 0.0.0.0 (used by go-ipfs in the console)
// to 127.0.0.1 to minimize the number of edge cases we need to handle later
// https://github.com/ipfs-shipyard/ipfs-companion/issues/867
url = new URL(url.toString())
url.hostname = '127.0.0.1'
}
// "localhost" gateway normalization matters because:
// - 127.0.0.1 is a path gateway
// - localhost is a subdomain gateway
// https://github.com/ipfs-shipyard/ipfs-companion/issues/328#issuecomment-537383212
if (opts.useLocalhostName && localhostIpUrl(url)) {
url.hostname = 'localhost'
}
if (!opts.useLocalhostName && localhostNameUrl(url)) {
url.hostname = '127.0.0.1'
}
return url
}
// Return string without trailing slash
export function guiURLString (url, opts) {
return safeURL(url, opts).toString().replace(/\/$/, '')
}
// ensure value is a valid URL.hostname (FQDN || ipv4 || ipv6 WITH brackets)
export function isHostname (x) {
if (isFQDN(x) || isIPv4(x)) {
return true
}
const match = x.match(/^\[(.*)\]$/)
if (match == null) {
return false
}
return isIPv6(match[1])
}
// convert JS array to multiline textarea
function hostArrayCleanup (array) {
array = array.map(host => host.trim().toLowerCase())
// normalize/extract hostnames (just domain/ip, drop ports etc), if provided
array = array.map(x => {
try {
if (isIPv6(x)) x = `[${x}]`
return new URL(`http://${x}`).hostname
} catch (_) {
return undefined
}
})
array = array.filter(Boolean).filter(isHostname)
array = [...new Set(array)] // dedup
array.sort()
return array
}
export function hostArrayToText (array) {
return hostArrayCleanup(array).join('\n')
}
export function hostTextToArray (text) {
return hostArrayCleanup(text.split('\n'))
}
function localhostIpUrl (url) {
if (typeof url === 'string') {
url = new URL(url)
}
return url.hostname === '127.0.0.1' || url.hostname === '[::1]'
}
function localhostNameUrl (url) {
if (typeof url === 'string') {
url = new URL(url)
}
return url.hostname.toLowerCase() === 'localhost'
}
export async function migrateOptions (storage, debug) {
const log = debug('ipfs-companion:migrations')
log.error = debug('ipfs-companion:migrations:error')
// <= v2.4.4
// DNSLINK: convert old on/off 'dnslink' flag to text-based 'dnslinkPolicy'
const { dnslink } = await storage.get('dnslink')
if (dnslink) {
// migrating old dnslink policy to 'best-effort'
await storage.set({
dnslinkPolicy: 'best-effort',
detectIpfsPathHeader: true
})
await storage.remove('dnslink')
}
// ~ v2.9.x: migrating noRedirectHostnames → noIntegrationsHostnames
// https://github.com/ipfs-shipyard/ipfs-companion/pull/830
const { noRedirectHostnames } = await storage.get('noRedirectHostnames')
if (noRedirectHostnames) {
await storage.set({ noIntegrationsHostnames: noRedirectHostnames })
await storage.remove('noRedirectHostnames')
}
// ~v2.11: subdomain proxy at *.ipfs.localhost
// migrate old default 127.0.0.1 to localhost hostname
const { customGatewayUrl: gwUrl } = await storage.get('customGatewayUrl')
if (gwUrl && (localhostIpUrl(gwUrl) || localhostNameUrl(gwUrl))) {
const { useSubdomains } = await storage.get('useSubdomains')
const newUrl = guiURLString(gwUrl, { useLocalhostName: useSubdomains })
if (gwUrl !== newUrl) {
await storage.set({ customGatewayUrl: newUrl })
}
}
{ // ~v2.15.x: migrating noIntregrationsHostnames → disabledOn
const { disabledOn, noIntegrationsHostnames } = await storage.get(['disabledOn', 'noIntegrationsHostnames'])
if (noIntegrationsHostnames) {
log('migrating noIntregrationsHostnames → disabledOn')
await storage.set({ disabledOn: disabledOn.concat(noIntegrationsHostnames) })
await storage.remove('noIntegrationsHostnames')
}
}
{ // ~v2.15.x: opt-out some hostnames if user does not have excplicit rule already
const { enabledOn, disabledOn } = await storage.get(['enabledOn', 'disabledOn'])
for (const fqdn of [
'proto.school', // https://github.com/ipfs-shipyard/ipfs-companion/issues/921
'app.fleek.co' // https://github.com/ipfs-shipyard/ipfs-companion/pull/929#pullrequestreview-509501401
]) {
if (enabledOn.includes(fqdn) || disabledOn.includes(fqdn)) continue
log(`adding '${fqdn}' to 'disabledOn' list`)
disabledOn.push(fqdn)
await storage.set({ disabledOn })
}
}
{ // ~v2.15.1: change displayReleaseNotes opt-out flag to opt-in
const { displayReleaseNotes, dismissedUpdate } = await storage.get(['displayReleaseNotes', 'dismissedUpdate'])
if (!dismissedUpdate && displayReleaseNotes) {
log('converting displayReleaseNotes from out-out to opt-in')
await storage.set({ displayReleaseNotes: false })
}
}
// TODO: refactor this, so migrations only run once (like https://github.com/sindresorhus/electron-store#migrations)
}