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
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-10-22 08:46:02 +02:00
|
|
|
*
|
|
|
|
* @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 CheckDatabaseRequest 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()
|
|
|
|
{
|
2021-03-12 01:48:41 +01:00
|
|
|
if ( config( 'ninja.preconfigured_install' ) ) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
return [
|
|
|
|
'db_host' => [ 'required' ],
|
|
|
|
'db_port' => [ 'required' ],
|
|
|
|
'db_database' => [ 'required' ],
|
|
|
|
'db_username' => [ 'required' ],
|
|
|
|
];
|
|
|
|
}
|
2020-03-28 04:46:50 +01:00
|
|
|
}
|