php tus aws s3
1.0.0
Proyek ini tidak dipertahankan. Silakan gunakan proyek asli ankitpokhrel/tus-php untuk memastikan pembaruan rutin. Berikut beberapa catatan tentang penggunaan proyek dengan AWS S3.
Server TUS sederhana, ringan, dan minimum yang terhubung dengan AWS S3. Berdasarkan ankitpokhrel/tus-php.
Jika Anda menggunakan Symfony, periksa tabel di bawah ini.
Versi Symfony | versi php-tus-aws-s3 |
---|---|
^4.3 | ~1.0 |
^5.0 atau ^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 )
{
//...
}
}
Milik | Jenis | Detail |
---|---|---|
$cache | TusPhpCacheAbstractCache | Kami menggunakan TusPhpS3CachePredisCache untuk klien Predis . |
$storage | LeagueFlysystemAwsS3v3AwsS3Adapter | Adaptor ini berisi Klien AWS S3. |
$request | TusPhps3HttpRequest | Objek ini berisi SymfonyComponentHttpFoundationRequest . |
$excludeAttrApiPath | array | Kecualikan beberapa bagian dari jalur Api untuk membuat Jalur Basis Api nyata untuk Server TUS. Misalnya, jika jalur dasar Api saya adalah https://example.com/uploads tetapi PATCH unggahan saya adalah http://example.com/uploads/{id} Kita perlu mengecualikan ['id'] . |
$forceLocationSSL | boolean | Paksa properti header location ke 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
}
}