diff --git a/app/common/logic/ChangeLogLogic.php b/app/common/logic/ChangeLogLogic.php new file mode 100644 index 00000000..ed277316 --- /dev/null +++ b/app/common/logic/ChangeLogLogic.php @@ -0,0 +1,24 @@ + $model, + 'link_id' => $link_id, + 'nums' => $nums, + 'pm' => $pm, + 'mark' => $info, + 'url' => $url, + 'create_time' => time() + ]); + \Chance\Log\facades\OperationLog::clearLog(); + } +} diff --git a/app/common/model/change_log/ChangeLog.php b/app/common/model/change_log/ChangeLog.php new file mode 100644 index 00000000..74a0e698 --- /dev/null +++ b/app/common/model/change_log/ChangeLog.php @@ -0,0 +1,19 @@ + false, // 自定义分页类 - 'bootstrap' => '' + 'bootstrap' => '', + // 数据库类型 + 'type' => \Chance\Log\orm\think\MySqlConnection::class, + // 指定查询对象 + "query" => \Chance\Log\orm\think\Query::class, + // Builder类 + "builder" => \think\db\builder\Mysql::class, + // 模型所在的命名空间 + "modelNamespace" => "common\model", + // 日志记录的主键 + "logKey" => "id", ], 'demo' => [ // 数据库类型 diff --git a/vendor/bin/chance-fyi-operation-log b/vendor/bin/chance-fyi-operation-log new file mode 100644 index 00000000..b79510a4 --- /dev/null +++ b/vendor/bin/chance-fyi-operation-log @@ -0,0 +1,119 @@ +#!/usr/bin/env php +realpath = realpath($opened_path) ?: $opened_path; + $opened_path = $this->realpath; + $this->handle = fopen($this->realpath, $mode); + $this->position = 0; + + return (bool) $this->handle; + } + + public function stream_read($count) + { + $data = fread($this->handle, $count); + + if ($this->position === 0) { + $data = preg_replace('{^#!.*\r?\n}', '', $data); + } + + $this->position += strlen($data); + + return $data; + } + + public function stream_cast($castAs) + { + return $this->handle; + } + + public function stream_close() + { + fclose($this->handle); + } + + public function stream_lock($operation) + { + return $operation ? flock($this->handle, $operation) : true; + } + + public function stream_seek($offset, $whence) + { + if (0 === fseek($this->handle, $offset, $whence)) { + $this->position = ftell($this->handle); + return true; + } + + return false; + } + + public function stream_tell() + { + return $this->position; + } + + public function stream_eof() + { + return feof($this->handle); + } + + public function stream_stat() + { + return array(); + } + + public function stream_set_option($option, $arg1, $arg2) + { + return true; + } + + public function url_stat($path, $flags) + { + $path = substr($path, 17); + if (file_exists($path)) { + return stat($path); + } + + return false; + } + } + } + + if ( + (function_exists('stream_get_wrappers') && in_array('phpvfscomposer', stream_get_wrappers(), true)) + || (function_exists('stream_wrapper_register') && stream_wrapper_register('phpvfscomposer', 'Composer\BinProxyWrapper')) + ) { + return include("phpvfscomposer://" . __DIR__ . '/..'.'/chance-fyi/operation-log/bin/chance-fyi-operation-log'); + } +} + +return include __DIR__ . '/..'.'/chance-fyi/operation-log/bin/chance-fyi-operation-log'; diff --git a/vendor/chance-fyi/operation-log/.github/workflows/test.yml b/vendor/chance-fyi/operation-log/.github/workflows/test.yml new file mode 100644 index 00000000..7817a447 --- /dev/null +++ b/vendor/chance-fyi/operation-log/.github/workflows/test.yml @@ -0,0 +1,57 @@ +name: PHPUnit + +on: + push: + pull_request: + schedule: + - cron: '0 0 * * *' + +jobs: + test: + runs-on: ubuntu-22.04 + + strategy: + fail-fast: false + matrix: + php: [ 8.0, 8.1, 8.2 ] + swoole: [ '', swoole ] + + name: PHP ${{ matrix.php }} ${{ matrix.swoole }} + + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Start MySQL + run: docker compose up -d mysql mysql1 + + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php }} + extensions: pdo, pdo_mysql, ${{ matrix.swoole }} + ini-values: error_reporting=E_ALL + tools: composer:v2 + coverage: none + + - name: Composer install + run: composer install + + - name: Static analysis + run: composer analyse + + - name: Wait for MySQL + run: | + while ! docker compose exec mysql mysql --user=root --password=root -e "SELECT 1" >/dev/null 2>&1 || ! docker compose exec mysql1 mysql --user=root --password=root -e "SELECT 1" >/dev/null 2>&1; do + sleep 1 + done + + - name: Run tests + env: + MYSQL_HOST: 127.0.0.1 + MYSQL_PORT: 33060 + MYSQL1_PORT: 33061 + run: composer test + + - name: Close MySQL + run: docker compose down \ No newline at end of file diff --git a/vendor/chance-fyi/operation-log/.php-cs-fixer.php b/vendor/chance-fyi/operation-log/.php-cs-fixer.php new file mode 100644 index 00000000..aa0c2624 --- /dev/null +++ b/vendor/chance-fyi/operation-log/.php-cs-fixer.php @@ -0,0 +1,28 @@ +setFinder( + Finder::create() + ->in(__DIR__) + ->exclude('vendor') + ) + ->setRules([ + '@Symfony' => true, + '@PhpCsFixer' => true, + '@DoctrineAnnotation' => true, + 'list_syntax' => [ + 'syntax' => 'short' + ], + 'concat_space' => [ + 'spacing' => 'one' + ], + 'global_namespace_import' => [ + 'import_classes' => true, + 'import_constants' => true, + 'import_functions' => true, + ], + ]) + ->setUsingCache(false); \ No newline at end of file diff --git a/vendor/chance-fyi/operation-log/LICENSE b/vendor/chance-fyi/operation-log/LICENSE new file mode 100644 index 00000000..25f66dcd --- /dev/null +++ b/vendor/chance-fyi/operation-log/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2022 Chance + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/vendor/chance-fyi/operation-log/README.md b/vendor/chance-fyi/operation-log/README.md new file mode 100644 index 00000000..4779ac71 --- /dev/null +++ b/vendor/chance-fyi/operation-log/README.md @@ -0,0 +1,247 @@ +支持 Laravel 的 ORM 、Hyperf 的 ORM 与 ThinkPHP 的 ORM 。可以生成增、删、改,包括批量增、删、改,以及 使用 DB 操作的日志。 + +通过~~模型事件~~与获取器,自动生成可读性高的操作日志。2.0 版本已弃用模型事件,因为批量操作没有触发模型事件,使用模型事件无法覆盖所有模型对数据库的操作以及 DB 操作。 + +### 安装 + +> composer require chance-fyi/operation-log + +### 注意 + +> 因为使用了单例,所以在常驻内存的框架中使用一定要在每次请求结束之后将生成的日志清空。 + +### 使用 Laravel 的 ORM + +首先在数据库的配置文件 `config/database.php` 中增加两个配置项 `modelNamespace` 和 `logKey`。 + +```php + env('DB_CONNECTION', 'mysql'), + ... + 'connections' => [ + 'mysql' => [ + 'driver' => 'mysql', + 'url' => env('DATABASE_URL'), + 'host' => env('DB_HOST', '127.0.0.1'), + 'port' => env('DB_PORT', '3306'), + 'database' => env('DB_DATABASE', 'forge'), + 'username' => env('DB_USERNAME', 'forge'), + 'password' => env('DB_PASSWORD', ''), + ... + ... + // 模型所在的命名空间 + "modelNamespace" => "Chance\Log\Test\model", + // 日志记录的主键 + "logKey" => "id", + ], + ... + ] + ... +]; +``` + +然后注册 MySQL 数据库连接的解析器。 + +```php +\Illuminate\Database\Connection::resolverFor('mysql', function ($connection, $database, $prefix, $config) { + return new \Chance\Log\orm\illuminate\MySqlConnection($connection, $database, $prefix, $config); +}); +``` + +### 使用 ThinkPHP 的 ORM + +在数据库的配置文件 config/database.php 中增加三个配置项 `query`、`modelNamespace` 和 `logKey`,并修改 `type` 与 `builder`。 + +```php + env('database.driver', 'mysql'), + ... + 'connections' => [ + 'mysql' => [ + // 服务器地址 + 'hostname' => env('database.hostname', '127.0.0.1'), + // 数据库名 + 'database' => env('database.database', ''), + // 用户名 + 'username' => env('database.username', 'root'), + // 密码 + 'password' => env('database.password', ''), + // 端口 + 'hostport' => env('database.hostport', '3306'), + ... + ... + // 数据库类型 + 'type' => \Chance\Log\orm\think\MySqlConnection::class, + // 指定查询对象 + "query" => \Chance\Log\orm\think\Query::class, + // Builder类 + "builder" => \think\db\builder\Mysql::class, + // 模型所在的命名空间 + "modelNamespace" => "Chance\Log\Test\model", + // 日志记录的主键 + "logKey" => "id", + ], + // 更多的数据库配置信息 + ... + ], + ... +]; +``` + +### 日志主键 + +可在模型中设置`$logKey`属性修改需要记录的主键名称。 + +```php + '姓名', + 'sex' => '性别', + ]; +} +``` + +**获取器** + +设置一个名为`字段名_text`的获取器。 + +```php +sex)] ?? '未知'; + } + + // ThinkPHP ORM 获取器设置方法 + public function getSexTextAttr($key): string + { + return ['女','男'][($key ?? $this->sex)] ?? '未知'; + } +} +``` + +### 日志生成忽略的字段 + +可在模型中通过 `$ignoreLogFields` 设置该表不希望生成日志的字段。 + +```php + [ + "table1" => "app\\model\\Table1", + "table2" => "app\\model\\Table2", + ], + "database2" => [], +]); +``` + +### 获取日志信息 + +```php +\Chance\Log\facades\OperationLog::getLog(); +``` + +### 清除日志信息 + +```php +\Chance\Log\facades\OperationLog::clearLog(); +``` + +### 启用禁用 + +```php +# 启用 (默认) +\Chance\Log\facades\OperationLog::enable(); +# 禁用 +\Chance\Log\facades\OperationLog::disable(); +``` + +### 效果图 + +![image](https://user-images.githubusercontent.com/37658940/215932487-9c923053-1bdb-4198-a13e-3ca7d668d65c.png) + +![image](https://user-images.githubusercontent.com/37658940/215932628-ee02d2d4-b1a0-4fac-a53c-2eda2858c9bc.png) + +![image](https://user-images.githubusercontent.com/37658940/215932685-64cf39f3-6ac1-44c1-af29-abc7c078228c.png) + +![image](https://user-images.githubusercontent.com/37658940/215932722-99d7ad4b-01d6-4ddc-b47d-9d213c16022e.png) + +![image](https://user-images.githubusercontent.com/37658940/215932756-b8a88945-1732-4272-a843-eaf20aea528e.png) + +![image](https://user-images.githubusercontent.com/37658940/215932790-b93f54af-7a3e-4098-8765-8821d5d4fcb1.png) diff --git a/vendor/chance-fyi/operation-log/bin/chance-fyi-operation-log b/vendor/chance-fyi/operation-log/bin/chance-fyi-operation-log new file mode 100644 index 00000000..ac21ca4c --- /dev/null +++ b/vendor/chance-fyi/operation-log/bin/chance-fyi-operation-log @@ -0,0 +1,117 @@ +#!/usr/bin/env php +initialize(); +}// Laravel +elseif (class_exists(Illuminate\Foundation\Application::class)) { + $app = new Illuminate\Foundation\Application($dir . "/../"); + $app->singleton( + Illuminate\Contracts\Http\Kernel::class, + App\Http\Kernel::class + ); + $app->singleton( + Illuminate\Contracts\Debug\ExceptionHandler::class, + App\Exceptions\Handler::class + ); + $kernel = $app->make(Illuminate\Contracts\Http\Kernel::class); + $kernel->bootstrap(); +}// webman +elseif (class_exists(support\App::class)) { + support\App::loadAllConfig(); + support\bootstrap\LaravelDb::start(null); +} + +array_shift($argv); +$map = []; +foreach ($argv as $directory) { + if (!is_dir($directory)) { + echo "$directory is not a directory" . PHP_EOL; + exit(1); + } + $files = new RegexIterator(new RecursiveIteratorIterator(new RecursiveDirectoryIterator($directory)), "/\.php$/"); + foreach ($files as $file) { + $class = getClassNamespaceFromFile($file); + if (!class_exists($class)) { + continue; + } + $reflect = new ReflectionClass($class); + if ( + !preg_match("/\\\\model(s)?\\\\/i", $class) + ) { + continue; + } + + $object = $reflect->newInstanceArgs(); + if (class_exists(think\Model::class) && $object instanceof think\Model) { + $map[$object->getConfig("database")][$object->getTable()] = $class; + continue; + } + if (class_exists(Illuminate\Database\Eloquent\Model::class) && $object instanceof Illuminate\Database\Eloquent\Model) { + $map[$object->getConnection()->getDatabaseName()][$object->getConnection()->getTablePrefix() . $object->getTable()] = $class; + } + } +} + +$data = <<getRealPath()); + $tokens = token_get_all($content); + $namespace = ""; + $class = ""; + $count = count($tokens); + $i = 0; + while ($i < $count) { + $token = $tokens[$i]; + if (is_array($token) && $token[0] == T_NAMESPACE) { + while (++$i < $count) { + if ($tokens[$i] === ';') { + $namespace = trim($namespace); + break; + } + $namespace .= is_array($tokens[$i]) ? $tokens[$i][1] : $tokens[$i]; + } + } + if ( + is_array($token) + && $i >= 2 + && $tokens[$i - 2][0] == T_CLASS + && $tokens[$i - 1][0] == T_WHITESPACE + && $token[0] == T_STRING + ) { + $class = trim($tokens[$i][1]); + break; + } + + $i++; + } + + return $namespace . "\\" . $class; +} \ No newline at end of file diff --git a/vendor/chance-fyi/operation-log/cache/table-model-mapping.php b/vendor/chance-fyi/operation-log/cache/table-model-mapping.php new file mode 100644 index 00000000..17263329 --- /dev/null +++ b/vendor/chance-fyi/operation-log/cache/table-model-mapping.php @@ -0,0 +1,9 @@ + [ + 'table1' => 'app\\model\\Table1', + 'table2' => 'app\\model\\Table2', + ], + 'database2' => [], +]; diff --git a/vendor/chance-fyi/operation-log/composer.json b/vendor/chance-fyi/operation-log/composer.json new file mode 100644 index 00000000..3cef1abd --- /dev/null +++ b/vendor/chance-fyi/operation-log/composer.json @@ -0,0 +1,52 @@ +{ + "name": "chance-fyi/operation-log", + "description": "Elegant logging of operations", + "type": "library", + "license": "MIT", + "autoload": { + "psr-4": { + "Chance\\Log\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "Chance\\Log\\Test\\": "tests/" + } + }, + "authors": [ + { + "name": "chance", + "email": "ctx_ya@qq.com" + } + ], + "minimum-stability": "dev", + "require": { + "php": "^8.0", + "ext-json": "*" + }, + "require-dev": { + "illuminate/database": "^8.0", + "topthink/think-orm": "2.0.x-dev", + "fakerphp/faker": "^1.21@dev", + "friendsofphp/php-cs-fixer": "dev-master", + "phpunit/phpunit": "9.6.x-dev", + "phpstan/phpstan": "1.11.x-dev", + "hyperf/database": "^3.0@dev", + "hyperf/di": "^3.0@dev", + "hyperf/pimple": "^2.1", + "hyperf/config": "^3.0@dev" + }, + "scripts": { + "test": "phpunit", + "cs-fix": "php-cs-fixer fix $1", + "analyse": "phpstan analyse --memory-limit=-1" + }, + "bin": [ + "bin/chance-fyi-operation-log" + ], + "extra": { + "hyperf": { + "config": "Chance\\Log\\orm\\hyperf\\ConfigProvider" + } + } +} diff --git a/vendor/chance-fyi/operation-log/src/Facade.php b/vendor/chance-fyi/operation-log/src/Facade.php new file mode 100644 index 00000000..70624bb0 --- /dev/null +++ b/vendor/chance-fyi/operation-log/src/Facade.php @@ -0,0 +1,36 @@ +setTableModelMapping(OperationLogFacade::getTableModelMapping()); + } + Facade::setResolvedInstance(self::class, $this); + } + + public function getLog(): string + { + $log = $this->getRawLog(); + $this->clearLog(); + + return trim(implode('', $log), PHP_EOL); + } + + public function clearLog(): void + { + $this->setRawLog(['']); + } + + public function beginTransaction(): void + { + $log = $this->getRawLog(); + $log[] = ''; + $this->setRawLog($log); + } + + public function rollBackTransaction(int $toLevel): void + { + $this->setRawLog(array_slice($this->getRawLog(), 0, $toLevel)); + if (0 === count($this->getRawLog())) { + $this->clearLog(); + } + } + + /** + * Get table comment. + */ + public function getTableComment(ThinkModel|LaravelModel|HyperfModel $model): string + { + $table = $this->getTableName($model); + if (isset($model->tableComment)) { + return $model->tableComment ?: $table; + } + + $databaseName = $this->getDatabaseName($model); + $comment = ''; + + if (empty($this->tableComment[$databaseName])) { + $this->tableComment[$databaseName] = $this->executeSQL($model, "SELECT TABLE_NAME, TABLE_COMMENT FROM information_schema.TABLES WHERE TABLE_SCHEMA = '{$databaseName}'"); + } + + foreach ($this->tableComment[$databaseName] as $item) { + if (is_array($item) && $item['TABLE_NAME'] == $table) { + $comment = $item['TABLE_COMMENT']; + + break; + } + if (is_object($item) && $item->TABLE_NAME == $table) { + $comment = $item->TABLE_COMMENT; + + break; + } + } + + return (string) ($comment ?: $table); + } + + /** + * Get field comment. + */ + public function getColumnComment(ThinkModel|LaravelModel|HyperfModel $model, string $field): string + { + if (isset($model->columnComment)) { + return $model->columnComment[$field] ?? $field; + } + + $databaseName = $this->getDatabaseName($model); + $table = $this->getTableName($model); + $comment = ''; + + if (empty($this->columnComment[$databaseName])) { + $this->columnComment[$databaseName] = $this->executeSQL($model, "SELECT TABLE_NAME,COLUMN_NAME,COLUMN_COMMENT FROM information_schema.COLUMNS WHERE TABLE_SCHEMA = '{$databaseName}'"); + } + foreach ($this->columnComment[$databaseName] as $item) { + if (is_array($item) && $item['TABLE_NAME'] == $table && $item['COLUMN_NAME'] == $field) { + $comment = $item['COLUMN_COMMENT']; + + break; + } + if (is_object($item) && $item->TABLE_NAME == $table && $item->COLUMN_NAME == $field) { + $comment = $item->COLUMN_COMMENT; + + break; + } + } + + return (string) ($comment ?: $field); + } + + public function generateLog(ThinkModel|LaravelModel|HyperfModel $model, string $type): void + { + if ($model->doNotRecordLog ?? false) { + return; + } + $logKey = $model->logKey ?? $this->getPk($model); + $typeText = [ + self::CREATED => '创建', + self::BATCH_CREATED => '批量创建', + self::UPDATED => '修改', + self::BATCH_UPDATED => '批量修改', + self::DELETED => '删除', + self::BATCH_DELETED => '批量删除', + ][$type]; + $logHeader = "{$typeText} {$this->getTableComment($model)}" . + (in_array($type, [self::CREATED, self::UPDATED, self::BATCH_UPDATED, self::DELETED, self::BATCH_DELETED]) ? " ({$this->getColumnComment($model, $logKey)}:{$model->{$logKey}}):" : ':'); + $log = ''; + + switch ($type) { + case self::CREATED: + case self::BATCH_CREATED: + case self::DELETED: + case self::BATCH_DELETED: + foreach ($this->getAttributes($model) as $key => $value) { + if ($logKey === $key + || (isset($model->ignoreLogFields) && is_array($model->ignoreLogFields) && in_array($key, $model->ignoreLogFields))) { + continue; + } + $log .= "{$this->getColumnComment($model, $key)}:{$this->getValue($model, $key)},"; + } + + break; + + case self::UPDATED: + case self::BATCH_UPDATED: + foreach ($this->getChangedAttributes($model) as $key => $value) { + $keys = explode('.', $key); + $key = end($keys); + if ($logKey === $key + || (isset($model->ignoreLogFields) && is_array($model->ignoreLogFields) && in_array($key, $model->ignoreLogFields))) { + continue; + } + $log .= "{$this->getColumnComment($model, $key)}由:{$this->getOldValue($model, $key)} 改为:{$this->getValue($model, $key)},"; + } + + break; + } + if (!empty($log)) { + $log = mb_substr($log, 0, mb_strlen($log, 'utf8') - 1, 'utf8'); + $logs = $this->getRawLog(); + array_splice($logs, -1, 1, end($logs) . $logHeader . $log . PHP_EOL); + $this->setRawLog($logs); + } + } + + public function setTableModelMapping(array $map): void + { + $this->tableModelMapping = $map; + } + + public function getTableModelMapping(): array + { + return $this->tableModelMapping; + } + + public function status(): bool + { + if (extension_loaded('swoole') && class_exists(HyperfContext::class)) { + return HyperfContext::get(self::CONTEXT_STATUS, true); + } + + if (class_exists(WebmanContext::class)) { + return WebmanContext::get(self::CONTEXT_STATUS) ?? true; + } + + return $this->status; + } + + public function enable(): void + { + if (extension_loaded('swoole') && class_exists(HyperfContext::class)) { + HyperfContext::set(self::CONTEXT_STATUS, true); + + return; + } + + if (class_exists(WebmanContext::class)) { + WebmanContext::set(self::CONTEXT_STATUS, true); + + return; + } + + $this->status = true; + } + + public function disable(): void + { + if (extension_loaded('swoole') && class_exists(HyperfContext::class)) { + HyperfContext::set(self::CONTEXT_STATUS, false); + + return; + } + + if (class_exists(WebmanContext::class)) { + WebmanContext::set(self::CONTEXT_STATUS, false); + + return; + } + + $this->status = false; + } + + private function getRawLog() + { + if (extension_loaded('swoole') && class_exists(HyperfContext::class)) { + return HyperfContext::get(self::CONTEXT_LOG, ['']); + } + + if (class_exists(WebmanContext::class)) { + return WebmanContext::get(self::CONTEXT_LOG) ?? ['']; + } + + return $this->log; + } + + private function setRawLog(array $log): void + { + if (extension_loaded('swoole') && class_exists(HyperfContext::class)) { + HyperfContext::set(self::CONTEXT_LOG, $log); + + return; + } + + if (class_exists(WebmanContext::class)) { + WebmanContext::set(self::CONTEXT_LOG, $log); + + return; + } + + $this->log = $log; + } +} diff --git a/vendor/chance-fyi/operation-log/src/OperationLogInterface.php b/vendor/chance-fyi/operation-log/src/OperationLogInterface.php new file mode 100644 index 00000000..7a23bc84 --- /dev/null +++ b/vendor/chance-fyi/operation-log/src/OperationLogInterface.php @@ -0,0 +1,60 @@ +insertLog($values); + + return $result; + } + + public function insertGetId(array $values, $sequence = null): int + { + $id = parent::insertGetId($values, $sequence); + + $this->insertLog($values); + + return $id; + } + + public function insertOrIgnore(array $values): int + { + $result = parent::insertOrIgnore($values); + + $this->insertLog($values); + + return $result; + } + + public function update(array $values): int + { + if (HyperfOrmLog::status()) { + $oldData = $this->get()->toArray(); + if (!empty($oldData)) { + $model = $this->generateModel(); + if (count($oldData) > 1) { + HyperfOrmLog::batchUpdated($model, $oldData, $values); + } else { + HyperfOrmLog::updated($model, (array) $oldData[0], $values); + } + } + } + + return parent::update($values); + } + + public function delete($id = null): int + { + $this->deleteLog($id); + + return parent::delete($id); + } + + public function truncate(): void + { + $this->deleteLog(); + parent::truncate(); + } + + /** + * Generate model object. + */ + private function generateModel(): Model + { + $name = $this->from; + + /** @var Connection $connection */ + $connection = $this->getConnection(); + $database = $connection->getDatabaseName(); + $table = $connection->getTablePrefix() . $name; + + $mapping = [ + OperationLog::getTableModelMapping(), + include __DIR__ . '/../../../cache/table-model-mapping.php', + ]; + foreach ($mapping as $map) { + if (is_array($map) && isset($map[$database][$table]) && class_exists($map[$database][$table])) { + return new $map[$database][$table](); + } + } + + $modelNamespace = $connection->getConfig('modelNamespace') ?: 'app\\model'; + $className = trim($modelNamespace, '\\') . '\\' . Str::studly($name); + if (class_exists($className)) { + $model = new $className(); + } else { + $model = new DbModel(); + $model->setQueryObj($connection); + $model->setTable($name); + $model->logKey = $connection->getConfig('logKey') ?: $model->getKeyName(); + } + + return $model; + } + + private function insertLog(array $values): void + { + if (HyperfOrmLog::status()) { + $model = $this->generateModel(); + if (is_array(reset($values))) { + HyperfOrmLog::batchCreated($model, $values); + } else { + /** @var Connection $connection */ + $connection = $this->getConnection(); + $id = $connection->getPdo()->lastInsertId(); + $pk = $model->getKeyName(); + $values[$pk] = $id; + HyperfOrmLog::created($model, $values); + } + } + } + + private function deleteLog($id = null): void + { + if (HyperfOrmLog::status()) { + if (!empty($id)) { + $data = [(array) $this->find($id)]; + } else { + $data = $this->get()->toArray(); + } + + if (!empty($data)) { + $model = $this->generateModel(); + if (count($data) > 1) { + HyperfOrmLog::batchDeleted($model, $data); + } else { + HyperfOrmLog::deleted($model, (array) $data[0]); + } + } + } + } +} diff --git a/vendor/chance-fyi/operation-log/src/orm/hyperf/ConfigProvider.php b/vendor/chance-fyi/operation-log/src/orm/hyperf/ConfigProvider.php new file mode 100644 index 00000000..039e04db --- /dev/null +++ b/vendor/chance-fyi/operation-log/src/orm/hyperf/ConfigProvider.php @@ -0,0 +1,33 @@ + [ + 'scan' => [ + 'paths' => [ + __DIR__, + ], + ], + ], + 'aspects' => [ + NewBaseQueryBuilderAspect::class, + ], + ]; + } +} diff --git a/vendor/chance-fyi/operation-log/src/orm/hyperf/DbModel.php b/vendor/chance-fyi/operation-log/src/orm/hyperf/DbModel.php new file mode 100644 index 00000000..c4a63a34 --- /dev/null +++ b/vendor/chance-fyi/operation-log/src/orm/hyperf/DbModel.php @@ -0,0 +1,28 @@ +query = $query; + } + + public function getQueryObj(): Query + { + return $this->query; + } +} diff --git a/vendor/chance-fyi/operation-log/src/orm/hyperf/Log.php b/vendor/chance-fyi/operation-log/src/orm/hyperf/Log.php new file mode 100644 index 00000000..6c25b2c4 --- /dev/null +++ b/vendor/chance-fyi/operation-log/src/orm/hyperf/Log.php @@ -0,0 +1,175 @@ +getKeyName(); + } + + /** + * @param Model $model + */ + public function getTableName($model): string + { + return $model->getConnection()->getTablePrefix() . $model->getTable(); + } + + /** + * @param Model $model + */ + public function getDatabaseName($model): string + { + if (method_exists($model, 'getQueryObj')) { + return $model->getQueryObj()->getDatabaseName(); + } + + return $model->getConnection()->getDatabaseName(); + } + + /** + * @param Model $model + */ + public function executeSQL($model, string $sql): array + { + if (method_exists($model, 'getQueryObj')) { + return $model->getQueryObj()->select($sql); + } + + return $model->getConnection()->select($sql); + } + + /** + * @param Model $model + */ + public function getAttributes($model): array + { + return $model->getAttributes(); + } + + /** + * @param Model $model + */ + public function getChangedAttributes($model): array + { + return $model->getChanges(); + } + + /** + * @param Model $model + */ + public function getValue($model, string $key): string + { + $keyText = $key . '_text'; + $value = $model->{$keyText} ?? $model->{$key}; + + if (is_array($value)) { + return json_encode($value, JSON_UNESCAPED_UNICODE); + } + + return (string) $value; + } + + /** + * @param Model $model + */ + public function getOldValue($model, string $key): string + { + if (str_contains($key, '->')) { + [$key, $jsonKey] = explode('->', $key, 2); + } + + $keyText = $key . '_text'; + $attributeFun = 'get' . Str::studly(Str::lower($keyText)) . 'Attribute'; + $value = (string) (method_exists($model, $attributeFun) ? $model->{$attributeFun}($model->getOriginal($key)) : $model->getOriginal($key)); + + $val = json_decode($value, true); + if (!isset($jsonKey) || is_null($val) || !is_array($val)) { + return $value; + } + + foreach (explode('->', $jsonKey) as $k) { + $val = $val[$k]; + } + + return (string) $val; + } + + /** + * @param Model $model + */ + public function created($model, array $data): void + { + $model->setRawAttributes($data); + $this->generateLog($model, self::CREATED); + } + + /** + * @param Model $model + */ + public function updated($model, array $oldData, array $data): void + { + $model->setRawAttributes($oldData, true); + $model->setRawAttributes(array_merge($oldData, $data)); + $model->syncChanges(); + $this->generateLog($model, self::UPDATED); + } + + /** + * @param Model $model + */ + public function deleted($model, array $data): void + { + $model->setRawAttributes($data); + $this->generateLog($model, self::DELETED); + } + + /** + * @param Model $model + */ + public function batchCreated($model, array $data): void + { + foreach ($data as $item) { + $model->setRawAttributes($item); + $this->generateLog($model, self::BATCH_CREATED); + } + } + + /** + * @param Model $model + */ + public function batchUpdated($model, array $oldData, array $data): void + { + foreach ($oldData as $item) { + $model->setRawAttributes((array) $item, true); + $model->setRawAttributes(array_merge((array) $item, $data)); + $model->syncChanges(); + $this->generateLog($model, self::BATCH_UPDATED); + } + } + + /** + * @param Model $model + */ + public function batchDeleted($model, array $data): void + { + foreach ($data as $item) { + $model->setRawAttributes((array) $item); + $this->generateLog($model, self::BATCH_DELETED); + } + } +} diff --git a/vendor/chance-fyi/operation-log/src/orm/hyperf/MySqlConnection.php b/vendor/chance-fyi/operation-log/src/orm/hyperf/MySqlConnection.php new file mode 100644 index 00000000..2baa2b87 --- /dev/null +++ b/vendor/chance-fyi/operation-log/src/orm/hyperf/MySqlConnection.php @@ -0,0 +1,33 @@ +getQueryGrammar(), + $this->getPostProcessor() + ); + } + + public function beginTransaction(): void + { + HyperfOrmLog::beginTransaction(); + parent::beginTransaction(); + } + + public function rollBack($toLevel = null): void + { + HyperfOrmLog::rollBackTransaction(is_null($toLevel) ? $this->transactions : $toLevel); + parent::rollBack($toLevel); + } +} diff --git a/vendor/chance-fyi/operation-log/src/orm/hyperf/aspect/NewBaseQueryBuilderAspect.php b/vendor/chance-fyi/operation-log/src/orm/hyperf/aspect/NewBaseQueryBuilderAspect.php new file mode 100644 index 00000000..97852ab7 --- /dev/null +++ b/vendor/chance-fyi/operation-log/src/orm/hyperf/aspect/NewBaseQueryBuilderAspect.php @@ -0,0 +1,29 @@ +process(); + + return new Builder($query->getConnection(), $query->getGrammar(), $query->getProcessor()); + } +} diff --git a/vendor/chance-fyi/operation-log/src/orm/illuminate/Builder.php b/vendor/chance-fyi/operation-log/src/orm/illuminate/Builder.php new file mode 100644 index 00000000..6a5a3a4e --- /dev/null +++ b/vendor/chance-fyi/operation-log/src/orm/illuminate/Builder.php @@ -0,0 +1,146 @@ +insertLog($values); + + return $result; + } + + public function insertGetId(array $values, $sequence = null): int + { + $id = parent::insertGetId($values, $sequence); + + $this->insertLog($values); + + return $id; + } + + public function insertOrIgnore(array $values): int + { + $result = parent::insertOrIgnore($values); + + $this->insertLog($values); + + return $result; + } + + public function update(array $values): int + { + if (IlluminateOrmLog::status()) { + $oldData = $this->get()->toArray(); + if (!empty($oldData)) { + $model = $this->generateModel(); + if (count($oldData) > 1) { + IlluminateOrmLog::batchUpdated($model, $oldData, $values); + } else { + IlluminateOrmLog::updated($model, (array) $oldData[0], $values); + } + } + } + + return parent::update($values); + } + + public function delete($id = null): int + { + $this->deleteLog($id); + + return parent::delete($id); + } + + public function truncate(): void + { + $this->deleteLog(); + parent::truncate(); + } + + /** + * Generate model object. + */ + private function generateModel(): Model + { + $name = $this->from; + + /** @var Connection $connection */ + $connection = $this->getConnection(); + $database = $connection->getDatabaseName(); + $table = $connection->getTablePrefix() . $name; + + $mapping = [ + OperationLog::getTableModelMapping(), + include __DIR__ . '/../../../cache/table-model-mapping.php', + ]; + foreach ($mapping as $map) { + if (is_array($map) && isset($map[$database][$table]) && class_exists($map[$database][$table])) { + return new $map[$database][$table](); + } + } + + $modelNamespace = $connection->getConfig('modelNamespace') ?: 'app\\model'; + $className = trim($modelNamespace, '\\') . '\\' . Str::studly($name); + if (class_exists($className)) { + $model = new $className(); + } else { + $model = new DbModel(); + $model->setQuery($connection); + $model->setTable($name); + $model->logKey = $connection->getConfig('logKey') ?: $model->getKeyName(); + } + + return $model; + } + + private function insertLog(array $values): void + { + if (IlluminateOrmLog::status()) { + $model = $this->generateModel(); + if (is_array(reset($values))) { + IlluminateOrmLog::batchCreated($model, $values); + } else { + /** @var Connection $connection */ + $connection = $this->getConnection(); + $id = $connection->getPdo()->lastInsertId(); + $pk = $model->getKeyName(); + $values[$pk] = $id; + IlluminateOrmLog::created($model, $values); + } + } + } + + private function deleteLog($id = null): void + { + if (IlluminateOrmLog::status()) { + if (!empty($id)) { + $data = [(array) $this->find($id)]; + } else { + $data = $this->get()->toArray(); + } + + if (!empty($data)) { + $model = $this->generateModel(); + if (count($data) > 1) { + IlluminateOrmLog::batchDeleted($model, $data); + } else { + IlluminateOrmLog::deleted($model, (array) $data[0]); + } + } + } + } +} diff --git a/vendor/chance-fyi/operation-log/src/orm/illuminate/DbModel.php b/vendor/chance-fyi/operation-log/src/orm/illuminate/DbModel.php new file mode 100644 index 00000000..4bfa0ac7 --- /dev/null +++ b/vendor/chance-fyi/operation-log/src/orm/illuminate/DbModel.php @@ -0,0 +1,28 @@ +query = $query; + } + + public function getQuery(): Query + { + return $this->query; + } +} diff --git a/vendor/chance-fyi/operation-log/src/orm/illuminate/Log.php b/vendor/chance-fyi/operation-log/src/orm/illuminate/Log.php new file mode 100644 index 00000000..bf78bef9 --- /dev/null +++ b/vendor/chance-fyi/operation-log/src/orm/illuminate/Log.php @@ -0,0 +1,200 @@ +getKeyName(); + } + + /** + * @param Model $model + */ + public function getTableName($model): string + { + return $model->getConnection()->getTablePrefix() . $model->getTable(); + } + + /** + * @param Model $model + */ + public function getDatabaseName($model): string + { + if (method_exists($model, 'getQuery')) { + return $model->getQuery()->getDatabaseName(); + } + + return $model->getConnection()->getDatabaseName(); + } + + /** + * @param Model $model + */ + public function executeSQL($model, string $sql): array + { + if (method_exists($model, 'getQuery')) { + return $model->getQuery()->select($sql); + } + + return $model->getConnection()->select($sql); + } + + /** + * @param Model $model + */ + public function getAttributes($model): array + { + return $model->getAttributes(); + } + + /** + * @param Model $model + */ + public function getChangedAttributes($model): array + { + return $model->getChanges(); + } + + /** + * @param Model $model + */ + public function getValue($model, string $key): string + { + $keyText = $key . '_text'; + $value = $model->{$keyText} ?? $model->{$key}; + + if ($value instanceof ArrayObject) { + $value = $value->toArray(); + } + + if (is_array($value)) { + return json_encode($value, JSON_UNESCAPED_UNICODE); + } + + if (is_object($value) && $value instanceof Expression) { + // Compatible with version 10.x + // @phpstan-ignore-next-line + return $value->getValue($model->getConnection()->getQueryGrammar()); + } + + return (string) $value; + } + + /** + * @param Model $model + */ + public function getOldValue($model, string $key): string + { + if (str_contains($key, '->')) { + [$key, $jsonKey] = explode('->', $key, 2); + } + + $keyText = $key . '_text'; + $attributeFun = 'get' . Str::studly(Str::lower($keyText)) . 'Attribute'; + $value = (method_exists($model, $attributeFun) ? $model->{$attributeFun}($model->getOriginal($key)) : $model->getOriginal($key)); + + if ($value instanceof ArrayObject) { + $value = $value->toArray(); + } + + if (is_array($value)) { + return json_encode($value, JSON_UNESCAPED_UNICODE); + } + + $val = json_decode((string) $value, true); + if (!isset($jsonKey) || is_null($val) || !is_array($val)) { + return (string) $value; + } + + foreach (explode('->', $jsonKey) as $k) { + $val = $val[$k]; + } + + return (string) $val; + } + + /** + * @param Model $model + */ + public function created($model, array $data): void + { + $model->setRawAttributes($data); + $this->generateLog($model, self::CREATED); + } + + /** + * @param Model $model + */ + public function updated($model, array $oldData, array $data): void + { + $data = array_map(function ($value) { + return is_array($value) ? json_encode($value, JSON_UNESCAPED_UNICODE) : $value; + }, $data); + + $model->setRawAttributes($oldData, true); + $model->setRawAttributes(array_merge($oldData, $data)); + $model->syncChanges(); + $this->generateLog($model, self::UPDATED); + } + + /** + * @param Model $model + */ + public function deleted($model, array $data): void + { + $model->setRawAttributes($data); + $this->generateLog($model, self::DELETED); + } + + /** + * @param Model $model + */ + public function batchCreated($model, array $data): void + { + foreach ($data as $item) { + $model->setRawAttributes($item); + $this->generateLog($model, self::BATCH_CREATED); + } + } + + /** + * @param Model $model + */ + public function batchUpdated($model, array $oldData, array $data): void + { + foreach ($oldData as $item) { + $model->setRawAttributes((array) $item, true); + $model->setRawAttributes(array_merge((array) $item, $data)); + $model->syncChanges(); + $this->generateLog($model, self::BATCH_UPDATED); + } + } + + /** + * @param Model $model + */ + public function batchDeleted($model, array $data): void + { + foreach ($data as $item) { + $model->setRawAttributes((array) $item); + $this->generateLog($model, self::BATCH_DELETED); + } + } +} diff --git a/vendor/chance-fyi/operation-log/src/orm/illuminate/MySqlConnection.php b/vendor/chance-fyi/operation-log/src/orm/illuminate/MySqlConnection.php new file mode 100644 index 00000000..8f8779a6 --- /dev/null +++ b/vendor/chance-fyi/operation-log/src/orm/illuminate/MySqlConnection.php @@ -0,0 +1,33 @@ +getQueryGrammar(), + $this->getPostProcessor() + ); + } + + public function beginTransaction(): void + { + IlluminateOrmLog::beginTransaction(); + parent::beginTransaction(); + } + + public function rollBack($toLevel = null): void + { + IlluminateOrmLog::rollBackTransaction(is_null($toLevel) ? $this->transactions : $toLevel); + parent::rollBack($toLevel); + } +} diff --git a/vendor/chance-fyi/operation-log/src/orm/think/DbModel.php b/vendor/chance-fyi/operation-log/src/orm/think/DbModel.php new file mode 100644 index 00000000..7831ab31 --- /dev/null +++ b/vendor/chance-fyi/operation-log/src/orm/think/DbModel.php @@ -0,0 +1,34 @@ +table = $table; + parent::__construct($data); + } + + public function setQuery(Query $query): void + { + $this->query = $query; + } + + public function getQuery(): Query + { + return $this->query; + } +} diff --git a/vendor/chance-fyi/operation-log/src/orm/think/Log.php b/vendor/chance-fyi/operation-log/src/orm/think/Log.php new file mode 100644 index 00000000..08cd88a0 --- /dev/null +++ b/vendor/chance-fyi/operation-log/src/orm/think/Log.php @@ -0,0 +1,183 @@ +getPk(); + } + + /** + * @param Model $model + */ + public function getTableName($model): string + { + return $model->getTable(); + } + + /** + * @param Model $model + */ + public function getDatabaseName($model): string + { + if (method_exists($model, 'getQuery')) { + return $model->getQuery()->getConfig('database'); + } + + return $model->getConfig('database'); + } + + /** + * @param Model $model + * + * @throws DbException + */ + public function executeSQL($model, string $sql): mixed + { + if (method_exists($model, 'getQuery')) { + return $model->getQuery()->getConnection()->query($sql); + } + + /** @var PDOConnection $connection */ + $connection = $model->db()->getConnection(); + + return $connection->query($sql); + } + + /** + * @param Model $model + */ + public function getAttributes($model): array + { + return $model->toArray(); + } + + /** + * @param Model $model + */ + public function getChangedAttributes($model): array + { + return $model->getChangedData(); + } + + /** + * @param Model $model + */ + public function getValue($model, string $key): string + { + $keyText = $key . '_text'; + $value = $model->{$keyText} ?? $model->{$key}; + + if ($value instanceof Raw) { + return $value->getValue(); + } + if (is_array($value) || is_object($value)) { + return json_encode($value, JSON_UNESCAPED_UNICODE); + } + + return (string) $value; + } + + /** + * @param Model $model + */ + public function getOldValue($model, string $key): string + { + if (str_contains($key, '->')) { + $value = $model->getOrigin(vsprintf("json_extract(`json`, '$.name')", explode('->', $key, 2))); + + return trim($value, '"'); + } + + $keyText = $key . '_text'; + $attributeFun = 'get' . Str::studly(Str::lower($keyText)) . 'Attr'; + $value = method_exists($model, $attributeFun) ? $model->{$attributeFun}($model->getOrigin($key)) : $model->getOrigin($key); + + if (is_array($value) || is_object($value)) { + return json_encode($value, JSON_UNESCAPED_UNICODE); + } + + return (string) $value; + } + + /** + * @param Model $model + */ + public function created($model, array $data): void + { + $model->setAttrs($data); + $this->generateLog($model, self::CREATED); + } + + /** + * @param Model $model + */ + public function updated($model, array $oldData, array $data): void + { + $model->setAttrs($oldData); + $model->refreshOrigin(); + $model->setAttrs($data); + $this->generateLog($model, self::UPDATED); + } + + /** + * @param Model $model + */ + public function deleted($model, array $data): void + { + $model->setAttrs($data); + $this->generateLog($model, self::DELETED); + } + + /** + * @param Model $model + */ + public function batchCreated($model, array $data): void + { + foreach ($data as $item) { + $model->setAttrs($item); + $this->generateLog($model, self::BATCH_CREATED); + } + } + + /** + * @param Model $model + */ + public function batchUpdated($model, array $oldData, array $data): void + { + foreach ($oldData as $item) { + $model->setAttrs($item); + $model->refreshOrigin(); + $model->setAttrs($data); + $this->generateLog($model, self::BATCH_UPDATED); + } + } + + /** + * @param Model $model + */ + public function batchDeleted($model, array $data): void + { + foreach ($data as $item) { + $model->setAttrs($item); + $this->generateLog($model, self::BATCH_DELETED); + } + } +} diff --git a/vendor/chance-fyi/operation-log/src/orm/think/MySqlConnection.php b/vendor/chance-fyi/operation-log/src/orm/think/MySqlConnection.php new file mode 100644 index 00000000..8c9f30f5 --- /dev/null +++ b/vendor/chance-fyi/operation-log/src/orm/think/MySqlConnection.php @@ -0,0 +1,25 @@ +transTimes); + parent::rollback(); + } +} diff --git a/vendor/chance-fyi/operation-log/src/orm/think/Query.php b/vendor/chance-fyi/operation-log/src/orm/think/Query.php new file mode 100644 index 00000000..7d5df98a --- /dev/null +++ b/vendor/chance-fyi/operation-log/src/orm/think/Query.php @@ -0,0 +1,140 @@ +getLastInsID(); + } + + $model = $this->generateModel(); + $pk = $this->getPk(); + $data = $data ?: $this->getOptions('data'); + $data[$pk] = $id; + ThinkOrmLog::created($model, $data); + } + + return $result; + } + + public function insertAll(array $dataSet = [], int $limit = 0): int + { + $result = parent::insertAll($dataSet, $limit); + + if (ThinkOrmLog::status()) { + $model = $this->generateModel(); + ThinkOrmLog::batchCreated($model, $dataSet); + } + + return $result; + } + + public function update(array $data = []): int + { + if (ThinkOrmLog::status()) { + $model = $this->generateModel(); + $newData = $data ?: $this->getOptions('data'); + $field = array_keys($newData); + $field[] = $model->logKey ?? $model->getPk(); + + $pk = $model->getPk(); + if (isset($data[$pk])) { + // 包含主键只更新一条 + $oldData = $this->find($data[$pk]); + if (!empty($oldData)) { + $oldData = [is_array($oldData) ? $oldData : $oldData->toArray()]; + } + } else { + // 条件查询或许是多条 + $oldData = $this->field($field)->select()->toArray(); + } + if (!empty($oldData)) { + if (count($oldData) > 1) { + ThinkOrmLog::batchUpdated($model, $oldData, $newData); + } else { + ThinkOrmLog::updated($model, $oldData[0], $newData); + } + } + } + + return parent::update($data); + } + + public function delete($data = null): int + { + if (ThinkOrmLog::status()) { + $model = $this->generateModel(); + if (!empty($data)) { + $pk = $model->getPk(); + $delData = $this->whereIn($pk, $data)->select()->toArray(); + } else { + $delData = $this->select()->toArray(); + } + + if (!empty($delData)) { + if (count($delData) > 1) { + ThinkOrmLog::batchDeleted($model, $delData); + } else { + ThinkOrmLog::deleted($model, $delData[0]); + } + } + } + + return parent::delete($data); + } + + /** + * Generate model object. + */ + private function generateModel(): Model + { + if ($this->getModel()) { + return $this->getModel(); + } + + $database = $this->getConfig('database'); + $table = $this->getTable(); + + $mapping = [ + OperationLog::getTableModelMapping(), + include __DIR__ . '/../../../cache/table-model-mapping.php', + ]; + foreach ($mapping as $map) { + if (is_array($map) && isset($map[$database][$table]) && class_exists($map[$database][$table])) { + return new $map[$database][$table](); + } + } + + $name = ltrim(Str::lower($table), Str::lower($this->prefix)); + $modelNamespace = $this->getConfig('modelNamespace') ?: 'app\\model'; + $className = trim($modelNamespace, '\\') . '\\' . Str::studly($name); + if (class_exists($className)) { + $model = new $className(); + } else { + $model = new DbModel($table); + $model->table($table); + $model->setQuery($this); + $model->logKey = $this->getConfig('logKey') ?: $model->getPk(); + $model->pk($this->getPk()); + } + + return $model; + } +} diff --git a/vendor/composer/autoload_psr4.php b/vendor/composer/autoload_psr4.php index b8213a34..820d3a75 100644 --- a/vendor/composer/autoload_psr4.php +++ b/vendor/composer/autoload_psr4.php @@ -112,6 +112,7 @@ return array( 'DI\\' => array($vendorDir . '/php-di/php-di/src'), 'Cron\\' => array($vendorDir . '/dragonmantank/cron-expression/src/Cron'), 'Complex\\' => array($vendorDir . '/markbaker/complex/classes/src'), + 'Chance\\Log\\' => array($vendorDir . '/chance-fyi/operation-log/src'), 'Carbon\\Doctrine\\' => array($vendorDir . '/carbonphp/carbon-doctrine-types/src/Carbon/Doctrine'), 'Carbon\\' => array($vendorDir . '/nesbot/carbon/src/Carbon'), 'App\\' => array($baseDir . '/app'), diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index c9ab0cfe..11d859c4 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -218,6 +218,7 @@ class ComposerStaticInitcefecbcff919f3c1c8084830bbb72adc array ( 'Cron\\' => 5, 'Complex\\' => 8, + 'Chance\\Log\\' => 11, 'Carbon\\Doctrine\\' => 16, 'Carbon\\' => 7, ), @@ -658,6 +659,10 @@ class ComposerStaticInitcefecbcff919f3c1c8084830bbb72adc array ( 0 => __DIR__ . '/..' . '/markbaker/complex/classes/src', ), + 'Chance\\Log\\' => + array ( + 0 => __DIR__ . '/..' . '/chance-fyi/operation-log/src', + ), 'Carbon\\Doctrine\\' => array ( 0 => __DIR__ . '/..' . '/carbonphp/carbon-doctrine-types/src/Carbon/Doctrine', diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index 25ca6977..993fec52 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -120,6 +120,70 @@ ], "install-path": "../carbonphp/carbon-doctrine-types" }, + { + "name": "chance-fyi/operation-log", + "version": "v3.0.7", + "version_normalized": "3.0.7.0", + "source": { + "type": "git", + "url": "https://github.com/Chance-fyi/operation-log.git", + "reference": "bfb73bc1c3dddf91772de4f37b42a41c519c67e5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Chance-fyi/operation-log/zipball/bfb73bc1c3dddf91772de4f37b42a41c519c67e5", + "reference": "bfb73bc1c3dddf91772de4f37b42a41c519c67e5", + "shasum": "" + }, + "require": { + "ext-json": "*", + "php": "^8.0" + }, + "require-dev": { + "fakerphp/faker": "^1.21@dev", + "friendsofphp/php-cs-fixer": "dev-master", + "hyperf/config": "^3.0@dev", + "hyperf/database": "^3.0@dev", + "hyperf/di": "^3.0@dev", + "hyperf/pimple": "^2.1", + "illuminate/database": "^8.0", + "phpstan/phpstan": "1.11.x-dev", + "phpunit/phpunit": "9.6.x-dev", + "topthink/think-orm": "2.0.x-dev" + }, + "time": "2023-12-22T08:06:25+00:00", + "bin": [ + "bin/chance-fyi-operation-log" + ], + "type": "library", + "extra": { + "hyperf": { + "config": "Chance\\Log\\orm\\hyperf\\ConfigProvider" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Chance\\Log\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "chance", + "email": "ctx_ya@qq.com" + } + ], + "description": "Elegant logging of operations", + "support": { + "issues": "https://github.com/Chance-fyi/operation-log/issues", + "source": "https://github.com/Chance-fyi/operation-log/tree/v3.0.7" + }, + "install-path": "../chance-fyi/operation-log" + }, { "name": "doctrine/annotations", "version": "1.14.3", diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index c2edf9aa..871e3764 100644 --- a/vendor/composer/installed.php +++ b/vendor/composer/installed.php @@ -28,6 +28,15 @@ 'aliases' => array(), 'dev_requirement' => false, ), + 'chance-fyi/operation-log' => array( + 'pretty_version' => 'v3.0.7', + 'version' => '3.0.7.0', + 'reference' => 'bfb73bc1c3dddf91772de4f37b42a41c519c67e5', + 'type' => 'library', + 'install_path' => __DIR__ . '/../chance-fyi/operation-log', + 'aliases' => array(), + 'dev_requirement' => false, + ), 'doctrine/annotations' => array( 'pretty_version' => '1.14.3', 'version' => '1.14.3.0',