Coder Social home page Coder Social logo

magniloquent's Introduction

Magniloquent

Self-validating models for Laravel 4's Eloquent.

Based on the excellent Ardent package by Max Ehsan.

This package is highly inspired by Ardent. I wanted to make some big changes and so I thought it would be better to start a new package rather than fundamentally change how Ardent validates data. If you are looking to extend Eloquent's functionality, you should also check out Ardent!

Magniloquent was extracted from Cribbb.

##Installation Add magniloquent/magniloquent as a requirement to composer.json:

{
  "require": {
    "magniloquent/magniloquent": "dev-master"
  }
}

Update your packages with composer update or install with composer install.

##Getting Started Magniloquent extends Eloquent rather than replaces it, and so to use Magniloquent, you need to extend your models like this:

use Magniloquent\Magniloquent\Magniloquent;

class User extends Magniloquent{}

All of Eloquent's functionality is still available so you can continue to interact with your models as you normally would. If one of your models does not require validation, you don't have to use Magniloquent, you are free to mix and match.

##Validation Rules For each model, you need to set validation rules that control what type of data can be inserted into the database. Generally you are free to do this wherever you want, but to use Magniloquent you should keep your rules inside the model.

Magniloquent uses Laravel's excellent Validation class so you defining your rules is really easy.

Your validation rules are simply stored as a static parameter and are seperated into save, create and update arrays:

/**
 * Validation rules
 */
public static $rules = array(
  "save" => array(
    'username' => 'required|min:4',
    'email' => 'required|email',
    'password' => 'required|min:8'
  ),
  "create" => array(
    'username' => 'unique:users',
    'email' => 'unique:users',
    'password' => 'confirmed',
    'password_confirmation' => 'required|min:8'
  ),
  "update" => array()
);

The save array are validation rules that are applicable whenever the model is changed. The create and update arrays are only added on their respective methods.

So in the example above, when a user is created, the username should be unique. When the user updates any of their information, the uniqueness validation test won't be applied.

##Easier Relationships Defining relationships in Laravel can take up a ton of room in a model. This can make reading and maintaining your models much more difficult. Luckily, Magniloquent makes defining relationships a cinch. Add a $relationships multi-dimensional array to your model. Inside it, define the name of the relationship that will be called as the key and the value to be an array of parameters. The first parameter is the type of relationship. The rest are the parameters to be passed to that function. Below is an example:

class Athlete extends Magniloquent {

    protected static $relationships = array(
        'trophies' => array('hasMany', 'Trophy'),
        'team' => array('belongsTo', 'Team', 'team_id'),
        'sports' => array('belongsToMany', 'Sport', 'athletes_sports', 'athlete_id', 'sport_id')
    );

}

##Custom Purging Magniloquent will automatically purge any attributes that start with an underscore _ or end with _confirmation. If you want to purge additional fields, add a protected static $purgeable array whose keys are the attributes to purge. Below is an example:

class Account extends Magniloquent {

    protected static $purgeable = ['ssn'];

}

Anytime this model is saved, the $ssn attribute will be removed from the object before it is saved. This allows you to run code the code below without worrying about inserting unnecessary data into the database.

$account->save(Input::all());

##Controller Example Here is an example store method:

/**
 * Store a newly created resource in storage.
 *
 * @return Response
 */
public function store()
{
  $s = User::create(Input::all());

  if($s->isSaved())
  {
    return Redirect::route('users.index')
      ->with('flash', 'The new user has been created');
  }

  return Redirect::route('users.create')
    ->withInput()
    ->withErrors($s->errors());
}

First Use Laravel's create method and send in the Input::all(). Save the return value into a variable.

Second Determine whether the model saved corrected using the saved() method.

Third Return the validation errors using the errors() method.

The returned errors use Laravel's MessageBag.

License

The MIT License (MIT)

Copyright (c) 2014 Philip Brown and Alex Sears

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.

magniloquent's People

Contributors

gregoryhugaerts avatar kennonb avatar pbcobweb avatar philipbrown avatar rabas avatar thebox193 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.