php tus aws s3
1.0.0
该项目没有得到维护。请使用原始项目 ankitpokhrel/tus-php 以确保定期更新。以下是有关将该项目与 AWS S3 一起使用的一些注意事项。
与 AWS S3 连接的简单、轻型、最小的 TUS 服务器。基于 ankitpokhrel/tus-php。
如果您使用 Symfony,请检查下表。
交响乐版本 | php-tus-aws-s3 版本 |
---|---|
^4.3 | ~1.0 |
^5.0 或 ^6.0 | ~1.1 |
composer require rafaeltovar/php-tus-aws-s3:~1.x predis/predis
use TusPhp Tus Server as TusServer ;
class Server
extends TusServer
{
//...
public function __construct (
TusPhp Cache AbstractCache $ cache ,
League Flysystem AwsS3v3 AwsS3Adapter $ storage ,
TusPhpS3 Http Request $ request ,
$ excludeAttrApiPath = [],
$ forceLocationSSL = true )
{
//...
}
}
财产 | 类型 | 细节 |
---|---|---|
$cache | TusPhpCacheAbstractCache | 我们使用TusPhpS3CachePredisCache 作为Predis 客户端。 |
$storage | LeagueFlysystemAwsS3v3AwsS3Adapter | 该适配器包含 AWS S3 客户端。 |
$request | TusPhps3HttpRequest | 该对象包含SymfonyComponentHttpFoundationRequest 。 |
$excludeAttrApiPath | array | 从 Api 路径中排除某些部分,为 TUS 服务器创建真正的 Api 基本路径。例如,如果我的 Api 基本路径是https://example.com/uploads 但我的上传 PATCH 是http://example.com/uploads/{id} 我们需要排除['id'] 。 |
$forceLocationSSL | boolean | 将location 标头属性强制设置为https 。 |
/**
* Create new upload
* or get server configuration
**/
$ routes -> add ( ' uploads ' , ' /api/uploads ' )
-> controller ([UploadController::class, ' upload ' ])
-> methods ([ POST , OPTIONS ])
/**
* Upload files
* or delete uploads
**/
$ routes-> add ( ' uploads ' , ' /api/uploads/{id} ' )
-> controller ([UploadController::class, ' upload ' ])
-> methods ([ PATCH , DELETE ])
use TusPhpS3 ;
use Aws S3 S3Client ;
use League Flysystem AwsS3v3 AwsS3Adapter ;
use Symfony Component HttpFoundation Request as HttpRequest ;
class UploadController
{
public function upload ()
{
// redis connection
$ predis = new Predis Client ( ' tcp://10.0.0.1:6379 ' );
// AWS S3 Client
$ S3client = new S3Client ([
' credentials ' => [
' key ' => ' your-key ' ,
' secret ' => ' your-secret ' ,
],
' region ' => ' your-region ' ,
' version ' => ' latest|version ' ,
]);
$ server = new TusPhpS3 Server (
new TusPhpS3 Cache PredisCache ( $ predis ),
new AwsS3Adapter ( $ S3client , ' your-bucket-name ' , ' optional/path/prefix ' ),
new TusPhpS3 Http Request (HttpRequest:: createFromGlobals ()),
[ ' id ' ],
true
);
return $ server -> serve (); // return an TusPhpS3HttpResponse
}
}