php tus aws s3
1.0.0
Este projeto não está sendo mantido. Por favor, use o projeto original ankitpokhrel/tus-php para garantir atualizações regulares. Aqui estão algumas notas sobre como usar o projeto com AWS S3.
Servidor TUS simples, leve e mínimo conectado com AWS S3. Baseado em ankitpokhrel/tus-php.
Se você estiver usando Symfony, verifique a tabela abaixo.
Versão Symfony | versão php-tus-aws-s3 |
---|---|
^4,3 | ~1,0 |
^5,0 ou ^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 )
{
//...
}
}
Propriedade | Tipo | Detalhes |
---|---|---|
$cache | TusPhpCacheAbstractCache | Estamos usando TusPhpS3CachePredisCache para o cliente Predis . |
$storage | LeagueFlysystemAwsS3v3AwsS3Adapter | Este adaptador contém o cliente AWS S3. |
$request | TusPhps3HttpRequest | Este objeto contém um SymfonyComponentHttpFoundationRequest . |
$excludeAttrApiPath | array | Exclua algumas partes do caminho da API para criar um caminho base da API real para o servidor TUS. Por exemplo, se meu caminho base da API for https://example.com/uploads mas meu PATCH de upload for http://example.com/uploads/{id} precisamos excluir ['id'] . |
$forceLocationSSL | boolean | Forçar a propriedade do cabeçalho de location para 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
}
}