mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-18 21:23:37 -06:00
Handle differently when trying to update geolocation and already in progress
This commit is contained in:
parent
853c50a819
commit
72a962ec6d
@ -56,6 +56,11 @@ class DownloadGeoLiteDbCommand extends Command implements GeolocationDownloadPro
|
||||
return ExitCode::EXIT_WARNING;
|
||||
}
|
||||
|
||||
if ($result === GeolocationResult::UPDATE_IN_PROGRESS) {
|
||||
$this->io->warning('A geolocation db is already being downloaded by another process.');
|
||||
return ExitCode::EXIT_WARNING;
|
||||
}
|
||||
|
||||
if ($this->progressBar === null) {
|
||||
$this->io->info('GeoLite2 db file is up to date.');
|
||||
} else {
|
||||
|
@ -77,6 +77,7 @@ class DownloadGeoLiteDbCommandTest extends TestCase
|
||||
#[Test]
|
||||
#[TestWith([GeolocationResult::LICENSE_MISSING, 'It was not possible to download GeoLite2 db'])]
|
||||
#[TestWith([GeolocationResult::MAX_ERRORS_REACHED, 'Max consecutive errors reached'])]
|
||||
#[TestWith([GeolocationResult::UPDATE_IN_PROGRESS, 'A geolocation db is already being downloaded'])]
|
||||
public function warningIsPrintedForSomeResults(GeolocationResult $result, string $expectedWarningMessage): void
|
||||
{
|
||||
$this->dbUpdater->expects($this->once())->method('checkDbUpdate')->withAnyParameters()->willReturn($result);
|
||||
|
@ -12,6 +12,7 @@ use Shlinkio\Shlink\IpGeolocation\Exception\DbUpdateException;
|
||||
use Shlinkio\Shlink\IpGeolocation\Exception\MissingLicenseException;
|
||||
use Shlinkio\Shlink\IpGeolocation\GeoLite2\DbUpdaterInterface;
|
||||
use Symfony\Component\Lock\LockFactory;
|
||||
use Throwable;
|
||||
|
||||
use function sprintf;
|
||||
|
||||
@ -65,7 +66,7 @@ readonly class GeolocationDbUpdater implements GeolocationDbUpdaterInterface
|
||||
// If most recent attempt is in progress, skip check.
|
||||
// This is a safety check in case the lock is released before the previous download has finished.
|
||||
if ($mostRecentDownload?->isInProgress()) {
|
||||
return GeolocationResult::CHECK_SKIPPED;
|
||||
return GeolocationResult::UPDATE_IN_PROGRESS;
|
||||
}
|
||||
|
||||
$amountOfErrorsSinceLastSuccess = 0;
|
||||
@ -122,6 +123,9 @@ readonly class GeolocationDbUpdater implements GeolocationDbUpdaterInterface
|
||||
sprintf('%s Prev: %s', $e->getMessage(), $e->getPrevious()?->getMessage() ?? '-'),
|
||||
);
|
||||
throw $e;
|
||||
} catch (Throwable $e) {
|
||||
$dbUpdate->finishWithError(sprintf('Unknown error: %s', $e->getMessage()));
|
||||
throw $e;
|
||||
} finally {
|
||||
$this->em->flush();
|
||||
}
|
||||
|
@ -4,10 +4,18 @@ namespace Shlinkio\Shlink\Core\Geolocation;
|
||||
|
||||
enum GeolocationResult
|
||||
{
|
||||
/** Geolocation is not relevant, so updates are skipped */
|
||||
case CHECK_SKIPPED;
|
||||
/** Update is skipped because max amount of consecutive errors was reached */
|
||||
case MAX_ERRORS_REACHED;
|
||||
/** Update was skipped because a geolocation license key was not provided */
|
||||
case LICENSE_MISSING;
|
||||
/** A geolocation database didn't exist and has been created */
|
||||
case DB_CREATED;
|
||||
/** An outdated geolocation database existed and has been updated */
|
||||
case DB_UPDATED;
|
||||
/** Geolocation database does not need to be updated yet */
|
||||
case DB_IS_UP_TO_DATE;
|
||||
/** Geolocation db update is currently in progress */
|
||||
case UPDATE_IN_PROGRESS;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user