在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):mpociot/versionable开源软件地址(OpenSource Url):https://github.com/mpociot/versionable开源编程语言(OpenSource Language):PHP 100.0%开源软件介绍(OpenSource Introduction):VersionableLaravel Model versioning made easyKeep track of all your model changes and revert to previous versions of it. // Restore to the previous change
$content->previousVersion()->revert();
// Get model from a version
$oldModel = Version::find(100)->getModel(); InstallationYou can install via composer:
Run the migrations.
Alternatively, publish the migrations.
Then customize and run them.
UsageLet the Models you want to set under version control use the class Content extends Model {
use Mpociot\Versionable\VersionableTrait;
} That's it! Every time you update your model, a new version containing the previous attributes will be stored in your database. All timestamps and the optional soft-delete timestamp will be ignored. Exclude attributes from versioningSometimes you don't want to create a version every time an attribute on your model changes. For example your User model might have a To exclude specific attributes from versioning, add a new array property to your model named class User extends Model {
use Mpociot\Versionable\VersionableTrait;
/**
* @var array
*/
protected $dontVersionFields = [ 'last_login_at' ];
} Hidden fieldsThere are times you might want to include hidden fields in the version data. You might have hidden the fields with the You can have those fields that are typically hidden in the rest of your project saved in the version data by adding them to the class User {
use VersionableTrait;
// Typically hidden fields
protected $hidden = ['email', 'password'];
// Save these hidden fields
protected $versionedHiddenFields = ['email', 'password'];
} Maximum number of stored versionsYou can control the maximum number of stored versions per model. By default, there will be no limit and all versions will be saved. Depending on your application, this could lead to a lot of versions, so you might want to limit the amount of stored versions. You can do this by setting a class User {
use VersionableTrait;
// Keep the last 10 versions.
protected $keepOldVersions = 10;
} Retrieving all versions associated to a modelTo retrieve all stored versions use the This attribute can also be accessed like any other Laravel relation, since it is a $model->versions; Getting a diff of two versionsIf you want to know, what exactly has changed between two versions, use the version model's The diff method takes a version model as an argument. This defines the version to diff against. If no version is provided, it will use the current version. /**
* Create a diff against the current version
*/
$diff = $page->previousVersion()->diff();
/**
* Create a diff against a specific version
*/
$diff = $page->currentVersion()->diff( $version ); The result will be an associative array containing the attribute name as the key, and the different attribute value. Revert to a previous versionSaving versions is pretty cool, but the real benefit will be the ability to revert to a specific version. There are multiple ways to do this. Revert to the previous version You can easily revert to the version prior to the currently active version using: $content->previousVersion()->revert(); Revert to a specific version ID You can also revert to a specific version ID of a model using: $revertedModel = Version::find( $version_id )->revert(); Disable versioningIn some situations you might want to disable versioning a specific model completely for the current request. You can do this by using the $user = User::find(1);
$user->disableVersioning();
// This will not create a new version entry.
$user->update([
'some_attribute' => 'changed value'
]); Use different version tableSome times we want to have models versions in differents tables. By default versions are stored in the table 'versions', defined in Mpociot\Versionable\Version::$table. To use a different table to store version for some model we have to change the table name. To do so, create a model that extends Mpociot\Versionable\Version and set the $table property to another table name. class MyModelVersion extends Version
{
$table = 'mymodel_versions';
// ...
} In the model that you want it use this specific versions table, use the class MyModel extends Eloquent
{
use VersionableTrait ;
protected $versionClass = MyModelVersion::class ;
// ...
} And do not forget to create a migration for this versions table, exactly as the default versions table. LicenseVersionable is free software distributed under the terms of the MIT license. |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论