php tus aws s3
1.0.0
このプロジェクトはメンテナンスされていません。定期的に更新するには、元のプロジェクト ankitpokhrel/tus-php を使用してください。 AWS S3 でプロジェクトを使用する場合の注意事項をいくつか示します。
AWS S3に接続されたシンプル、軽量、最小限のTUSサーバー。 ankitpokhrel/tus-php に基づいています。
Symfony を使用している場合は、以下の表を確認してください。
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 | Predis クライアントにはTusPhpS3CachePredisCache 使用しています。 |
$storage | LeagueFlysystemAwsS3v3AwsS3Adapter | このアダプターには AWS S3 クライアントが含まれています。 |
$request | TusPhps3HttpRequest | このオブジェクトにはSymfonyComponentHttpFoundationRequest が含まれています。 |
$excludeAttrApiPath | array | TUS サーバーの実際の API ベース パスを作成するには、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
}
}