1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 21:22:58 +01:00
invoiceninja/app/Http/Requests/RegisterRequest.php
2016-03-13 22:59:01 +11:00

61 lines
1.3 KiB
PHP

<?php namespace app\Http\Requests;
use Auth;
use App\Http\Requests\Request;
use Illuminate\Support\Facades\Log;
use Illuminate\Validation\Factory;
use App\Libraries\Utils;
use Response;
class RegisterRequest extends Request
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
$rules = [
'email' => 'required|unique:users',
'first_name' => 'required',
'last_name' => 'required',
'password' => 'required',
];
return $rules;
}
public function response(array $errors)
{
// return parent::response($errors); // TODO: Change the autogenerated stub
Log::info($errors);
foreach($errors as $err) {
foreach ($err as $key => $value) {
Log::info($err);
Log::info($key);
Log::info($value);
$error['error'] = $value;
$error = json_encode($error, JSON_PRETTY_PRINT);
$headers = Utils::getApiHeaders();
return Response::make($error, 400, $headers);
}
}
}
}