Skip to content

Commit c697bf1

Browse files
authored
Properly restore locale after catching RouteNotFoundException (#88)
Partially fixes (#58)
1 parent 2765567 commit c697bf1

File tree

3 files changed

+76
-12
lines changed

3 files changed

+76
-12
lines changed

src/Illuminate/Routing/UrlGenerator.php

+14-10
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,13 @@ public function route($name, $parameters = [], $absolute = true, $locale = null)
3232
App::setLocale($locale);
3333
}
3434

35-
$url = parent::route($resolvedName, $parameters, $absolute);
36-
37-
// Restore the current locale if needed.
38-
if ($locale !== null && $locale !== $currentLocale) {
39-
App::setLocale($currentLocale);
35+
try {
36+
$url = parent::route($resolvedName, $parameters, $absolute);
37+
} finally {
38+
// Restore the current locale if needed.
39+
if ($locale !== null && $locale !== $currentLocale) {
40+
App::setLocale($currentLocale);
41+
}
4042
}
4143

4244
return $url;
@@ -66,11 +68,13 @@ public function signedRoute($name, $parameters = [], $expiration = null, $absolu
6668
App::setLocale($locale);
6769
}
6870

69-
$url = parent::signedRoute($resolvedName, $parameters, $expiration, $absolute);
70-
71-
// Restore the current locale if needed.
72-
if ($locale !== null && $locale !== $currentLocale) {
73-
App::setLocale($currentLocale);
71+
try {
72+
$url = parent::signedRoute($resolvedName, $parameters, $expiration, $absolute);
73+
} finally {
74+
// Restore the current locale if needed.
75+
if ($locale !== null && $locale !== $currentLocale) {
76+
App::setLocale($currentLocale);
77+
}
7478
}
7579

7680
return $url;

src/LocalizedUrlGenerator.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
use CodeZero\LocalizedRoutes\Facades\LocaleConfig;
66
use CodeZero\UrlBuilder\UrlBuilder;
77
use Illuminate\Support\Facades\URL;
8-
use InvalidArgumentException;
98
use Illuminate\Support\Collection;
109
use Illuminate\Support\Facades\App;
1110
use Illuminate\Support\Facades\Route;
1211
use Illuminate\Support\Facades\Request;
1312
use Illuminate\Contracts\Routing\UrlRoutable;
13+
use Symfony\Component\Routing\Exception\RouteNotFoundException;
1414

1515
class LocalizedUrlGenerator
1616
{
@@ -118,7 +118,7 @@ protected function generateNamedRouteURL(string $locale, array $parameters = [],
118118
{
119119
try {
120120
return URL::route($this->route->getName(), $parameters, $absolute, $locale);
121-
} catch (InvalidArgumentException $e) {
121+
} catch (RouteNotFoundException $e) {
122122
return '';
123123
}
124124
}

tests/Unit/Illuminate/Routing/UrlGeneratorTest.php

+60
Original file line numberDiff line numberDiff line change
@@ -340,6 +340,66 @@ public function it_generates_a_temporary_signed_route_url_for_a_specific_locale(
340340
$this->get($expiredUrl)->assertSee('Expired Signature');
341341
}
342342

343+
/** @test */
344+
public function it_throws_a_route_not_found_exception_for_missing_route_names_when_generating_a_route_url()
345+
{
346+
$this->expectException(RouteNotFoundException::class);
347+
348+
URL::route('missing.route');
349+
}
350+
351+
/** @test */
352+
public function the_app_locale_is_correctly_restored_when_catching_a_route_not_found_exception_when_generating_a_route_url()
353+
{
354+
$this->setAppLocale('en');
355+
356+
try {
357+
URL::route('missing.route', [], true, 'nl');
358+
} catch (RouteNotFoundException $exception) {}
359+
360+
$this->assertEquals('en', App::getLocale());
361+
}
362+
363+
/** @test */
364+
public function it_throws_a_route_not_found_exception_for_missing_route_names_when_generating_a_signed_route_url()
365+
{
366+
$this->expectException(RouteNotFoundException::class);
367+
368+
URL::signedRoute('missing.route');
369+
}
370+
371+
/** @test */
372+
public function the_app_locale_is_correctly_restored_when_catching_a_route_not_found_exception_when_generating_a_signed_route_url()
373+
{
374+
$this->setAppLocale('en');
375+
376+
try {
377+
URL::signedRoute('missing.route', [], null, true, 'nl');
378+
} catch (RouteNotFoundException $exception) {}
379+
380+
$this->assertEquals('en', App::getLocale());
381+
}
382+
383+
/** @test */
384+
public function it_throws_a_route_not_found_exception_for_missing_route_names_when_generating_a_temporary_signed_route_url()
385+
{
386+
$this->expectException(RouteNotFoundException::class);
387+
388+
URL::temporarySignedRoute('missing.route', now()->addMinutes(30));
389+
}
390+
391+
/** @test */
392+
public function the_app_locale_is_correctly_restored_when_catching_a_route_not_found_exception_when_generating_a_temporary_signed_route_url()
393+
{
394+
$this->setAppLocale('en');
395+
396+
try {
397+
URL::temporarySignedRoute('missing.route', now()->addMinutes(30), [], true, 'nl');
398+
} catch (RouteNotFoundException $exception) {}
399+
400+
$this->assertEquals('en', App::getLocale());
401+
}
402+
343403
/** @test */
344404
public function it_allows_routes_to_be_cached()
345405
{

0 commit comments

Comments
 (0)