Revert "fix remote files?"

This reverts commit 8cd47bbcce.
This commit is contained in:
Puniko 2022-12-29 23:29:58 +01:00
parent 8cd47bbcce
commit 9354950c23
2 changed files with 1 additions and 5 deletions

View File

@ -1,4 +1,3 @@
import { URL } from 'node:url';
import * as fs from 'node:fs';
import * as stream from 'node:stream';
import * as util from 'node:util';
@ -21,7 +20,6 @@ export async function downloadUrl(url: string, path: string): Promise<void> {
const timeout = 30 * SECOND;
const operationTimeout = MINUTE;
const maxSize = config.maxFileSize || 262144000;
let filename = new URL(url).pathname.split('/').pop() || null;
const req = got.stream(url, {
headers: {
@ -53,7 +51,6 @@ export async function downloadUrl(url: string, path: string): Promise<void> {
}
const contentLength = res.headers['content-length'];
filename = res.headers['content-disposition'].split('=').pop().replace(/"/g, '');
if (contentLength != null) {
const size = Number(contentLength);
if (size > maxSize) {
@ -79,7 +76,6 @@ export async function downloadUrl(url: string, path: string): Promise<void> {
}
logger.succ(`Download finished: ${chalk.cyan(url)}`);
return filename;
}
function isPrivateIp(ip: string): boolean {

View File

@ -41,7 +41,7 @@ export async function uploadFromUrl({
try {
// write content at URL to temp file
name = await downloadUrl(url, path);
await downloadUrl(url, path);
const driveFile = await addFile({
user,