使用Dropbox API将文件直接传输到远程FTP服务器,无需下载中间文件


Transfer file using Dropbox API directly to remote FTP server without downloading intermediate file

我在Dropbox上有大的设计文件(高达500 MB),我正在构建一个工具,在我们基于PHP的在线项目管理程序中以编程方式将单个文件传输到供应商的FTP服务器。由于文件大小的原因,由于速度和存储空间的问题,我不想将文件下载到服务器,然后上传到FTP服务器。

我可以使用以下Dropbox API调用:

getFile( string $path, resource $outStream, string|null $rev = null )
Downloads a file from Dropbox. The file's contents are written to the given $outStream and the file's metadata is returned.

我猜我可以使用以下PHP命令:

ftp_fput ( resource $ftp_stream , string $remote_file , resource $handle , int $mode [, int $startpos = 0 ] )
Uploads the data from a file pointer to a remote file on the FTP server.

我对文件数据流没有任何经验,所以我不知道如何将两者连接起来。经过几个小时的网上搜索,我想我应该试着在这里询问。

如何将getFile的$outstream资源与ftp_fput的$ftp_stream资源连接起来?

花了半天时间对此进行实验,最终使其发挥作用。该解决方案包括使用PHP data://方案在内存中创建一个流,然后倒带该流将其发送到FTP服务器。要点如下:

// open an FTP connection
$ftp_connection = ftp_connect('ftp.example.com');
ftp_login($ftp_connection,'username','password');
// get the file mime type from Dropbox, to create the correct data stream type
$metadata = $dopbox->getMetadata($file) // $dropbox is authenticated connection to Dropbox Core API; $file is a complete file path in Dropbox
$mime_type = $metadata['mime_type'];
// now open a data stream of that mime type
// for example, for a jpeg file this would be "data://image/jpeg"
$stream = fopen('data://' .mime_type . ',','w+'); // w+ allows both writing and reading
$dropbox->getFile($file,$stream); // loads the file into the data stream
rewind($stream)
ftp_fput($ftp_connection,$remote_filename,$stream,FTP_BINARY); // send the stream to the ftp server
// now close everything
fclose($stream);
ftp_close($ftp_connection);