<?php

namespace App\Http\Requests;

use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Auth\Access\AuthorizationException;

class ArticleRequest extends FormRequest
{
    /**
     * Determine if the user is authorized to make this request.
     *
     * @return bool
     */
    public function authorize()
    {
      switch ($this->method()) {
        case 'POST':
          return $this->user()->hasPermissionTo('articles.store');
        case 'PUT':
          return $this->user()->hasPermissionTo('articles.update');
        case 'DELETE':
          return $this->user()->hasPermissionTo('articles.destroy');
      }
    }

    /**
     * Get the validation rules that apply to the request.
     *
     * @return array
     */
    public function rules()
    {
      switch ($this->method()) {
        case 'POST':
          return [
            'name' => 'required|max:191',
            'type' => 'required|numeric',
            'description' => 'required|max:191',
            'priece' => 'required|numeric',
          ];
        case 'PUT':
          return [
            'name' => 'required|max:191',
            'type' => 'required|numeric',
            'description' => 'required|max:191',
            'priece' => 'required|numeric',
          ];
        case 'DELETE':
          return [
            'article_id' => 'required|exists:articles,id',
          ];
      }
      return [
        //
      ];
    }

    protected function failedAuthorization()
    {
        throw new AuthorizationException(__('errors.action_unauthorized'));
    }
}
