Skip to content

Commit b725922

Browse files
committed
Apply no_prefix update to 5.6 branch
1 parent 2d4286c commit b725922

File tree

6 files changed

+60
-3
lines changed

6 files changed

+60
-3
lines changed

src/Routing/Annotations/Annotations/Controller.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ public function modifyCollection(EndpointCollection $endpoints, ReflectionClass
3434
protected function prefixEndpoints(EndpointCollection $endpoints)
3535
{
3636
foreach ($endpoints->getAllPaths() as $path) {
37-
$path->path = $this->trimPath($this->prefix, $path->path);
37+
if (!$path->no_prefix) {
38+
$path->path = $this->trimPath($this->prefix, $path->path);
39+
}
3840
}
3941
}
4042

src/Routing/Annotations/Annotations/Route.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public function modify(MethodEndpoint $endpoint, ReflectionMethod $method)
1515
{
1616
$endpoint->addPath(new Path(
1717
strtolower(class_basename(get_class($this))), $this->domain, $this->value,
18-
$this->as, (array) $this->middleware, (array) $this->where
18+
$this->as, (array) $this->middleware, (array) $this->where, $this->no_prefix
1919
));
2020
}
2121
}

src/Routing/Annotations/Path.php

+9-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,13 @@ class Path extends AbstractPath
1111
*/
1212
public $as;
1313

14+
/**
15+
* Should the prefix added to the controller be ignored for this particular route
16+
*
17+
* @var bool
18+
*/
19+
public $no_prefix;
20+
1421
/**
1522
* Create a new Route Path instance.
1623
*
@@ -23,13 +30,14 @@ class Path extends AbstractPath
2330
*
2431
* @return void
2532
*/
26-
public function __construct($verb, $domain, $path, $as, $middleware = [], $where = [])
33+
public function __construct($verb, $domain, $path, $as, $middleware = [], $where = [], $no_prefix = false)
2734
{
2835
$this->as = $as;
2936
$this->verb = $verb;
3037
$this->where = $where;
3138
$this->domain = $domain;
3239
$this->middleware = $middleware;
3340
$this->path = $path == '/' ? '/' : trim($path, '/');
41+
$this->no_prefix = $no_prefix;
3442
}
3543
}

tests/Routing/RoutingAnnotationScannerTest.php

+9
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,15 @@ public function testAnyAnnotation()
2222
$this->assertEquals(trim(file_get_contents(__DIR__.'/results/annotation-any.php')), $definition);
2323
}
2424

25+
public function testPrefixAnnotation()
26+
{
27+
require_once __DIR__.'/fixtures/annotations/PrefixController.php';
28+
$scanner = $this->makeScanner(['App\Http\Controllers\PrefixController']);
29+
30+
$definition = str_replace(PHP_EOL, "\n", $scanner->getRouteDefinitions());
31+
$this->assertEquals(trim(file_get_contents(__DIR__.'/results/annotation-prefix.php')), $definition);
32+
}
33+
2534
/**
2635
* Construct a route annotation scanner.
2736
*
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?php
2+
3+
namespace App\Http\Controllers;
4+
5+
/**
6+
* @Controller(prefix="/any-prefix")
7+
*/
8+
class PrefixController
9+
{
10+
/**
11+
* @Get("route-with-prefix", as="route.with.prefix")
12+
*/
13+
public function withPrefixAnnotations()
14+
{
15+
}
16+
17+
/**
18+
* @Get("route-without-prefix", as="route.without.prefix", no_prefix="true")
19+
*/
20+
public function withoutPrefixAnnotations()
21+
{
22+
}
23+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
$router->get('any-prefix/route-with-prefix', [
2+
'uses' => 'App\Http\Controllers\PrefixController@withPrefixAnnotations',
3+
'as' => 'route.with.prefix',
4+
'middleware' => [],
5+
'where' => [],
6+
'domain' => NULL,
7+
]);
8+
9+
$router->get('route-without-prefix', [
10+
'uses' => 'App\Http\Controllers\PrefixController@withoutPrefixAnnotations',
11+
'as' => 'route.without.prefix',
12+
'middleware' => [],
13+
'where' => [],
14+
'domain' => NULL,
15+
]);

0 commit comments

Comments
 (0)