定制 maatify/persistence 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

maatify/persistence

Composer 安装命令:

composer require maatify/persistence

包简介

Reusable persistence-layer utilities for Maatify projects.

README 文档

README

Latest Version PHP Version License

PHPStan

Changelog Security

Monthly Downloads Total Downloads

Maatify Ecosystem

Install

Reusable persistence-layer utilities for Maatify projects.

This package contains infrastructure-level helpers that are shared across repositories/modules, without coupling domain modules to each other.

Installation

composer require maatify/persistence

Requirements

  • PHP >= 8.2
  • PDO extension

Namespace

Maatify\Persistence

Current Components

PDO Ordering

The package currently provides a scoped ordering manager for tables that use integer ordering columns such as display_order.

Maatify\Persistence\Pdo\Ordering\ScopedOrderingConfig;
Maatify\Persistence\Pdo\Ordering\ScopedOrderingManager;

It supports:

  • Global ordering across a whole table.
  • Scoped ordering, for example ordering records per method_id, product_id, category_id, etc.
  • Optional soft-delete filtering via deleted_at IS NULL.
  • Safe SQL identifier validation for table and column names.
  • Self-owned transactions for reorder operations.
  • Scope locking with SELECT ... FOR UPDATE during reorder operations.
  • Custom package exceptions.

Ordering Configuration

Use ScopedOrderingConfig to describe the table and columns used for ordering.

use Maatify\Persistence\Pdo\Ordering\ScopedOrderingConfig;

$config = new ScopedOrderingConfig(
    table: 'maa_shipping_rates',
    scopeColumn: 'method_id',
    idColumn: 'id',
    orderColumn: 'display_order',
    deletedAtColumn: 'deleted_at',
);

Constructor Arguments

Argument Type Default Description
table string required Trusted table identifier. Supports table or schema.table.
scopeColumn ?string null Optional scope column. Example: method_id.
idColumn string id Primary key column.
orderColumn string display_order Ordering column.
deletedAtColumn ?string deleted_at Soft-delete column. Use null for tables without soft delete.

Important

Table and column names are SQL identifiers and cannot be bound as PDO parameters.

ScopedOrderingConfig validates and quotes identifiers internally, but identifiers must still be trusted application constants, never raw user input.

Allowed table identifiers:

table
schema.table

Allowed column identifiers:

column_name

Getting the Next Position

use Maatify\Persistence\Pdo\Ordering\ScopedOrderingManager;

$ordering = new ScopedOrderingManager();

$nextPosition = $ordering->getNextPosition(
    pdo: $pdo,
    config: $config,
    scopeValue: 12,
);

For global ordering:

$config = new ScopedOrderingConfig(
    table: 'maa_shipping_methods',
    scopeColumn: null,
    idColumn: 'id',
    orderColumn: 'display_order',
    deletedAtColumn: null,
);

$nextPosition = $ordering->getNextPosition(
    pdo: $pdo,
    config: $config,
    scopeValue: null,
);

Concurrency Note

getNextPosition() does not start a transaction and does not lock the scope.

If used for concurrent inserts, call it from a caller-owned transaction with appropriate repository/application-level locking.

Moving a Row Within Scope

$success = $ordering->moveWithinScope(
    pdo: $pdo,
    config: $config,
    scopeValue: 12,
    id: 55,
    newOrder: 3,
);

Behavior

moveWithinScope():

  1. Starts its own transaction.
  2. Locks all rows in the configured ordering scope using SELECT ... FOR UPDATE.
  3. Reads the target row's current order from the database.
  4. Clamps newOrder to the current maximum position in the scope.
  5. Shifts affected rows up or down.
  6. Updates the target row to the final order.
  7. Commits the transaction.

It does not trust a caller-provided current order.

Return Values

Return Meaning
true Move succeeded.
true Row was already at the requested/clamped position.
false Target row does not exist in the configured scope.
false Target row could not be updated.

Transaction Ownership

moveWithinScope() owns its transaction.

It must be called outside active PDO transactions.

If an active transaction already exists, it throws:

Maatify\Persistence\Exception\OrderingTransactionException

Checking Row Existence

$exists = $ordering->rowExistsInScope(
    pdo: $pdo,
    config: $config,
    scopeValue: 12,
    id: 55,
);

If deletedAtColumn is configured, soft-deleted rows are treated as non-existing.

Examples

Global Ordering

use Maatify\Persistence\Pdo\Ordering\ScopedOrderingConfig;
use Maatify\Persistence\Pdo\Ordering\ScopedOrderingManager;

$config = new ScopedOrderingConfig(
    table: 'maa_shipping_methods',
    scopeColumn: null,
    idColumn: 'id',
    orderColumn: 'display_order',
    deletedAtColumn: null,
);

$ordering = new ScopedOrderingManager();

$next = $ordering->getNextPosition($pdo, $config);

$ordering->moveWithinScope(
    pdo: $pdo,
    config: $config,
    scopeValue: null,
    id: 5,
    newOrder: 1,
);

Scoped Ordering

use Maatify\Persistence\Pdo\Ordering\ScopedOrderingConfig;
use Maatify\Persistence\Pdo\Ordering\ScopedOrderingManager;

$config = new ScopedOrderingConfig(
    table: 'maa_shipping_rates',
    scopeColumn: 'method_id',
    idColumn: 'id',
    orderColumn: 'display_order',
    deletedAtColumn: 'deleted_at',
);

$ordering = new ScopedOrderingManager();

$next = $ordering->getNextPosition(
    pdo: $pdo,
    config: $config,
    scopeValue: 2,
);

$ordering->moveWithinScope(
    pdo: $pdo,
    config: $config,
    scopeValue: 2,
    id: 15,
    newOrder: 4,
);

Exceptions

All package exceptions implement:

Maatify\Persistence\Exception\PersistenceException

Available Exceptions

Exception Meaning
InvalidOrderingConfigurationException Invalid table/column identifier or unsafe ordering configuration.
InvalidOrderingOperationException Invalid runtime operation arguments, such as invalid id, invalid order, or invalid scope usage.
OrderingTransactionException moveWithinScope() was called while a PDO transaction was already active.

Example:

use Maatify\Persistence\Exception\PersistenceException;

try {
    $ordering->moveWithinScope(
        pdo: $pdo,
        config: $config,
        scopeValue: 2,
        id: 15,
        newOrder: 4,
    );
} catch (PersistenceException $e) {
    // Handle package-level persistence exception.
}

Design Notes

Why not static methods?

ScopedOrderingManager is intentionally a service class, not a static helper.

This makes it easier to:

  • Inject through a container.
  • Test in isolation.
  • Replace or decorate later.
  • Add logging or driver-specific behavior in the future.

Why pass PDO per call?

The manager is stateless. Passing PDO per call allows the same manager instance to be reused with different connections.

Development

Run static analysis:

composer analyse

Run tests:

composer test

License

MIT

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-07-10

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固