2018-03-07 20:21:36 +01:00
|
|
|
<?php
|
2018-05-11 10:08:34 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Installer.php
|
2020-01-31 07:32:04 +01:00
|
|
|
* Copyright (c) 2019 james@firefly-iii.org
|
2018-05-11 10:08:34 +02:00
|
|
|
*
|
2019-10-02 06:37:26 +02:00
|
|
|
* This file is part of Firefly III (https://github.com/firefly-iii).
|
2018-05-11 10:08:34 +02:00
|
|
|
*
|
2019-10-02 06:37:26 +02:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
2018-05-11 10:08:34 +02:00
|
|
|
*
|
2019-10-02 06:37:26 +02:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2018-05-11 10:08:34 +02:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2019-10-02 06:37:26 +02:00
|
|
|
* GNU Affero General Public License for more details.
|
2018-05-11 10:08:34 +02:00
|
|
|
*
|
2019-10-02 06:37:26 +02:00
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2018-05-11 10:08:34 +02:00
|
|
|
*/
|
|
|
|
|
2018-03-19 13:23:26 +01:00
|
|
|
declare(strict_types=1);
|
2018-03-07 20:21:36 +01:00
|
|
|
|
|
|
|
namespace FireflyIII\Http\Middleware;
|
|
|
|
|
2025-05-27 16:53:48 +02:00
|
|
|
use Closure;
|
2018-03-07 20:21:36 +01:00
|
|
|
use FireflyIII\Exceptions\FireflyException;
|
2025-10-02 06:53:23 +02:00
|
|
|
use FireflyIII\Support\System\IsOldVersion;
|
2019-10-19 09:37:35 +02:00
|
|
|
use FireflyIII\Support\System\OAuthKeys;
|
2018-03-07 20:21:36 +01:00
|
|
|
use Illuminate\Database\QueryException;
|
2020-03-17 15:02:57 +01:00
|
|
|
use Illuminate\Http\Request;
|
2025-02-16 19:32:50 +01:00
|
|
|
use Illuminate\Support\Facades\DB;
|
2024-11-24 04:52:33 +01:00
|
|
|
use Illuminate\Support\Facades\Log;
|
2018-03-07 20:21:36 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class Installer
|
|
|
|
*/
|
|
|
|
class Installer
|
|
|
|
{
|
2025-10-02 06:53:23 +02:00
|
|
|
use IsOldVersion;
|
2025-10-02 07:04:45 +02:00
|
|
|
|
2018-03-07 20:21:36 +01:00
|
|
|
/**
|
|
|
|
* Handle an incoming request.
|
|
|
|
*
|
2023-06-21 12:34:58 +02:00
|
|
|
* @param Request $request
|
2018-09-07 20:12:22 +02:00
|
|
|
*
|
2020-03-17 15:02:57 +01:00
|
|
|
* @return mixed
|
|
|
|
*
|
2021-03-21 09:15:40 +01:00
|
|
|
* @throws FireflyException
|
2018-03-07 20:21:36 +01:00
|
|
|
*/
|
2025-05-27 16:53:48 +02:00
|
|
|
public function handle($request, Closure $next)
|
2018-03-07 20:21:36 +01:00
|
|
|
{
|
2024-11-24 04:52:33 +01:00
|
|
|
// Log::debug(sprintf('Installer middleware for URL %s', $request->url()));
|
2019-03-17 09:06:45 +01:00
|
|
|
// ignore installer in test environment.
|
2018-12-15 07:59:02 +01:00
|
|
|
if ('testing' === config('app.env')) {
|
2018-03-07 21:04:10 +01:00
|
|
|
return $next($request);
|
|
|
|
}
|
2019-03-17 09:06:45 +01:00
|
|
|
// don't run installer when already in installer.
|
2018-03-10 22:38:20 +01:00
|
|
|
$url = $request->url();
|
2018-03-07 20:21:36 +01:00
|
|
|
$strpos = stripos($url, '/install');
|
2020-10-24 16:59:56 +02:00
|
|
|
if (false !== $strpos) {
|
2024-11-24 04:52:33 +01:00
|
|
|
// Log::debug(sprintf('URL is %s, will NOT run installer middleware', $url));
|
2018-03-10 22:38:20 +01:00
|
|
|
|
2018-03-07 20:21:36 +01:00
|
|
|
return $next($request);
|
|
|
|
}
|
2019-03-17 09:06:45 +01:00
|
|
|
|
|
|
|
// run installer when no tables are present,
|
|
|
|
// or when old scheme version
|
|
|
|
// or when old firefly version
|
2025-10-02 06:53:23 +02:00
|
|
|
if ($this->hasNoTables() || $this->isOldVersionInstalled()) {
|
2019-03-17 09:06:45 +01:00
|
|
|
return response()->redirectTo(route('installer.index'));
|
|
|
|
}
|
2019-10-19 09:37:35 +02:00
|
|
|
OAuthKeys::verifyKeysRoutine();
|
2023-12-20 19:35:52 +01:00
|
|
|
|
2019-03-17 09:06:45 +01:00
|
|
|
// update scheme version
|
|
|
|
// update firefly version
|
|
|
|
return $next($request);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the tables are created and accounted for.
|
|
|
|
*
|
2021-03-21 09:15:40 +01:00
|
|
|
* @throws FireflyException
|
2019-03-17 09:06:45 +01:00
|
|
|
*/
|
|
|
|
private function hasNoTables(): bool
|
|
|
|
{
|
2024-11-24 04:52:33 +01:00
|
|
|
// Log::debug('Now in routine hasNoTables()');
|
2019-03-17 09:06:45 +01:00
|
|
|
|
2018-03-07 20:21:36 +01:00
|
|
|
try {
|
2025-02-17 13:32:07 +01:00
|
|
|
DB::table('users')->count();
|
2018-03-07 20:21:36 +01:00
|
|
|
} catch (QueryException $e) {
|
|
|
|
$message = $e->getMessage();
|
2024-11-24 04:52:33 +01:00
|
|
|
Log::error(sprintf('Error message trying to access users-table: %s', $message));
|
2018-03-07 20:21:36 +01:00
|
|
|
if ($this->isAccessDenied($message)) {
|
2021-04-07 07:28:43 +02:00
|
|
|
throw new FireflyException(
|
2022-10-30 14:24:28 +01:00
|
|
|
'It seems your database configuration is not correct. Please verify the username and password in your .env file.',
|
|
|
|
0,
|
|
|
|
$e
|
2021-04-07 07:28:43 +02:00
|
|
|
);
|
2018-03-07 20:21:36 +01:00
|
|
|
}
|
|
|
|
if ($this->noTablesExist($message)) {
|
|
|
|
// redirect to UpdateController
|
2024-11-24 04:52:33 +01:00
|
|
|
Log::warning('There are no Firefly III tables present. Redirect to migrate routine.');
|
2018-03-07 20:21:36 +01:00
|
|
|
|
2019-03-17 09:06:45 +01:00
|
|
|
return true;
|
2018-03-07 20:21:36 +01:00
|
|
|
}
|
2023-12-20 19:35:52 +01:00
|
|
|
|
2021-04-07 07:28:43 +02:00
|
|
|
throw new FireflyException(sprintf('Could not access the database: %s', $message), 0, $e);
|
2018-03-07 20:21:36 +01:00
|
|
|
}
|
2021-09-18 10:26:12 +02:00
|
|
|
|
2024-11-24 04:52:33 +01:00
|
|
|
// Log::debug('Everything seems OK with the tables.');
|
2019-03-17 09:06:45 +01:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2024-02-22 20:11:09 +01:00
|
|
|
/**
|
|
|
|
* Is access denied error.
|
|
|
|
*/
|
|
|
|
protected function isAccessDenied(string $message): bool
|
|
|
|
{
|
|
|
|
return false !== stripos($message, 'Access denied');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Is no tables exist error.
|
|
|
|
*/
|
|
|
|
protected function noTablesExist(string $message): bool
|
|
|
|
{
|
|
|
|
return false !== stripos($message, 'Base table or view not found');
|
|
|
|
}
|
2018-03-07 20:21:36 +01:00
|
|
|
}
|