mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-07 21:44:51 +00:00
* fix(csrf-token): add leading dot to session domain cookie. * refactor: remove generate key, upgrade axios and keep session domain in null. * refactor: fix PSR-12 code styles for PHP 8.2 compatibility. --------- Co-authored-by: Darko Gjorgjijoski <5760249+gdarko@users.noreply.github.com>
87 lines
2.6 KiB
PHP
87 lines
2.6 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\V1\Installation;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Http\Requests\DatabaseEnvironmentRequest;
|
|
use App\Space\EnvironmentManager;
|
|
use App\Space\InstallUtils;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\Artisan;
|
|
|
|
class DatabaseConfigurationController extends Controller
|
|
{
|
|
/**
|
|
* @var EnvironmentManager
|
|
*/
|
|
protected $EnvironmentManager;
|
|
|
|
public function __construct(EnvironmentManager $environmentManager)
|
|
{
|
|
$this->environmentManager = $environmentManager;
|
|
}
|
|
|
|
public function saveDatabaseEnvironment(DatabaseEnvironmentRequest $request)
|
|
{
|
|
Artisan::call('config:clear');
|
|
Artisan::call('cache:clear');
|
|
|
|
$results = $this->environmentManager->saveDatabaseVariables($request);
|
|
|
|
if (array_key_exists('success', $results)) {
|
|
// Automatically regenerating the key is disabled to prevent complications in the wizard process.
|
|
// This can cause issues with the CSRF token, resulting in "Token Mismatch" or "Invalid CSRF Token" errors.
|
|
// It is recommended that the user manually generates the key before running the wizard to ensure application security and stability.
|
|
// Artisan::call('key:generate --force');
|
|
Artisan::call('optimize:clear');
|
|
Artisan::call('config:clear');
|
|
Artisan::call('cache:clear');
|
|
Artisan::call('storage:link');
|
|
Artisan::call('migrate --seed --force');
|
|
// Set version.
|
|
InstallUtils::setCurrentVersion();
|
|
}
|
|
|
|
return response()->json($results);
|
|
}
|
|
|
|
public function getDatabaseEnvironment(Request $request)
|
|
{
|
|
$databaseData = [];
|
|
|
|
switch ($request->connection) {
|
|
case 'sqlite':
|
|
$databaseData = [
|
|
'database_connection' => 'sqlite',
|
|
'database_name' => database_path('database.sqlite'),
|
|
];
|
|
|
|
break;
|
|
|
|
case 'pgsql':
|
|
$databaseData = [
|
|
'database_connection' => 'pgsql',
|
|
'database_host' => '127.0.0.1',
|
|
'database_port' => 5432,
|
|
];
|
|
|
|
break;
|
|
|
|
case 'mysql':
|
|
$databaseData = [
|
|
'database_connection' => 'mysql',
|
|
'database_host' => '127.0.0.1',
|
|
'database_port' => 3306,
|
|
];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return response()->json([
|
|
'config' => $databaseData,
|
|
'success' => true,
|
|
]);
|
|
}
|
|
}
|