-
Notifications
You must be signed in to change notification settings - Fork 24
/
http-stream.js
71 lines (60 loc) · 1.48 KB
/
http-stream.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
var purest = require('../')
// ----------------------------------------------------------------------------
var auth = {
box: {
// root_readwrite
token: '',
},
dropbox: {
// files.content.write - on the app
token: '',
},
}
// ----------------------------------------------------------------------------
var config = {
"box": {
"upload": {
"method": "POST",
"url": "https://upload.box.com/api/2.0/files/content",
"headers": {
"authorization": "Bearer {auth}"
}
}
},
"dropbox": {
"download": {
"url": "https://content.dropboxapi.com/2/files/download",
"headers": {
"authorization": "Bearer {auth}"
}
}
}
}
// ----------------------------------------------------------------------------
;({
'stream file from dropbox to box': async () => {
var box = purest({provider: 'box', config, defaults: {
auth: auth.box.token
}})
var dropbox = purest({provider: 'dropbox', config, defaults: {
auth: auth.dropbox.token
}})
var {res:download} = await dropbox('download')
.headers({
'Dropbox-API-Arg': JSON.stringify({path: '/cat.png'}),
})
.stream()
await box('upload')
.multipart({
attributes: JSON.stringify({
name: 'cat.png',
parent: {id: 0},
}),
file: {
body: download,
options: {name: 'cat.png', type: 'image/png'}
}
})
.request()
}
})[process.argv[2]]()