Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop Laravel Lumen support #579

Merged
merged 2 commits into from Oct 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,8 @@

## Unreleased

- Drop support for Laravel Lumen (#579)

## 2.14.0

- Fix not listening to queue events because `QueueManager` is registered as `queue` in the container and not by it's class name (#568)
Expand Down
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -78,6 +78,7 @@ try {

## Laravel Version Compatibility

- Laravel Lumen is supported until `2.14.x`
- Laravel `<= 4.2.x` is supported until `0.8.x`
- Laravel `<= 5.7.x` on PHP `<= 7.0` is supported until `0.11.x`
- Laravel `>= 5.x.x` on PHP `>= 7.1` is supported in all versions
Expand Down
3 changes: 3 additions & 0 deletions composer.json
Expand Up @@ -28,6 +28,9 @@
"symfony/psr-http-message-bridge": "^1.0 | ^2.0",
"nyholm/psr7": "^1.0"
},
"conflict": {
"laravel/lumen-framework": "*"
},
"autoload": {
"psr-0": {
"Sentry\\Laravel\\": "src/"
Expand Down
62 changes: 0 additions & 62 deletions src/Sentry/Laravel/Integration.php
Expand Up @@ -167,68 +167,6 @@ public static function extractNameAndSourceForRoute(Route $route): array
return [$routeName, $source];
}

/**
* Extract the readable name for a Lumen route.
*
* @param array $routeData The array of route data
* @param string $path The path of the request
*
* @return string
*
* @internal This helper is used in various places to extra meaninful info from a Lumen route data.
* @deprecated This will be removed in version 3.0, use `extractNameAndSourceForLumenRoute` instead.
*/
public static function extractNameForLumenRoute(array $routeData, string $path): string
{
return self::extractNameAndSourceForLumenRoute($routeData, $path)[0];
}

/**
* Extract the readable name for a Lumen route and the transaction source for where that route name came from.
*
* @param array $routeData The array of route data
* @param string $path The path of the request
*
* @return array{0: string, 1: \Sentry\Tracing\TransactionSource}
*
* @internal This helper is used in various places to extra meaninful info from a Lumen route data.
*/
public static function extractNameAndSourceForLumenRoute(array $routeData, string $path): array
{
$source = null;
$routeName = null;

$route = $routeData[1] ?? [];

// some.action (route name/alias)
if (!empty($route['as'])) {
$source = TransactionSource::component();
$routeName = self::extractNameForNamedRoute($route['as']);
}

// Some\Controller@someAction (controller action)
if (empty($routeName) && !empty($route['uses'])) {
$source = TransactionSource::component();
$routeName = self::extractNameForActionRoute($route['uses']);
}

// /some/{action} // Fallback to the route uri (with parameter placeholders)
if (empty($routeName) || $routeName === 'Closure') {
$routeUri = array_reduce(
array_keys($routeData[2]),
static function ($carry, $key) use ($routeData) {
return str_replace($routeData[2][$key], "{{$key}}", $carry);
},
$path
);

$source = TransactionSource::url();
$routeName = '/' . ltrim($routeUri, '/');
}

return [$routeName, $source];
}

/**
* Take a route name and return it only if it's a usable route name.
*
Expand Down
10 changes: 1 addition & 9 deletions src/Sentry/Laravel/ServiceProvider.php
Expand Up @@ -6,7 +6,6 @@
use Illuminate\Foundation\Application as Laravel;
use Illuminate\Foundation\Http\Kernel as HttpKernel;
use Illuminate\Log\LogManager;
use Laravel\Lumen\Application as Lumen;
use RuntimeException;
use Sentry\ClientBuilder;
use Sentry\ClientBuilderInterface;
Expand Down Expand Up @@ -48,10 +47,7 @@ public function boot(): void
if ($this->hasDsnSet()) {
$this->bindEvents();

if ($this->app instanceof Lumen) {
$this->app->middleware(SetRequestMiddleware::class);
$this->app->middleware(SetRequestIpMiddleware::class);
} elseif ($this->app->bound(HttpKernelInterface::class)) {
if ($this->app->bound(HttpKernelInterface::class)) {
/** @var \Illuminate\Foundation\Http\Kernel $httpKernel */
$httpKernel = $this->app->make(HttpKernelInterface::class);

Expand All @@ -78,10 +74,6 @@ public function boot(): void
*/
public function register(): void
{
if ($this->app instanceof Lumen) {
$this->app->configure(static::$abstract);
}

$this->mergeConfigFrom(__DIR__ . '/../../../config/sentry.php', static::$abstract);

$this->configureAndRegisterClient();
Expand Down
17 changes: 2 additions & 15 deletions src/Sentry/Laravel/Tracing/Middleware.php
Expand Up @@ -91,9 +91,8 @@ public function terminate($request, $response): void
* @param float|null $timestamp The unix timestamp of the booted event, default to `microtime(true)` if not `null`.
*
* @return void
* @internal This method should only be invoked right after the application has finished "booting":
* For Laravel this is from the application `booted` callback.
* For Lumen this is right before returning from the `bootstrap/app.php` file.
*
* @internal This method should only be invoked right after the application has finished "booting".
*/
public function setBootedTimestamp(?float $timestamp = null): void
{
Expand Down Expand Up @@ -190,18 +189,6 @@ private function hydrateRequestData(Request $request): void
'action' => $route->getActionName(),
'method' => $request->getMethod(),
]);
} elseif (is_array($route) && count($route) === 3) {
[$transactionName, $transactionSource] = Integration::extractNameAndSourceForLumenRoute($route, $request->path());

$this->updateTransactionNameIfDefault($transactionName, $transactionSource);

$action = $route[1] ?? [];

$this->transaction->setData([
'name' => $action['as'] ?? null,
'action' => $action['uses'] ?? 'Closure',
'method' => $request->getMethod(),
]);
}

$this->updateTransactionNameIfDefault('/' . ltrim($request->path(), '/'), TransactionSource::url());
Expand Down
14 changes: 4 additions & 10 deletions src/Sentry/Laravel/Tracing/ServiceProvider.php
Expand Up @@ -6,11 +6,9 @@
use Illuminate\Contracts\View\Engine;
use Illuminate\Contracts\View\View;
use Illuminate\Foundation\Http\Kernel as HttpKernel;
use Illuminate\Queue\QueueManager;
use Illuminate\View\Engines\EngineResolver;
use Illuminate\View\Factory as ViewFactory;
use InvalidArgumentException;
use Laravel\Lumen\Application as Lumen;
use Sentry\Laravel\BaseServiceProvider;
use Sentry\Serializer\RepresentationSerializer;

Expand All @@ -29,9 +27,7 @@ public function boot(): void

$this->bindViewEngine($tracingConfig);

if ($this->app instanceof Lumen) {
$this->app->middleware(Middleware::class);
} elseif ($this->app->bound(HttpKernelInterface::class)) {
if ($this->app->bound(HttpKernelInterface::class)) {
/** @var \Illuminate\Foundation\Http\Kernel $httpKernel */
$httpKernel = $this->app->make(HttpKernelInterface::class);

Expand All @@ -55,11 +51,9 @@ public function register(): void
return new BacktraceHelper($options, new RepresentationSerializer($options));
});

if (!$this->app instanceof Lumen) {
$this->app->booted(function () {
$this->app->make(Middleware::class)->setBootedTimestamp();
});
}
$this->app->booted(function () {
$this->app->make(Middleware::class)->setBootedTimestamp();
});
}

private function bindEvents(array $tracingConfig): void
Expand Down
79 changes: 0 additions & 79 deletions test/Sentry/IntegrationTest.php
Expand Up @@ -162,83 +162,4 @@ public function testExtractingNameForRouteWithStrippedBaseNamespaceFromAction():

Integration::setControllersBaseNamespace(null);
}

public function testExtractingNameForLumenRouteWithName(): void
{
$route = [0, ['as' => $routeName = 'foo-bar'], []];

$this->assertSame($routeName, Integration::extractNameForLumenRoute($route, '/some-route'));
}

public function testExtractingNameForLumenRouteWithAction(): void
{
$route = [0, ['uses' => $controller = 'SomeController@someAction'], []];

$this->assertSame($controller, Integration::extractNameForLumenRoute($route, '/some-route'));
}

public function testExtractingNameForLumenRouteWithoutName(): void
{
$url = '/some-route';

$this->assertSame($url, Integration::extractNameForLumenRoute([0, [], []], $url));
}

public function testExtractingNameForLumenRouteWithParamInUrl(): void
{
$route = [1, [], ['param1' => 'foo']];

$url = '/foo/bar/baz';

$this->assertSame('/{param1}/bar/baz', Integration::extractNameForLumenRoute($route, $url));
}

public function testExtractingNameForLumenRouteWithParamsInUrl(): void
{
$route = [1, [], ['param1' => 'foo', 'param2' => 'bar']];

$url = '/foo/bar/baz';

$this->assertSame('/{param1}/{param2}/baz', Integration::extractNameForLumenRoute($route, $url));
}

public function testExtractingNameForLumenRouteWithActionAndName(): void
{
$route = [0, [
'as' => $routeName = 'foo-bar',
'uses' => 'SomeController@someAction',
], []];

$this->assertSame($routeName, Integration::extractNameForLumenRoute($route, '/some-route'));
}

public function testExtractingNameForLumenRouteWithAutoGeneratedName(): void
{
// We fake a generated name here, Laravel generates them each starting with `generated::`
$route = [0, ['as' => 'generated::KoAePbpBofo01ey4'], []];

$url = '/some-route';

$this->assertSame($url, Integration::extractNameForLumenRoute($route, $url));
}

public function testExtractingNameForLumenRouteWithIncompleteGroupName(): void
{
$route = [0, ['as' => 'group-name.'], []];

$url = '/some-route';

$this->assertSame($url, Integration::extractNameForLumenRoute($route, $url));
}

public function testExtractingNameForLumenRouteWithStrippedBaseNamespaceFromAction(): void
{
Integration::setControllersBaseNamespace('BaseNamespace');

$route = [0, ['uses' => 'BaseNamespace\\SomeController@someAction'], []];

$this->assertSame('SomeController@someAction', Integration::extractNameForLumenRoute($route, '/some-route'));

Integration::setControllersBaseNamespace(null);
}
}