zenoware/laravel-sql-dump-validator 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

zenoware/laravel-sql-dump-validator

最新稳定版本:v0.1.4

Composer 安装命令:

composer require zenoware/laravel-sql-dump-validator

包简介

Recursively finds and validates SQL dump (.sql.gz) files inside a directory.

README 文档

README

PHPUnit

This package provides a Laravel command and a service to validate SQL dump files for corruption. It uses the gunzip -t command to test the integrity of .sql.gz files.

Installation

Use composer to install the package:

composer require zenoware/laravel-sql-dump-validator

Requirements

The package requires the gunzip command to be installed on your system. The command is used to test the integrity of .sql.gz files.

Usage

Command

You can use the provided command to validate SQL dump files. The command accepts a path and an optional depth parameter.

php artisan zenoware:sqldump:validate {path} {--depth=2}

Validating SQL dump files in the storage/app/sqldumps directory:

php artisan zenoware:sqldump:validate storage/app/sqldumps

Validating SQL dump files in the storage/app/sqldumps directory with a maximum depth of 3:

php artisan zenoware:sqldump:validate storage/app/sqldumps --depth=3

The path argument is the directory where your SQL dump files are located. The --depth option is the maximum directory depth for the file search.

The command will print the validation results to the console. If a file is corrupted, it will print an error message with the file path and the error details.

On Routes and Jobs

Since the command uses SqlDumpValidatorService under the hood, you can also listen to events to handle the validation results by just running the command from within a job or a route.

# Be wary of timeouts when calling the command from a route or a job
Artisan::call('zenoware:sqldump:validate', ['path' => storage_path('app/sqldumps')]);

Service

You can also use the SqlDumpValidatorService directly in your code. The service accepts a path, a depth, and a callback function.

$validatorService->validateSqlDumps($path, $depth, function (SqlDumpFileMetadata $metadata, array $errors) {
    // Handle the validation results
});

The callback function is called for each file processed. It receives a SqlDumpFileMetadata object and an array of errors. If the file is OK, the errors array is empty.

Service Provider

The package includes a service provider that registers the SqlDumpValidatorService and the IFileAdapter interface with the Laravel service container.

If you want to use a different file adapter, you can bind your own implementation to the IFileAdapter interface in your own service provider.

Listening to Events

The service used by the command fires an event for each file processed. You can listen/subscribe to events to handle the validation results.

class SqlDumpEventSubscriber
{
    public function subscribe($events)
    {
        $events->listen(
            SqlDumpFileOk::class,
            function ($event) {
                Log::info('SqlDumpFileOk event fired', ['metadata' => $event->metadata]);
            }
        );

        $events->listen(
            SqlDumpFileCorrupted::class,
            function ($event) {
                Log::info('SqlDumpFileCorrupted event fired', ['metadata' => $event->metadata, 'errors' => $event->errors]);
            }
        );
    }
}
class EventServiceProvider extends ServiceProvider
{
    // [...]

    protected $subscribe = [
        SqlDumpEventSubscriber::class,
    ];

    // [...]
}

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

MIT

统计信息

  • 总下载量: 8
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-02-28