承接 zschuessler/model-json-attribute-guard-laravel 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

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

zschuessler/model-json-attribute-guard-laravel

Composer 安装命令:

composer require zschuessler/model-json-attribute-guard-laravel

包简介

An intuitive and fun way to bring consistency to your json columns

README 文档

README

This package allows validation and custom casts for JSON columns.

Have you ever tried to use a json column, and:

  1. Validating schema of the column was difficult or messy
  2. Querying the column was onerous
  3. Casting types when saving models wasn't fun

Well now you can rest easy!

Example

You want to save user preferences. It's highly dynamic data, so you throw it into a json column:

Database Table Database Column Desired Schema
users preferences
[
  {
    "name": "Favorite Band",
    "value": "Slenderbodies",
    "date_created": "2019-09-15",
    "date_updated": "2020-01-01"
    }
]

Here are problems:

  1. Can you enforce each key is valid?
  2. Can you enforce the two dates are valid dates?
  3. What about always ensuring the column is an array, regardless if a preference exists or not?

We can.

Step 1: Create The Validator Class

Let's use Laravel's own Validator syntax to describe what we want.

<?php
namespace App\Models\User;

use Zschuessler\ModelJsonAttributeGuard\JsonAttributeGuard;

class PreferencesJsonColumn extends JsonAttributeGuard
{

    public function schema() : array
    {
        return [
            // Use wildcard syntax to apply rules to all children
            '*.name'           => 'required',
            '*.value'          => 'required|min:3',
            '*.date_created'   => 'present|nullable|date',
            '*.date_updated'   => 'present|nullable|date',
        ];
    }
}

Under the hood Laravel's Validators are used: you can use any rule you want. Go nuts.

Step 2: Add a trait and cast to your Model

Let's tell Laravel we want our model to do a custom cast:

<?php
namespace App\Models;

use Illuminate\Database\Eloquent\Model;
use App\Models\User\PreferencesJsonColumn;
use Zschuessler\ModelJsonAttributeGuard\Traits\HasJsonAttributeGuards;

class User extends Model
{
    use HasJsonAttributeGuards;

    public $casts = [
        'preferences' => PreferencesJsonColumn::class
    ];

Step 3: Success

This code will work wonderfully:

$user->preferences = [
    [
        'name' => 'Favorite Band',
        'value' => 'Slenderbodies',
        'date_created' => '2019-09-15',
        'date_updated' => '2020-01-01'
    ]
];
$user->save();

Great! But the code below will throw a JsonAttributeValidationFailedException exception - oh no! Your model won't be saved.

$user->preferences = [
    'name' => null,
    'value' => null,
    'date_created' => null,
    'date_updated' => null,
];
$user->save();

This was a simple example. The possibilities are endless!

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: LGPL-2.1-only
  • 更新时间: 2020-08-27

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固