laravel-learn-bbs/app/Http/Requests/Api/SocialAuthorizationRequest.php
2018-06-03 21:09:33 +08:00

39 lines
835 B
PHP

<?php
namespace App\Http\Requests\Api;
use Illuminate\Foundation\Http\FormRequest;
class SocialAuthorizationRequest extends FormRequest
{
/**
* 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 = [
'code' => 'required_without:access_token|string',
'access_token' => 'required_without:code|string',
'openid' => 'required_with:access_token|string'
];
if ($this->get('social_type') == 'weixin' && !$this->get('code')) {
$rules['openid'] = 'required|string';
}
return $rules;
}
}