2020-03-28 04:46:50 +01:00
|
|
|
<?php
|
2020-10-22 08:46:02 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
2020-03-28 04:46:50 +01:00
|
|
|
|
|
|
|
namespace App\Http\Requests\Setup;
|
|
|
|
|
2020-10-22 08:46:02 +02:00
|
|
|
use App\Http\Requests\Request;
|
2020-03-28 04:46:50 +01:00
|
|
|
|
2020-10-22 08:46:02 +02:00
|
|
|
class CheckMailRequest extends Request
|
2020-03-28 04:46:50 +01:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize()
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
return true; /* Return something that will check if setup has been completed, like Ninja::hasCompletedSetup() */
|
2020-03-28 04:46:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
2020-11-24 11:12:44 +01:00
|
|
|
info($this->driver);
|
|
|
|
|
2020-03-28 04:46:50 +01:00
|
|
|
return [
|
2020-11-24 11:12:44 +01:00
|
|
|
'driver' => ['required', 'in:smtp,mail,sendmail,log'],
|
|
|
|
'from_name' => ['required_unless:driver,log'],
|
|
|
|
'from_address' => ['required_unless:driver,log'],
|
|
|
|
'username' => ['required_unless:driver,log'],
|
|
|
|
'host' => ['required_unless:driver,log'],
|
|
|
|
'port' => ['required_unless:driver,log'],
|
|
|
|
'encryption' => ['required_unless:driver,log'],
|
|
|
|
'password' => ['required_unless:driver,log'],
|
2020-03-28 04:46:50 +01:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|