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()
|
|
|
|
{
|
|
|
|
return [
|
2020-12-08 14:21:00 +01:00
|
|
|
'db_host' => ['required'],
|
2021-01-04 13:36:47 +01:00
|
|
|
'db_port' => ['required'],
|
2020-12-08 14:21:00 +01:00
|
|
|
'db_database' => ['required'],
|
|
|
|
'db_username' => ['required'],
|
2020-03-28 04:46:50 +01:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|