cusodede/yii2-s3-module
Composer 安装命令:
composer require cusodede/yii2-s3-module
包简介
S3 support module
关键字:
README 文档
README
S3 support module (file-manager and stuff).
Installation with Composer
Run
php composer.phar require cusodede/yii2-s3-module "^1.0.0"
or add
"cusodede/yii2-s3-module": "^1.0.0"
to the require section of your composer.json file.
Module migration
Module needs to store file data in database tables, which will be created by
php yii migrate/up --migrationPath=@vendor/cusodede/yii2-s3-module/migrations
command. You can customize table names by define tableName and tagsTableName parameters in module
configuration.
Configuration parameters
See example config below:
return [ // ... 'modules' => [ 's3' => [ 'class' => cusodede\s3\S3Module::class, 'defaultRoute' => 'index', 'params' => [ 'connection' => [ 'host' => 'minio_host', 'login' => 'minio_user', 'password' => 'minio_password', 'connect_timeout' => 10, /* http connection timeout */ 'timeout' => 10, /* http timeout */ 'cert_path' => null, /* path to ssl certificate, set null to disable */ 'cert_password' => null /* certificate password, set null, if certificate has no password */ ], 'tableName' => 'sys_cloud_storage', /* the table with storage data info, see Module migration section */ 'tagsTableName' => 'sys_cloud_storage_tags', /* the table with local tags, see Module migration section */ 'viewPath' => '@vendor/cusodede/yii2-s3-module/src/views/index', /* path to view templates, if you want to customize them */ 'maxUploadFileSize' => null, /* a file size limit for uploaded file, set null to disable */ 'defaultBucket' => 'bucket', /* a name of bucket, used by default, if null, an alphabetically first bucket will be used */ 'mimeTypes' => [ 'apk' => 'application/vnd.android.package-archive', ],/* mime types list (ext => mime), used for downloaded files mime substitution. Note: that list overrides a magic.mime file information. */ 'defaultMimeType' => 'application/octet-stream', /* mime type, that be used for any file, which extension aren't included in mimeTypes parameter or in magic.mime */ 'deleteTempFiles' => true /* delete php temp files after upload */ 'instance' => null, /* String: an additional instance name (useful for connection definition, if several connections are used. Null: disabled */ 'dateFormat' => 'Y-m-d H:i:s' /* timestamp date format for created_at field. Also can be set via closure like 'dateFormat' => function() => DateTimeImmutable::createFromFormat('Y-m-d H:i:s.uO', '2009-02-15') */ ] ] ] // ... ]
How to handle multiple connections to different S3 servers?
It is possible to configure multiple named connections in params.connection section:
return [ // ... 'modules' => [ 's3' => [ 'class' => cusodede\s3\S3Module::class, 'defaultRoute' => 'index', 'params' => [ 'connection' => [ 'FirstS3Connection' => [ 'host' => 'minio_host_one', 'login' => 'minio_user', 'password' => 'minio_password', 'connect_timeout' => 10, 'timeout' => 10, 'cert_path' => null, 'cert_password' => null, 'defaultBucket' => 'first_host_bucket' /* note that you can set default bucket for each connection separately */ ], 'SecondS3Connection' => [ 'host' => 'minio_host_two', 'login' => 'minio_user', 'password' => 'minio_password', 'connect_timeout' => 10, 'timeout' => 10, 'cert_path' => null, 'cert_password' => null, 'defaultBucket' => 'second_host_bucket' ] ], 'tableName' => 'sys_cloud_storage', 'tagsTableName' => 'sys_cloud_storage_tags', 'viewPath' => './src/views/index', 'defaultBucket' => 'testbucket', 'maxUploadFileSize' => null, 'deleteTempFiles' => true, ] ] ] // ... ]
and use them like this:
S3Helper::FileToStorage($filePath, connection: 'FirstS3Connection');
or
$s3 = new S3(['connection' => 'SecondS3Connection']);
connection parameter can be skipped, even for multiple connections configurations. In that case first
connection in list will be used.
How to handle stream uploads via multipart/form-data?
At first, configure MultipartFormDataParser as request parser for multipart/form-data:
return [ 'components' => [ 'request' => [ 'parsers' => [ 'multipart/form-data' => yii\web\MultipartFormDataParser::class ], ], // ... ], // ... ];
that's all. Now it is possible to do stream uploads via PUT method. You can use an any proper JS-based
widget (like limion/yii2-jquery-fileupload-widget) to do this. See also views/index/put.php for example.
Local tagging
It is possible to mark uploads with tags, what may be used for quick searches. Tags will be stored in the
local table and also will be assigned to S3 object. But it works only to one side: tags from S3 objects will
not be synchronized to local table. It is possible to sync local and remote tags, see
CloudStorage::syncTagsFromS3() and CloudStorage::syncTagsToS3() methods.
Development and Testing
Prerequisites
- Docker and Docker Compose
- PHP 8.4+ (for local development)
Running Tests
This project supports testing with PHP 8.4 and PHP 8.5 using Docker containers.
Docker Testing (Recommended)
The project uses a unified Docker environment for both development and testing. Services are started once and reused between test runs for maximum efficiency.
Quick Start:
# Start the development environment (PostgreSQL + MinIO + PHP containers) make up # Run all tests (PHP 8.4 and 8.5) make test # Stop the environment when done make down
Detailed Commands:
# Environment management make up # Start all services make down # Stop all services make restart # Restart all services make status # Show container status # Testing make test # Run tests on both PHP versions make test84 # Run tests on PHP 8.4 only make test85 # Run tests on PHP 8.5 only make quick-test # Quick tests (no composer install) make coverage # Run tests with code coverage report (PHP 8.4) # Development make shell84 # Access PHP 8.4 container shell make shell85 # Access PHP 8.5 container shell make composer-install # Install dependencies in both containers # Setup make build # Build Docker images make rebuild # Force rebuild (after Dockerfile changes)
Windows Testing
Windows users can use the same make commands if they have Docker Desktop and Git Bash, or use Docker Compose directly:
# Start environment
docker compose up -d
# Run tests
docker compose exec php-8.4 vendor/bin/codecept run -v --debug
docker compose exec php-8.5 vendor/bin/codecept run -v --debug
# Stop environment
docker compose down
Local Testing (Without Docker)
Requirements:
- PHP 8.4+
- PostgreSQL
- MinIO server
-
Copy and configure environment:
cp tests/.env.example tests/.env # Edit tests/.env with your local database and MinIO settings -
Install dependencies:
composer install
-
Run tests:
php vendor/bin/codecept run # Run specific test suites php vendor/bin/codecept run unit php vendor/bin/codecept run functional php vendor/bin/codecept run console
Test Environment
Continuous Integration
Tests run automatically on GitHub Actions for PHP 8.4 and 8.5 with:
- PostgreSQL 13.4 database service
- MinIO S3-compatible storage service
- All required PHP extensions (zip, pdo_pgsql, sockets, bcmath, pcntl, intl, mbstring)
Local Docker Testing
The Docker setup includes:
- PHP 8.4/8.5 containers with all required extensions
- PostgreSQL for database testing
- MinIO S3-compatible storage server
Test configuration is defined in:
codeception.yml- Main test configurationtests/*.suite.yml- Test suite configurationstests/.env- Test environment variablestests/.env.ci- CI environment variablesdocker-compose.yml- Unified Docker environmentdocker/- PHP container definitions
Adding Middleware
You can add middleware for certain stages of the request lifecycle.
Available stages:
| Stage | Purpose |
|---|---|
| init | Command initialization, adding default parameters |
| validate | Validation of command input parameters |
| build | Serialization of the command into an HTTP request |
| sign | HTTP request signing (SigV4) |
| attempt | Direct execution of the HTTP request and receiving the response |
Configuration
use Aws\CommandInterface; use Psr\Http\Message\RequestInterface; $params = [ ... 'params' => [ ... 'attemptMiddleware' => [ 'middleware' => function (CommandInterface $cmd, RequestInterface $request) {}, 'name' => 'test', // Optional middleware name ], 'signMiddleware' => [ 'middleware' => function (CommandInterface $cmd, RequestInterface $request) {}, 'name' => 'test', // Optional middleware name ], 'buildMiddleware' => [ 'middleware' => function (CommandInterface $cmd, RequestInterface $request) {}, 'name' => 'test', // Optional middleware name ], 'initMiddleware' => [ 'middleware' => function (CommandInterface $cmd, RequestInterface $request) {}, 'name' => 'test', // Optional middleware name ], 'validateMiddleware' => [ 'middleware' => function (CommandInterface $cmd, RequestInterface $request) {}, 'name' => 'test', // Optional middleware name ], ] ]
cusodede/yii2-s3-module 适用场景与选型建议
cusodede/yii2-s3-module 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 109 次下载、GitHub Stars 达 3, 最近一次更新时间为 2022 年 06 月 18 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「s3」 「module」 「cloud storage」 「yii2」 「minio」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 cusodede/yii2-s3-module 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 cusodede/yii2-s3-module 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 cusodede/yii2-s3-module 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A SDK for working with B2 cloud storage.
Small library to access Microsoft Windows Azure Blob Storage with a Service or a StreamWrapper.
UCloud Resource (Cloud) Storage SDK for PHP
The flysystem adapter for yandex disk rest api.
A sleek PHP wrapper around rclone with Laravel-style fluent API syntax
非官方云小票机SDK,支持飞鹅云,芯烨云,易联云,快递100,映美云,中午云,佳博云,优声云,365智能云打印等
统计信息
- 总下载量: 109
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 15
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: proprietary
- 更新时间: 2022-06-18