Does Ardent for Laravel work with Repository Pattern?

268 Views Asked by At

Anyone use Ardent in Laravel with the repository pattern and have it "auto-hydrate" relations on save? If so, do the rules need to be in the repository or can they be in a separate Validator service?

1

There are 1 best solutions below

1
On

The basic idea of Ardent is autovalidation done in the model itself. However if you want to make your app as robust as possible it's better to use validation services. In the end you can use the service (or even pass it's internal $rules) wherever you wish so it's totally DRY.

EDIT:

Suppose you have such a validation service

namespace App\Services\Validators;
class UserValidator extends Validator {

  /**
   * Validation rules
   */
  public static $rules = array(
    'username' => array('required'),
    'email' => array('required','email'),
    'password' => array('required','min:12','confirmed'),
    'password_confirmation' => array('required','min:12'),
  );

}

in a repository you can do

public function store()
{
  $v = new App\Services\Validators\UserValidator;

  if($v->passes())
  {
    $this->user->create($input);

    return true
  }

  return Redirect::back()->withInput()
    ->withErrors($v->getErrors());
}

in an Ardent model you can just modify the rules directly

Ardent::$rules = UserValidator::$rules

Check out Ardent docs and you might find this article on validation interesting, the code above is based on that article.