forked from reruin/sharelist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdrive.aliyundrive.js
489 lines (404 loc) · 10.9 KB
/
drive.aliyundrive.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
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
/**
* Aliyun Drive
*
* aliyun://userId/driveId/folderId/?password
* aliyun://userId/driveId/folderId/fileId?password
*/
const { URL } = require('url')
const urlFormat = require('url').format
const protocol = 'aliyun'
/**
* auth manager class
*/
class Manager {
static getInstance(app, helper) {
if (!this.instance) {
this.instance = new Manager(app, helper)
}
return this.instance
}
constructor(app, helper) {
this.clientMap = {}
this.helper = helper
}
/**
* Update config
*
* @param {string} [client]
* @api private
*/
async updateDrives(client) {
const { helper } = this
let paths = await helper.getDrives()
let data = paths.map(i => this.parse(i.path, i.name))
let name = decodeURIComponent(helper.getRuntime('req').path.replace(/^\//g, ''))
let hit = data.filter(i => i.name == name)
//路径也无法匹配
if (hit.length == 0) {
//仅有一个可用挂载源
if (data.length == 1 && paths.length == 1 && paths[0].root) {
hit = data
}
}
hit.forEach(i => {
helper.saveDrive(client, i.name)
})
}
init(d) {
for (let i of d) {
let data = this.parse(i.path)
this.clientMap[data.user_id] = data
}
}
/**
* get options by id
*
* @param {string} [id]
* @return {object}
* @api public
*/
async get(id) {
let data = this.parse(id)
if (data.user_id && this.clientMap[data.user_id]) {
let credentials = this.clientMap[data.user_id]
let { expires_at } = credentials
if ((expires_at - Date.now()) < 10 * 60 * 1000) {
let result = await this.refreshAccessToken(credentials)
if (result.error) {
return result
} else {
credentials = this.clientMap[data.user_id]
}
}
credentials.path = data.path ? data.path : '/'
return { credentials }
}
return { unmounted: true }
}
/**
* Parse path
*
* @param {string} [path]
* @param {string} [name]
* @return {object}
* @api private
*/
parse(path, name) {
let data = new URL(path)
let user_id = data.hostname
let query = {}
for (const [key, value] of data.searchParams) {
query[key] = value
}
let result = {
user_id,
path: data.pathname || '/',
...query
}
if( name ) result.name = name
return result
}
/**
* Create id
*
* @param {object}
* @param {string} [agrs]
* @param {string} [agrs.user_id]
* @param {string} [agrs.password]
* @param {string} [agrs.cookie]
* @return {string}
* @api public
*/
stringify({ user_id, path, ...query }) {
return urlFormat({
protocol: protocol,
slashes: true,
hostname: user_id,
pathname: (path == '') ? '/' : path,
query,
})
}
install(msg) {
return { id:`${protocol}-install`, type: 'folder', protocol, body:`
<div class="auth">
<h3>Aliyun Drive 挂载向导</h3>
${ msg ? '<p style="font-size:12px;">'+msg+'</p>' : '' }
<div>
<form class="form-horizontal" method="post">
<input type="hidden" name="act" value="install" />
<div class="form-group"><input class="sl-input" type="text" name="refresh_token" value="" placeholder="refresh_token" /></div>
<button class="sl-button btn-primary" id="signin" type="submit">确定</button></form>
</div>
</div>
`}
}
error(data, mount = true) {
return { id:'teambition-unmounted', type: 'folder', protocol, body: `
<div class="auth">
${ mount ? '<h3>Teambition 挂载向导</h3>' : '' }
<p style="font-size:12px;">${data}<br /></p>
${ mount ? '<p><a style="font-size:12px;cursor:pointer;" onclick="location.href=location.pathname">点击重新开始</a></p>' : '' }
</div>
`}
}
/**
* Get cookie
*
* @param {string} [user_id]
* @param {string} [password]
* @param {string} [path]
* @return {object}
* @api private
*/
async create({refresh_token}) {
//0 准备工作: 获取必要数据
let resp
try{
resp = await this.helper.request.post('https://auth.aliyundrive.com/v2/account/token', {
refresh_token,
grant_type: "refresh_token"
}, {
headers: {
'User-Agent': 'None',
},
body:true,
json:true
})
}catch(e){
resp = e
}
if( !resp || !resp.body || !resp.body.access_token) return { error: true, msg: '无法获取登录token' }
let { user_id , access_token , default_drive_id:drive_id , expires_in } = resp.body
refresh_token = resp.body.refresh_token
let expires_at = Date.now() + expires_in * 1000
let client = { user_id, access_token, refresh_token, expires_at, drive_id, path:`/` }
this.clientMap[user_id] = client
await this.updateDrives(this.stringify({ user_id, path: client.path , expires_at , drive_id, access_token , refresh_token }))
return { error:false }
}
async refreshAccessToken(hit){
return await this.create(hit)
}
async update(id) {
let data = this.parse(id)
if (data.user_id) {
let hit = this.clientMap[data.user_id]
if (hit) {
return await this.create(hit)
}
}
}
/**
* Get auth from id
*
* @param {string} [id]
* @return {object}
* @api public
*/
async prepare(id) {
if (!id.startsWith(protocol)) {
id = protocol + ':' + id
}
const req = this.helper.getRuntime('req')
let baseUrl = req.origin + req.path
let { credentials, error, msg, unmounted } = await this.get(id)
if( unmounted ){
let data
if (req.body && req.body.refresh_token && req.body.act == 'install') {
let options = { refresh_token: req.body.refresh_token }
let { error, msg } = await this.create(options)
if (error) {
data = this.error(msg)
} else {
data = {
id:`${protocol}-redirect`,
type: 'folder',
protocol: protocol,
redirect:baseUrl
}
}
}else{
data = this.install()
}
return { ready:false, data}
}else{
if( error ){
return { ready:false, data:this.error(msg) }
}else{
return { ready:true, data:credentials }
}
}
}
}
/*class Guide {
constructor(app) {
this.path = '__teambition_guide__'
this.init()
}
init(){
let router = app.router().get(this.path, onGet)
app.web().use(router.routes)
}
async onGet(ctx, next){
}
async onPost(ctx, next){
}
error(data,mount = true) {
return { id:'onedrive-unmounted', type: 'folder', protocol, body: `
<div class="auth">
${ mount ? '<h3>OneDrive 挂载向导</h3>' : '' }
<p style="font-size:12px;">${data}<br /></p>
${ mount ? '<p><a style="font-size:12px;cursor:pointer;" onclick="location.href=location.pathname">点击重新开始</a></p>' : '' }
</div>
`}
}
install(){
}
}*/
module.exports = class Driver {
constructor(helper , app) {
this.name = 'AliyunDrive'
this.label = 'Aliyun Drive (beta)'
this.mountable = true
this.cache = true
this.version = '1.0'
this.protocol = protocol
this.max_age_dir = 10 * 60 * 1000
this.max_age_cookie = 5 * 24 * 60 * 60 * 1000 // 5 days
this.manager = Manager.getInstance(app, helper)
this.helper = helper
this.init()
}
async init() {
let drives = await this.helper.getDrives()
this.manager.init(drives)
}
async fetch(){
}
/**
* Get data by path
*
* @param {string} [id] path id
* @return {object}
* @api private
*/
async path(id) {
let { manager, protocol, helper } = this
let { ready, data } = await manager.prepare(id)
if( !ready ) return data
let { path, access_token , drive_id, user_id } = data
id = manager.stringify({user_id,path})
let r = helper.cache.get(id)
if (r) {
if (
r.$cached_at &&
r.children &&
(Date.now() - r.$cached_at < this.max_age_dir)
) {
console.log(Date.now() + ' CACHE AliyunDrive ' + id)
return r
}
}
let is_folder = path.endsWith('/')
let drive_path = path.replace(/(^\/|\/$)/g, '').split('/')
let [ parent_file_id , file_id ] = drive_path
if(!parent_file_id){
parent_file_id = 'root'
}
if (is_folder) {
let resp
try {
resp = await this.helper.request.post(`https://api.aliyundrive.com/v2/file/list`,{
drive_id,
parent_file_id,
limit:10000
},
{
headers: {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36',
'Authorization': access_token,
},
body:true,
json:true
}
)
}catch(e){ }
if (!resp.body) return false
if (!resp.body.items) return manager.error('error', false)
const ts = Date.now()
let children = resp.body.items.map((i) => {
return {
id: manager.stringify({
user_id,
path: i.type == 'folder' ? `/${i.file_id}/` : `/${parent_file_id}/${i.file_id}`
}),
name: i.name,
ext: i.file_extension,
protocol,
size: i.size,
created_at: i.created_at,
updated_at: i.updated_at,
type: i.type == 'folder' ? 'folder' : 'file',
$download_url:i.download_url,
$cached_at: ts
}
})
let result = {
id,
path,
type: 'folder',
protocol: protocol,
$cached_at: ts,
children
}
helper.cache.set(id, result)
return result
} else {
let parent_id = manager.stringify({ user_id, path: `/${parent_file_id}/` })
let parent_data = await this.path(parent_id)
let hit = parent_data.children.find(i => i.id == id)
if (!hit) return false
let expired_at = Date.now() + 50 * 1000
let download_url = hit.$download_url
return {
id,
url: download_url,
name: hit.name,
ext: hit.ext,
protocol: protocol,
size: hit.size,
// $expired_at: expired_at,
// proxy:true,
headers:{
'referer': 'https://www.aliyundrive.com/',
'Referrer-Policy':'no-referrer',
//'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36'
}
}
}
}
/**
* Folder handler
*
* @param {string} [id] path id
* @return {object}
*
* @api public
*/
async folder(id) {
return await this.path(id)
}
/**
* File handler
*
* @param {string} [id] path id
* @return {object}
*
* @api public
*/
async file(id) {
return await this.path(id)
}
async createReadStream({ id, options = {} } = {}) {
}
}