@@ -12,9 +12,10 @@ const { optionDefaults, storeMissingOptions, migrateOptions } = require('./optio
12
12
const { initState, offlinePeerCount } = require ( './state' )
13
13
const { createIpfsPathValidator } = require ( './ipfs-path' )
14
14
const createDnslinkResolver = require ( './dnslink' )
15
- const { createRequestModifier, redirectOptOutHint } = require ( './ipfs-request' )
15
+ const { createRequestModifier } = require ( './ipfs-request' )
16
16
const { initIpfsClient, destroyIpfsClient } = require ( './ipfs-client' )
17
17
const { createIpfsUrlProtocolHandler } = require ( './ipfs-protocol' )
18
+ const createIpfsImportHandler = require ( './ipfs-import' )
18
19
const createNotifier = require ( './notifier' )
19
20
const createCopier = require ( './copier' )
20
21
const { createRuntimeChecks } = require ( './runtime-checks' )
@@ -38,6 +39,7 @@ module.exports = async function init () {
38
39
var apiStatusUpdateInterval
39
40
var ipfsProxy
40
41
var ipfsProxyContentScript
42
+ var ipfsImportHandler
41
43
const idleInSecs = 5 * 60
42
44
const browserActionPortName = 'browser-action-port'
43
45
@@ -65,6 +67,7 @@ module.exports = async function init () {
65
67
66
68
dnslinkResolver = createDnslinkResolver ( getState )
67
69
ipfsPathValidator = createIpfsPathValidator ( getState , getIpfs , dnslinkResolver )
70
+ ipfsImportHandler = createIpfsImportHandler ( getState , getIpfs , ipfsPathValidator , runtime )
68
71
copier = createCopier ( notify , ipfsPathValidator )
69
72
contextMenus = createContextMenus ( getState , runtime , ipfsPathValidator , {
70
73
onAddFromContext,
@@ -230,6 +233,8 @@ module.exports = async function init () {
230
233
gwURLString : dropSlash ( state . gwURLString ) ,
231
234
pubGwURLString : dropSlash ( state . pubGwURLString ) ,
232
235
webuiRootUrl : state . webuiRootUrl ,
236
+ importDir : state . importDir ,
237
+ openViaWebUI : state . openViaWebUI ,
233
238
apiURLString : dropSlash ( state . apiURLString ) ,
234
239
redirect : state . redirect ,
235
240
noRedirectHostnames : state . noRedirectHostnames ,
@@ -257,40 +262,16 @@ module.exports = async function init () {
257
262
}
258
263
}
259
264
260
- // GUI
261
- // ===================================================================
262
-
263
- function preloadAtPublicGateway ( path ) {
264
- if ( ! state . preloadAtPublicGateway ) return
265
- // asynchronous HTTP HEAD request preloads triggers content without downloading it
266
- return new Promise ( ( resolve , reject ) => {
267
- const http = new XMLHttpRequest ( )
268
- // Make sure preload request is excluded from global redirect
269
- const preloadUrl = ipfsPathValidator . resolveToPublicUrl ( `${ path } #${ redirectOptOutHint } ` , state . pubGwURLString )
270
- http . open ( 'HEAD' , preloadUrl )
271
- http . onreadystatechange = function ( ) {
272
- if ( this . readyState === this . DONE ) {
273
- console . info ( `[ipfs-companion] preloadAtPublicGateway(${ path } ):` , this . statusText )
274
- if ( this . status === 200 ) {
275
- resolve ( this . statusText )
276
- } else {
277
- reject ( new Error ( this . statusText ) )
278
- }
279
- }
280
- }
281
- http . send ( )
282
- } )
283
- }
284
-
285
265
// Context Menu Uploader
286
266
// -------------------------------------------------------------------
287
267
288
268
async function onAddFromContext ( context , contextType , options ) {
269
+ const importDir = ipfsImportHandler . formatImportDirectory ( state . importDir )
289
270
let result
290
271
try {
291
272
const dataSrc = await findValueForContext ( context , contextType )
292
273
if ( contextType === 'selection' ) {
293
- result = await ipfs . add ( Buffer . from ( dataSrc ) , options )
274
+ result = await ipfsImportHandler . importFiles ( Buffer . from ( dataSrc ) , options , importDir )
294
275
} else {
295
276
// Enchanced addFromURL
296
277
// --------------------
@@ -319,7 +300,7 @@ module.exports = async function init () {
319
300
path : decodeURIComponent ( filename ) ,
320
301
content : buffer
321
302
}
322
- result = await ipfs . add ( data , options )
303
+ result = await ipfsImportHandler . importFiles ( data , options , importDir )
323
304
}
324
305
} catch ( error ) {
325
306
console . error ( 'Error in upload to IPFS context menu' , error )
@@ -334,37 +315,12 @@ module.exports = async function init () {
334
315
}
335
316
return
336
317
}
337
-
338
- return uploadResultHandler ( { result, openRootInNewTab : true } )
339
- }
340
-
341
- // TODO: feature detect and push to client type specific modules.
342
- function getIpfsPathAndNativeAddress ( hash ) {
343
- const path = `/ipfs/${ hash } `
344
- if ( runtime . hasNativeProtocolHandler ) {
345
- return { path, url : `ipfs://${ hash } ` }
318
+ ipfsImportHandler . preloadFilesAtPublicGateway ( result )
319
+ if ( state . ipfsNodeType === 'embedded' || ! state . openViaWebUI ) {
320
+ return ipfsImportHandler . openFilesAtGateway ( { result, openRootInNewTab : true } )
346
321
} else {
347
- // open at public GW (will be redirected to local elsewhere, if enabled)
348
- const url = new URL ( path , state . pubGwURLString ) . toString ( )
349
- return { path, url : url }
350
- }
351
- }
352
-
353
- async function uploadResultHandler ( { result, openRootInNewTab = false } ) {
354
- for ( const file of result ) {
355
- if ( file && file . hash ) {
356
- const { path, url } = getIpfsPathAndNativeAddress ( file . hash )
357
- preloadAtPublicGateway ( path )
358
- console . info ( '[ipfs-companion] successfully stored' , file )
359
- // open the wrapping directory (or the CID if wrapping was disabled)
360
- if ( openRootInNewTab && ( result . length === 1 || file . path === '' || file . path === file . hash ) ) {
361
- await browser . tabs . create ( {
362
- url : url
363
- } )
364
- }
365
- }
322
+ return ipfsImportHandler . openFilesAtWebUI ( importDir )
366
323
}
367
- return result
368
324
}
369
325
370
326
// Page-specific Actions
@@ -709,12 +665,16 @@ module.exports = async function init () {
709
665
shouldReloadExtension = true
710
666
state [ key ] = localStorage . debug = change . newValue
711
667
break
668
+ case 'importDir' :
669
+ state [ key ] = change . newValue
670
+ break
712
671
case 'linkify' :
713
672
case 'catchUnhandledProtocols' :
714
673
case 'displayNotifications' :
715
674
case 'automaticMode' :
716
675
case 'detectIpfsPathHeader' :
717
676
case 'preloadAtPublicGateway' :
677
+ case 'openViaWebUI' :
718
678
case 'noRedirectHostnames' :
719
679
state [ key ] = change . newValue
720
680
break
@@ -783,8 +743,8 @@ module.exports = async function init () {
783
743
return notify
784
744
} ,
785
745
786
- get uploadResultHandler ( ) {
787
- return uploadResultHandler
746
+ get ipfsImportHandler ( ) {
747
+ return ipfsImportHandler
788
748
} ,
789
749
790
750
destroy ( ) {
@@ -796,6 +756,7 @@ module.exports = async function init () {
796
756
dnslinkResolver = null
797
757
modifyRequest = null
798
758
ipfsPathValidator = null
759
+ ipfsImportHandler = null
799
760
notify = null
800
761
copier = null
801
762
contextMenus = null
0 commit comments