Code Coverage
 
Classes and Traits
Functions and Methods
Lines
Total
0.00% covered (danger)
0.00%
0 / 1
50.00% covered (danger)
50.00%
2 / 4
CRAP
78.57% covered (warning)
78.57%
33 / 42
UserRequest
0.00% covered (danger)
0.00%
0 / 1
50.00% covered (danger)
50.00%
2 / 4
21.19
78.57% covered (warning)
78.57%
33 / 42
 authorize
0.00% covered (danger)
0.00%
0 / 1
6.99
42.86% covered (danger)
42.86%
3 / 7
 rules
100.00% covered (success)
100.00%
1 / 1
11
100.00% covered (success)
100.00%
20 / 20
 attributes
100.00% covered (success)
100.00%
1 / 1
1
100.00% covered (success)
100.00%
10 / 10
 failedValidation
0.00% covered (danger)
0.00%
0 / 1
6
0.00% covered (danger)
0.00%
0 / 5
<?php
namespace App\Http\Requests;
use Illuminate\Validation\Rule;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Request;
use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Validation\ValidationException;
use Illuminate\Contracts\Validation\Validator;
use Illuminate\Http\Exceptions\HttpResponseException;
class UserRequest extends FormRequest
{
    /**
     * Determine if the user is authorized to make this request.
     *
     * @return bool
     */
    public function authorize()
    {
        if (! Auth::check()) {
            return false;
        }
        if(in_array(Auth::user()->role, ['super_admin', 'admin', 'sub_admin']))
        {
            return true;
        }
        if(Auth::user()->hasModule('users'))
        {
            return true;
        }
        return Auth::check();
    }
    /**
     * Get the validation rules that apply to the request.
     *
     * @return array
     */
    public function rules()
    {
        $rules=[
            'photo' => 'sometimes',
            'name'=> 'required|min:3',
            'phone'=> [
                "required",
                "numeric",
                "digits_between:11,14",
                Rule::unique('users')->ignore($this->user? $this->user->id : 0, 'id')
            ],
        ];
        if ($this->user && $this->user->role == 'sub_admin'){
            $rules['email'] = 'sometimes';
        } else {
            $rules['email'] = [
                'required',
                'email',
                Rule::unique('users')->ignore($this->user? $this->user->id : 0, 'id')
            ];
        }
        if ( !$this->user  ) {
            $rules['password'] ='required|confirmed';
        } else {
            $rules['password'] ='sometimes|confirmed';
        }
        if ( !$this->user || !$this->user->role || 'admin' != $this->user->role ) {
            $rules['modules'] = 'required|array|exists:modules,id';
        }
        if ($this->user && $this->user->role == 'sub_admin') {
            $rules['modules'] = 'sometimes';
        }
        return $rules;
    }
    /**
     * Get custom attributes for validator errors.
     *
     * @return array
     */
    public function attributes()
    {
        $field = metaFields('users');
        $local = getCurrentLocale();
        $attributes= [
            'name'=> $field[$local]['name'] ?? __('users.name'),
            'phone'=> $field[$local]['phone'] ?? __('users.phone'),
            'email'=> $field[$local]['email'] ?? __('users.email'),
            'photo'=> $field[$local]['photo'] ?? __('users.photo'),
            'password'=> $field[$local]['password'] ?? __('users.password'),
            'password_confirmation'=> $field[$local]['password_confirmation'] ?? __('users.password_confirmation'),
            'modules'=> $field[$local]['modules'] ?? __('users.modules'),
        ];
        return $attributes;
    }
    /**
     * Handle a failed validation attempt.
     *
     * Override the parent method action if the request is for AJAX
     *
     * @param Validator $validator
     * @return void
     *
     * @throws ValidationException
     */
    protected function failedValidation(Validator $validator)
    {
        // Change response attitude if the request done via Ajax requests like API requests
        if(Request::wantsJson()){
            $errors = (new ValidationException($validator))->errors();
            throw new HttpResponseException(response()->json(['errors' => $errors], 422));
        } else {
            // Do the original action of the Form request class
            parent::failedValidation($validator);
        }
    }
}