search
HomeBackend DevelopmentPHP TutorialUse the TUS protocol in PHP to implement breakpoint and resume downloading of large files

Have you ever struggled with uploading large files? If the file upload process is interrupted for some reason, can I continue uploading from the interrupted point without re-uploading the entire file? If you have such confusion, then please continue reading below.

In modern website applications, uploading files is very common. In any language, by using some tools, the file upload function can be realized. However, it is still a bit troublesome to deal with the need to upload large files.

Suppose you are uploading a large file at this time. About an hour has passed and the progress is 90%. If the Internet is suddenly disconnected or the browser crashes, the uploaded program will exit and you will have to start all over again. Really uncomfortable, right? What’s even more depressing is that if your Internet speed is very slow, then no matter how many times you try again, you will never be able to upload successfully.

In PHP, we can try to use the breakpoint resume function of the tus protocol to solve this problem.

What is tus?

Tus is an HTTP-based open protocol for file breakpoint resume transfer. Resume uploading means that whether it is interrupted by the user or unexpectedly due to network or other reasons, the upload can be resumed from where it was interrupted without starting over.

The Tus protocol was adopted by Vimeo in May 2017.

Why use tus?

Quoting Vimeo’s blog:

The reason why we decided to use tus is because it can be used in a concise and open form. Standardize the file upload process. This standardization helps API developers focus more on the logic of the application itself rather than the file upload process.

Another benefit of uploading in this way is that you can start uploading files on your laptop, and then move to your mobile phone or other device to continue uploading the same file, which can greatly improve the user experience.

Use the TUS protocol in PHP to implement breakpoint and resume downloading of large files

Picture: Tus rough workflow

Start

The first step is to load dependencies.

$ composer require ankitpokhrel/tus-php

tus-php is a pure PHP framework used for tus breakpoint resume protocol v1.0.0, which perfectly realizes the interaction between the server and the client.

Update: Now v3 of Vimeo official PHP library uses TusPHP.

Create a server that handles requests

You can create a server as follows.

// server.php
$server   = new \TusPhp\Tus\Server('redis');
$response = $server->serve();
$response->send();
exit(0); // 退出当前 PHP 进程

You need to configure your server so that it can Respond to a specific terminal. If you use Nginx, you can configure it as follows:

# nginx.conf
location /files {
    try_files $uri $uri/ /path/to/server.php?$query_string;
}

Assume that the URL of our server is http://server.tus.local. Therefore, based on our Nginx configuration above, we can pass http:// server.tus.local/files. To access our tus terminal.

RESTful-style endpoint configuration:

# 获取有关服务器目前配置的信息\
OPTIONS /files
# 检查上传的文件是否合法\
HEAD /files/{upload-key}
# 创建\
POST /files
# 修改\
PATCH /files/{upload-key}
# 删除\
DELETE /files/{upload-key}

ViewProtocol details Get more information about routing Information.

If you are using a framework similar to Laravel, then you do not need to define these in the configuration file. You can directly define routes to access the basic endpoints of tus. We will introduce the relevant details in another tutorial.

Use tus-php client to handle uploads

With the server in place, clients can upload files in chunks. Let's start by creating a simple HTML form to get input from the user.

<form action="upload.php" method="post" enctype="multipart/form-data">
    <input type="file" name="tus_file" id="tus-file" />
    <input type="submit" value="Upload" />
</form>

After submitting the form, we need to follow a few steps to process the upload.

Create a tus-php client object

// Tus client
$client = new \TusPhp\Tus\Client(&#39;http://server.tus.local&#39;);

The first parameter in the above code is your tus server address.

2. Initialize the client using file metadata

In order to ensure the uniqueness of uploaded files, we need to uniquely identify each uploaded file. In this way, when the file is interrupted and subsequently transmitted, the server can clearly identify which fragments belong to the same file. This identification code can be specified by yourself or generated by the system.

// 设置标识码和文件元数据
$client->setKey($uploadKey)
    ->file($_FILES[&#39;tus_file&#39;][&#39;tmp_name&#39;], &#39;your file name&#39;);

If you don’t want to specify the identification code, you can write it like this, and the system will automatically generate it:

$client->file($_FILES[&#39;tus_file&#39;][&#39;tmp_name&#39;], &#39;your file name&#39;);
$uploadKey = $client->getKey(); // Unique upload key

3. Upload the file in parts

// $chunkSize 是以字节为单位的,例如 5000000 等于 5 MB
$bytesUploaded = $client->upload($chunkSize);

When When you want to resume the transmission of the next block, you can bring the same identification code parameter to resume the transmission.

// 在下一个请求中续传文件
$bytesUploaded = $client->setKey($uploadKey)->upload($chunkSize);

After all files are uploaded, by default, the server will use sha256 to verify the sum of the files to ensure that no files are lost.

Use tus-js-client client to handle file upload

The team of tus protocol also developed a modular file upload plug-in Uppy. This plugin can establish a connection between the official tus-js-client and tus-php servers. In other words, we can use php and js to upload files.

uppy.use(Tus, {
  endpoint: &#39;https://server.tus.local/files/&#39;, // 你的 tus 服务器
  resume: true,
  autoRetry: true,
  retryDelays: [0, 1000, 3000, 5000]
})

更多细节可以查看 uppy 的文档, 这里 还有些例子可以供你参考。

分块上传

tus-php 服务器支持 concatenation 扩展,可以把多次上传的文件合为一个文件。因此,我们可以在客户端支持并行上传以及非连续的分块文件上传。

使用 tus-php 实现分块上传

tus-partial-upload.php

<?php
// 文件唯一标识码
$uploadKey = uniqid();
$client->setKey($uploadKey)->file(&#39;/path/to/file&#39;, &#39;chunk_a.ext&#39;);
// 从第 1000  个字节开始上传 10000 字节
$bytesUploaded = $client->seek(1000)->upload(10000);
$chunkAkey     = $client->getKey();
// 从 第 0 个字节开始上传 10000 字节
$bytesUploaded = $client->setFileName(&#39;chunk_b.ext&#39;)->seek(0)->upload(1000);
$chunkBkey     = $client->getKey();
// 从第 11000 个字节  (10000 +  1000) 开始上传剩余的字节
$bytesUploaded = $client->setFileName(&#39;chunk_c.ext&#39;)->seek(11000)->upload();
$chunkCkey     = $client->getKey();
// 把分块上传的文件组合起来
$client->setFileName(&#39;actual_file.ext&#39;)->concat($uploadKey, $chunkAkey, $chunkBkey, $chunkCkey);

分块上传的完整例子 在这里.

总结

由于 tus-php 项目 本身还出于初级阶段,后面可能还会有一些改动。在 example 文件夹里,有三个不同的例子供你参考。如果任何问题或者建议,欢迎留言交流。

The above is the detailed content of Use the TUS protocol in PHP to implement breakpoint and resume downloading of large files. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:learnku. If there is any infringement, please contact admin@php.cn delete
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace("&nbsp;","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)