mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-22 08:56:42 -06:00
Removed concept of execution context and piped CloseDbConnectionMiddleware always
This commit is contained in:
parent
8a23c90e46
commit
c0bdd8fc77
3
bin/cli
3
bin/cli
@ -3,11 +3,8 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
use Interop\Container\ContainerInterface;
|
use Interop\Container\ContainerInterface;
|
||||||
use Shlinkio\Shlink\Common\Exec\ExecutionContext;
|
|
||||||
use Symfony\Component\Console\Application as CliApp;
|
use Symfony\Component\Console\Application as CliApp;
|
||||||
|
|
||||||
/** @var ContainerInterface $container */
|
/** @var ContainerInterface $container */
|
||||||
$container = include __DIR__ . '/../config/container.php';
|
$container = include __DIR__ . '/../config/container.php';
|
||||||
|
|
||||||
putenv(sprintf('CURRENT_SHLINK_CONTEXT=%s', ExecutionContext::CLI));
|
|
||||||
$container->get(CliApp::class)->run();
|
$container->get(CliApp::class)->run();
|
||||||
|
@ -10,18 +10,11 @@ return [
|
|||||||
|
|
||||||
'middleware_pipeline' => [
|
'middleware_pipeline' => [
|
||||||
'pre-routing' => [
|
'pre-routing' => [
|
||||||
'middleware' => (function () {
|
'middleware' => [
|
||||||
$middleware = [
|
ErrorHandler::class,
|
||||||
ErrorHandler::class,
|
Expressive\Helper\ContentLengthMiddleware::class,
|
||||||
Expressive\Helper\ContentLengthMiddleware::class,
|
Common\Middleware\CloseDbConnectionMiddleware::class,
|
||||||
];
|
],
|
||||||
|
|
||||||
if (Common\Exec\ExecutionContext::currentContextIsSwoole()) {
|
|
||||||
$middleware[] = Common\Middleware\CloseDbConnectionMiddleware::class;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $middleware;
|
|
||||||
})(),
|
|
||||||
'priority' => 12,
|
'priority' => 12,
|
||||||
],
|
],
|
||||||
'pre-routing-rest' => [
|
'pre-routing-rest' => [
|
||||||
|
@ -1,18 +0,0 @@
|
|||||||
<?php
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
namespace Shlinkio\Shlink\Common\Exec;
|
|
||||||
|
|
||||||
use const PHP_SAPI;
|
|
||||||
use function Shlinkio\Shlink\Common\env;
|
|
||||||
|
|
||||||
abstract class ExecutionContext
|
|
||||||
{
|
|
||||||
public const WEB = 'shlink_web';
|
|
||||||
public const CLI = 'shlink_cli';
|
|
||||||
|
|
||||||
public static function currentContextIsSwoole(): bool
|
|
||||||
{
|
|
||||||
return PHP_SAPI === 'cli' && env('CURRENT_SHLINK_CONTEXT', self::WEB) === self::WEB;
|
|
||||||
}
|
|
||||||
}
|
|
@ -18,5 +18,4 @@
|
|||||||
|
|
||||||
<!-- Paths to exclude -->
|
<!-- Paths to exclude -->
|
||||||
<exclude-pattern>config/params/*</exclude-pattern>
|
<exclude-pattern>config/params/*</exclude-pattern>
|
||||||
<exclude-pattern>public/index.php</exclude-pattern>
|
|
||||||
</ruleset>
|
</ruleset>
|
||||||
|
@ -2,11 +2,8 @@
|
|||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
use Psr\Container\ContainerInterface;
|
use Psr\Container\ContainerInterface;
|
||||||
use Shlinkio\Shlink\Common\Exec\ExecutionContext;
|
|
||||||
use Zend\Expressive\Application;
|
use Zend\Expressive\Application;
|
||||||
|
|
||||||
/** @var ContainerInterface $container */
|
/** @var ContainerInterface $container */
|
||||||
$container = include __DIR__ . '/../config/container.php';
|
$container = include __DIR__ . '/../config/container.php';
|
||||||
|
|
||||||
putenv(sprintf('CURRENT_SHLINK_CONTEXT=%s', ExecutionContext::WEB));
|
|
||||||
$container->get(Application::class)->run();
|
$container->get(Application::class)->run();
|
||||||
|
Loading…
Reference in New Issue
Block a user