2018-05-25 06:19:14 -05:00
|
|
|
import * as fs from 'fs';
|
2018-03-27 02:51:12 -05:00
|
|
|
import * as URL from 'url';
|
|
|
|
import * as tmp from 'tmp';
|
|
|
|
import * as request from 'request';
|
|
|
|
|
2018-05-25 06:19:14 -05:00
|
|
|
import { IDriveFile, validateFileName } from '../../models/drive-file';
|
|
|
|
import create from './add-file';
|
|
|
|
import config from '../../config';
|
2018-06-17 06:04:19 -05:00
|
|
|
import { IUser } from '../../models/user';
|
2018-06-18 00:28:43 -05:00
|
|
|
import * as mongodb from 'mongodb';
|
2019-02-03 01:45:13 -06:00
|
|
|
import { driveLogger } from './logger';
|
2019-02-03 02:09:16 -06:00
|
|
|
import chalk from 'chalk';
|
2018-05-25 06:19:14 -05:00
|
|
|
|
2019-02-03 01:45:13 -06:00
|
|
|
const logger = driveLogger.createSubLogger('downloader');
|
2018-03-27 02:51:12 -05:00
|
|
|
|
2018-11-06 21:12:43 -06:00
|
|
|
export default async (
|
|
|
|
url: string,
|
|
|
|
user: IUser,
|
|
|
|
folderId: mongodb.ObjectID = null,
|
|
|
|
uri: string = null,
|
|
|
|
sensitive = false,
|
2018-11-07 04:43:21 -06:00
|
|
|
force = false,
|
|
|
|
link = false
|
2018-11-06 21:12:43 -06:00
|
|
|
): Promise<IDriveFile> => {
|
2018-03-27 02:51:12 -05:00
|
|
|
let name = URL.parse(url).pathname.split('/').pop();
|
|
|
|
if (!validateFileName(name)) {
|
|
|
|
name = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create temp file
|
2018-04-09 14:02:25 -05:00
|
|
|
const [path, cleanup] = await new Promise<[string, any]>((res, rej) => {
|
|
|
|
tmp.file((e, path, fd, cleanup) => {
|
2018-03-27 02:51:12 -05:00
|
|
|
if (e) return rej(e);
|
2018-04-09 14:02:25 -05:00
|
|
|
res([path, cleanup]);
|
2018-03-27 02:51:12 -05:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
// write content at URL to temp file
|
|
|
|
await new Promise((res, rej) => {
|
2019-02-03 02:09:16 -06:00
|
|
|
logger.info(`Downloading ${chalk.cyan(url)} ...`);
|
|
|
|
|
2018-03-27 02:51:12 -05:00
|
|
|
const writable = fs.createWriteStream(path);
|
2018-11-05 16:53:03 -06:00
|
|
|
|
|
|
|
writable.on('finish', () => {
|
2019-02-03 02:09:16 -06:00
|
|
|
logger.succ(`Download succeeded: ${chalk.cyan(url)}`);
|
2018-11-05 16:53:03 -06:00
|
|
|
res();
|
|
|
|
});
|
|
|
|
|
|
|
|
writable.on('error', error => {
|
2019-02-03 02:09:16 -06:00
|
|
|
logger.error(error);
|
2018-11-05 16:53:03 -06:00
|
|
|
rej(error);
|
|
|
|
});
|
|
|
|
|
2018-09-06 12:26:31 -05:00
|
|
|
const requestUrl = URL.parse(url).pathname.match(/[^\u0021-\u00ff]/) ? encodeURI(url) : url;
|
2018-11-05 16:53:03 -06:00
|
|
|
|
|
|
|
const req = request({
|
2018-09-06 12:26:31 -05:00
|
|
|
url: requestUrl,
|
2019-02-06 07:44:55 -06:00
|
|
|
proxy: config.proxy.getOrElse(null),
|
2018-11-05 16:53:03 -06:00
|
|
|
timeout: 10 * 1000,
|
2018-09-04 03:44:21 -05:00
|
|
|
headers: {
|
|
|
|
'User-Agent': config.user_agent
|
|
|
|
}
|
2018-11-05 16:53:03 -06:00
|
|
|
});
|
|
|
|
|
|
|
|
req.pipe(writable);
|
|
|
|
|
|
|
|
req.on('response', response => {
|
|
|
|
if (response.statusCode !== 200) {
|
2019-02-03 02:09:16 -06:00
|
|
|
logger.error(`Got ${response.statusCode} (${url})`);
|
2018-03-27 02:51:12 -05:00
|
|
|
writable.close();
|
2018-11-05 16:53:03 -06:00
|
|
|
rej(response.statusCode);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
req.on('error', error => {
|
2019-02-03 02:09:16 -06:00
|
|
|
logger.error(error);
|
2018-11-05 16:53:03 -06:00
|
|
|
writable.close();
|
|
|
|
rej(error);
|
|
|
|
});
|
2018-03-27 02:51:12 -05:00
|
|
|
});
|
|
|
|
|
2018-04-09 14:11:52 -05:00
|
|
|
let driveFile: IDriveFile;
|
|
|
|
let error;
|
|
|
|
|
|
|
|
try {
|
2018-11-07 04:43:21 -06:00
|
|
|
driveFile = await create(user, path, name, null, folderId, force, link, url, uri, sensitive);
|
2019-02-03 02:09:16 -06:00
|
|
|
logger.succ(`Got: ${driveFile._id}`);
|
2018-04-09 14:11:52 -05:00
|
|
|
} catch (e) {
|
|
|
|
error = e;
|
2019-02-03 02:09:16 -06:00
|
|
|
logger.error(`Failed: ${e}`);
|
2018-04-09 14:11:52 -05:00
|
|
|
}
|
2018-04-05 04:08:51 -05:00
|
|
|
|
2018-03-27 02:51:12 -05:00
|
|
|
// clean-up
|
2018-04-09 14:02:25 -05:00
|
|
|
cleanup();
|
2018-03-27 02:51:12 -05:00
|
|
|
|
2018-04-09 14:11:52 -05:00
|
|
|
if (error) {
|
|
|
|
throw error;
|
|
|
|
} else {
|
|
|
|
return driveFile;
|
|
|
|
}
|
2018-03-27 02:51:12 -05:00
|
|
|
};
|