snipe-it/app/Http/Requests/SettingsLdapRequest.php
Laravel Shift 934afa036f Adopt Laravel coding style
Shift automatically applies the Laravel coding style - which uses the PSR-2 coding style as a base with some minor additions.

You may customize the adopted coding style by adding your own [PHP CS Fixer][1] `.php_cs` config file to your project root. Feel free to use [Shift's Laravel ruleset][2] to help you get started.

[1]: https://github.com/FriendsOfPHP/PHP-CS-Fixer
[2]: https://gist.github.com/laravel-shift/cab527923ed2a109dda047b97d53c200
2021-06-10 20:15:52 +00:00

51 lines
1.6 KiB
PHP

<?php
namespace App\Http\Requests;
use Session;
class SettingsLdapRequest 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 = [
'ldap_server' => 'sometimes|required_if:ldap_enabled,1|url|nullable',
'ldap_uname' => 'sometimes|required_if:ldap_enabled,1|nullable',
'ldap_basedn' => 'sometimes|required_if:ldap_enabled,1|nullable',
'ldap_filter' => 'sometimes|required_if:ldap_enabled,1|nullable',
'ldap_username_field' => 'sometimes|required_if:ldap_enabled,1|nullable',
'ldap_fname_field' => 'sometimes|required_if:ldap_enabled,1|nullable',
'ldap_lname_field' => 'sometimes|required_if:ldap_enabled,1|nullable',
'ldap_auth_filter_query' => 'sometimes|required_if:ldap_enabled,1|nullable',
'ldap_version' => 'sometimes|required_if:ldap_enabled,1|nullable',
'ad_domain' => 'sometimes|required_if:is_ad,1|nullable',
];
return $rules;
}
public function response(array $errors)
{
$this->session()->flash('errors', Session::get('errors', new \Illuminate\Support\ViewErrorBag)
->put('default', new \Illuminate\Support\MessageBag($errors)));
\Input::flash();
return parent::response($errors);
}
}