php tus aws s3
1.0.0
Dieses Projekt wird nicht gepflegt. Bitte verwenden Sie das Originalprojekt ankitpokhrel/tus-php, um regelmäßige Updates sicherzustellen. Hier finden Sie einige Hinweise zur Verwendung des Projekts mit AWS S3.
Einfacher, leichter Server mit minimalem TUS, verbunden mit AWS S3. Basierend auf ankitpokhrel/tus-php.
Wenn Sie Symfony verwenden, sehen Sie sich die folgende Tabelle an.
Symfony-Version | php-tus-aws-s3-Version |
---|---|
^4.3 | ~1,0 |
^5.0 oder ^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 )
{
//...
}
}
Eigentum | Typ | Einzelheiten |
---|---|---|
$cache | TusPhpCacheAbstractCache | Wir verwenden TusPhpS3CachePredisCache für Predis Client. |
$storage | LeagueFlysystemAwsS3v3AwsS3Adapter | Dieser Adapter enthält den AWS S3-Client. |
$request | TusPhps3HttpRequest | Dieses Objekt enthält ein SymfonyComponentHttpFoundationRequest . |
$excludeAttrApiPath | array | Schließen Sie einige Teile aus dem API-Pfad aus, um einen echten API-Basispfad für den TUS-Server zu erstellen. Wenn mein API-Basispfad beispielsweise https://example.com/uploads lautet, mein Upload-PATCH jedoch http://example.com/uploads/{id} ist, müssen wir ['id'] ausschließen. |
$forceLocationSSL | boolean | location Header-Eigenschaft auf https erzwingen. |
/**
* 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
}
}