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 | 우리는 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
}
}