This commit is contained in:
James Cole
2020-09-10 19:16:03 +02:00
parent 562be457ec
commit 402351a6b7

View File

@@ -26,6 +26,7 @@ namespace FireflyIII\Console\Commands;
use FireflyIII\Support\System\GeneratesInstallationId; use FireflyIII\Support\System\GeneratesInstallationId;
use FireflyIII\User; use FireflyIII\User;
use Illuminate\Console\Command; use Illuminate\Console\Command;
use Illuminate\Database\QueryException;
/** /**
* Class UpgradeFireflyInstructions. * Class UpgradeFireflyInstructions.
@@ -56,10 +57,10 @@ class UpgradeFireflyInstructions extends Command
public function handle(): int public function handle(): int
{ {
$this->generateInstallationId(); $this->generateInstallationId();
if ('update' === (string) $this->argument('task')) { if ('update' === (string)$this->argument('task')) {
$this->updateInstructions(); $this->updateInstructions();
} }
if ('install' === (string) $this->argument('task')) { if ('install' === (string)$this->argument('task')) {
$this->installInstructions(); $this->installInstructions();
} }
@@ -70,7 +71,11 @@ class UpgradeFireflyInstructions extends Command
app('telemetry')->feature('system.database.driver', env('DB_CONNECTION', '(unknown)')); app('telemetry')->feature('system.database.driver', env('DB_CONNECTION', '(unknown)'));
app('telemetry')->feature('system.os.is_docker', $isDocker); app('telemetry')->feature('system.os.is_docker', $isDocker);
app('telemetry')->feature('system.command.executed', $this->signature); app('telemetry')->feature('system.command.executed', $this->signature);
app('telemetry')->feature('system.users.count', (string) User::count()); try {
app('telemetry')->feature('system.users.count', (string)User::count());
} catch (QueryException $e) {
// ignore error.
}
return 0; return 0;
} }
@@ -108,8 +113,8 @@ class UpgradeFireflyInstructions extends Command
{ {
/** @var string $version */ /** @var string $version */
$version = config('firefly.version'); $version = config('firefly.version');
$config = config('upgrade.text.install'); $config = config('upgrade.text.install');
$text = ''; $text = '';
foreach (array_keys($config) as $compare) { foreach (array_keys($config) as $compare) {
// if string starts with: // if string starts with:
if (0 === strpos($version, $compare)) { if (0 === strpos($version, $compare)) {
@@ -156,8 +161,8 @@ class UpgradeFireflyInstructions extends Command
{ {
/** @var string $version */ /** @var string $version */
$version = config('firefly.version'); $version = config('firefly.version');
$config = config('upgrade.text.upgrade'); $config = config('upgrade.text.upgrade');
$text = ''; $text = '';
foreach (array_keys($config) as $compare) { foreach (array_keys($config) as $compare) {
// if string starts with: // if string starts with:
if (0 === strpos($version, $compare)) { if (0 === strpos($version, $compare)) {