php tus aws s3
1.0.0
لا يتم الحفاظ على هذا المشروع. الرجاء استخدام المشروع الأصلي ankitpokhrel/tus-php لضمان التحديثات المنتظمة. فيما يلي بعض الملاحظات حول استخدام المشروع مع AWS S3.
خادم TUS بسيط وخفيف الوزن ومتصل بـ AWS S3. استنادًا إلى 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 | نحن نستخدم TusPhpS3CachePredisCache لعميل Predis . |
$storage | LeagueFlysystemAwsS3v3AwsS3Adapter | يحتوي هذا المحول على عميل AWS S3. |
$request | TusPhps3HttpRequest | يحتوي هذا الكائن على SymfonyComponentHttpFoundationRequest . |
$excludeAttrApiPath | array | استبعد بعض الأجزاء من مسار Api لإنشاء مسار Api Base Path حقيقي لخادم TUS. على سبيل المثال، إذا كان المسار الأساسي لواجهة برمجة التطبيقات (API) الخاص بي هو https://example.com/uploads ولكن تصحيح التحميل الخاص بي هو 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
}
}