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
}
}