2019-07-13 13:04:21 +03:00
|
|
|
<?php
|
2019-10-05 18:26:10 +03:00
|
|
|
|
2019-07-13 13:04:21 +03:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace Shlinkio\Shlink\Core;
|
|
|
|
|
2020-01-01 23:11:53 +03:00
|
|
|
use Laminas\ServiceManager\AbstractFactory\ConfigAbstractFactory;
|
2019-12-28 15:07:11 +03:00
|
|
|
use Psr\EventDispatcher\EventDispatcherInterface;
|
2022-09-18 11:01:22 +03:00
|
|
|
use Shlinkio\Shlink\CLI\GeoLite\GeolocationDbUpdater;
|
2022-07-26 11:17:50 +03:00
|
|
|
use Shlinkio\Shlink\Common\Cache\RedisPublishingHelper;
|
2022-07-26 13:17:37 +03:00
|
|
|
use Shlinkio\Shlink\Common\Mercure\MercureHubPublishingHelper;
|
2023-06-06 21:25:14 +03:00
|
|
|
use Shlinkio\Shlink\Common\Mercure\MercureOptions;
|
2022-07-24 11:12:26 +03:00
|
|
|
use Shlinkio\Shlink\Common\RabbitMq\RabbitMqPublishingHelper;
|
2023-11-15 21:57:58 +03:00
|
|
|
use Shlinkio\Shlink\Core\ShortUrl\Helper\ShortUrlStringifier;
|
2022-09-23 15:50:26 +03:00
|
|
|
use Shlinkio\Shlink\Core\Visit\Geolocation\VisitLocator;
|
|
|
|
use Shlinkio\Shlink\Core\Visit\Geolocation\VisitToLocationHelper;
|
2023-06-03 18:56:52 +03:00
|
|
|
use Shlinkio\Shlink\EventDispatcher\Listener\EnabledListenerCheckerInterface;
|
2021-04-07 12:35:02 +03:00
|
|
|
use Shlinkio\Shlink\IpGeolocation\GeoLite2\DbUpdater;
|
2023-06-03 18:56:52 +03:00
|
|
|
use Shlinkio\Shlink\IpGeolocation\GeoLite2\GeoLite2Options;
|
2019-08-10 14:56:06 +03:00
|
|
|
use Shlinkio\Shlink\IpGeolocation\Resolver\IpLocationResolverInterface;
|
2019-07-13 13:04:21 +03:00
|
|
|
|
2023-11-15 21:57:58 +03:00
|
|
|
use function Shlinkio\Shlink\Config\runningInOpenswoole;
|
|
|
|
use function Shlinkio\Shlink\Config\runningInRoadRunner;
|
2019-07-13 13:04:21 +03:00
|
|
|
|
2023-11-15 21:57:58 +03:00
|
|
|
return (static function (): array {
|
|
|
|
$regularEvents = [
|
|
|
|
EventDispatcher\Event\UrlVisited::class => [
|
|
|
|
EventDispatcher\LocateVisit::class,
|
2019-12-28 15:50:41 +03:00
|
|
|
],
|
2023-11-15 21:57:58 +03:00
|
|
|
EventDispatcher\Event\GeoLiteDbCreated::class => [
|
|
|
|
EventDispatcher\LocateUnlocatedVisits::class,
|
2019-07-13 13:04:21 +03:00
|
|
|
],
|
2023-11-15 21:57:58 +03:00
|
|
|
];
|
|
|
|
$asyncEvents = [
|
|
|
|
EventDispatcher\Event\VisitLocated::class => [
|
|
|
|
EventDispatcher\Mercure\NotifyVisitToMercure::class,
|
|
|
|
EventDispatcher\RabbitMq\NotifyVisitToRabbitMq::class,
|
|
|
|
EventDispatcher\RedisPubSub\NotifyVisitToRedis::class,
|
|
|
|
EventDispatcher\NotifyVisitToWebHooks::class,
|
|
|
|
EventDispatcher\UpdateGeoLiteDb::class,
|
|
|
|
],
|
|
|
|
EventDispatcher\Event\ShortUrlCreated::class => [
|
|
|
|
EventDispatcher\Mercure\NotifyNewShortUrlToMercure::class,
|
|
|
|
EventDispatcher\RabbitMq\NotifyNewShortUrlToRabbitMq::class,
|
|
|
|
EventDispatcher\RedisPubSub\NotifyNewShortUrlToRedis::class,
|
|
|
|
],
|
|
|
|
];
|
|
|
|
|
|
|
|
// Send visits to matomo asynchronously if the runtime allows it
|
|
|
|
if (runningInRoadRunner() || runningInOpenswoole()) {
|
|
|
|
$asyncEvents[EventDispatcher\Event\VisitLocated::class][] = EventDispatcher\Matomo\SendVisitToMatomo::class;
|
|
|
|
} else {
|
|
|
|
$regularEvents[EventDispatcher\Event\VisitLocated::class] = [EventDispatcher\Matomo\SendVisitToMatomo::class];
|
|
|
|
}
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
|
|
|
'events' => [
|
|
|
|
'regular' => $regularEvents,
|
|
|
|
'async' => $asyncEvents,
|
2023-06-03 18:56:52 +03:00
|
|
|
],
|
|
|
|
|
2023-11-15 21:57:58 +03:00
|
|
|
'dependencies' => [
|
|
|
|
'factories' => [
|
|
|
|
EventDispatcher\LocateVisit::class => ConfigAbstractFactory::class,
|
|
|
|
EventDispatcher\Matomo\SendVisitToMatomo::class => ConfigAbstractFactory::class,
|
|
|
|
EventDispatcher\LocateUnlocatedVisits::class => ConfigAbstractFactory::class,
|
|
|
|
EventDispatcher\NotifyVisitToWebHooks::class => ConfigAbstractFactory::class,
|
|
|
|
EventDispatcher\Mercure\NotifyVisitToMercure::class => ConfigAbstractFactory::class,
|
|
|
|
EventDispatcher\Mercure\NotifyNewShortUrlToMercure::class => ConfigAbstractFactory::class,
|
|
|
|
EventDispatcher\RabbitMq\NotifyVisitToRabbitMq::class => ConfigAbstractFactory::class,
|
|
|
|
EventDispatcher\RabbitMq\NotifyNewShortUrlToRabbitMq::class => ConfigAbstractFactory::class,
|
|
|
|
EventDispatcher\RedisPubSub\NotifyVisitToRedis::class => ConfigAbstractFactory::class,
|
|
|
|
EventDispatcher\RedisPubSub\NotifyNewShortUrlToRedis::class => ConfigAbstractFactory::class,
|
|
|
|
EventDispatcher\UpdateGeoLiteDb::class => ConfigAbstractFactory::class,
|
|
|
|
|
|
|
|
EventDispatcher\Helper\EnabledListenerChecker::class => ConfigAbstractFactory::class,
|
|
|
|
],
|
|
|
|
|
|
|
|
'aliases' => [
|
|
|
|
EnabledListenerCheckerInterface::class => EventDispatcher\Helper\EnabledListenerChecker::class,
|
|
|
|
],
|
|
|
|
|
|
|
|
'delegators' => [
|
|
|
|
EventDispatcher\Mercure\NotifyVisitToMercure::class => [
|
|
|
|
EventDispatcher\CloseDbConnectionEventListenerDelegator::class,
|
|
|
|
],
|
|
|
|
EventDispatcher\Mercure\NotifyNewShortUrlToMercure::class => [
|
|
|
|
EventDispatcher\CloseDbConnectionEventListenerDelegator::class,
|
|
|
|
],
|
|
|
|
EventDispatcher\RabbitMq\NotifyVisitToRabbitMq::class => [
|
|
|
|
EventDispatcher\CloseDbConnectionEventListenerDelegator::class,
|
|
|
|
],
|
|
|
|
EventDispatcher\RabbitMq\NotifyNewShortUrlToRabbitMq::class => [
|
|
|
|
EventDispatcher\CloseDbConnectionEventListenerDelegator::class,
|
|
|
|
],
|
|
|
|
EventDispatcher\RedisPubSub\NotifyVisitToRedis::class => [
|
|
|
|
EventDispatcher\CloseDbConnectionEventListenerDelegator::class,
|
|
|
|
],
|
|
|
|
EventDispatcher\RedisPubSub\NotifyNewShortUrlToRedis::class => [
|
|
|
|
EventDispatcher\CloseDbConnectionEventListenerDelegator::class,
|
|
|
|
],
|
|
|
|
EventDispatcher\LocateUnlocatedVisits::class => [
|
|
|
|
EventDispatcher\CloseDbConnectionEventListenerDelegator::class,
|
|
|
|
],
|
|
|
|
EventDispatcher\NotifyVisitToWebHooks::class => [
|
|
|
|
EventDispatcher\CloseDbConnectionEventListenerDelegator::class,
|
|
|
|
],
|
|
|
|
],
|
2019-07-13 16:43:54 +03:00
|
|
|
],
|
2020-04-11 19:00:29 +03:00
|
|
|
|
2023-11-15 21:57:58 +03:00
|
|
|
ConfigAbstractFactory::class => [
|
|
|
|
EventDispatcher\LocateVisit::class => [
|
|
|
|
IpLocationResolverInterface::class,
|
|
|
|
'em',
|
|
|
|
'Logger_Shlink',
|
|
|
|
DbUpdater::class,
|
|
|
|
EventDispatcherInterface::class,
|
|
|
|
],
|
|
|
|
EventDispatcher\LocateUnlocatedVisits::class => [VisitLocator::class, VisitToLocationHelper::class],
|
|
|
|
EventDispatcher\NotifyVisitToWebHooks::class => [
|
|
|
|
'httpClient',
|
|
|
|
'em',
|
|
|
|
'Logger_Shlink',
|
|
|
|
Options\WebhookOptions::class,
|
|
|
|
ShortUrl\Transformer\ShortUrlDataTransformer::class,
|
|
|
|
Options\AppOptions::class,
|
|
|
|
],
|
2022-07-21 21:07:28 +03:00
|
|
|
EventDispatcher\Mercure\NotifyVisitToMercure::class => [
|
2023-11-15 21:57:58 +03:00
|
|
|
MercureHubPublishingHelper::class,
|
|
|
|
EventDispatcher\PublishingUpdatesGenerator::class,
|
|
|
|
'em',
|
|
|
|
'Logger_Shlink',
|
2021-04-07 12:35:02 +03:00
|
|
|
],
|
2022-07-24 20:00:48 +03:00
|
|
|
EventDispatcher\Mercure\NotifyNewShortUrlToMercure::class => [
|
2023-11-15 21:57:58 +03:00
|
|
|
MercureHubPublishingHelper::class,
|
|
|
|
EventDispatcher\PublishingUpdatesGenerator::class,
|
|
|
|
'em',
|
|
|
|
'Logger_Shlink',
|
2022-07-24 20:00:48 +03:00
|
|
|
],
|
2022-07-21 21:07:28 +03:00
|
|
|
EventDispatcher\RabbitMq\NotifyVisitToRabbitMq::class => [
|
2023-11-15 21:57:58 +03:00
|
|
|
RabbitMqPublishingHelper::class,
|
|
|
|
EventDispatcher\PublishingUpdatesGenerator::class,
|
|
|
|
'em',
|
|
|
|
'Logger_Shlink',
|
|
|
|
Visit\Transformer\OrphanVisitDataTransformer::class,
|
|
|
|
Options\RabbitMqOptions::class,
|
2021-12-11 23:04:16 +03:00
|
|
|
],
|
2022-07-24 11:18:19 +03:00
|
|
|
EventDispatcher\RabbitMq\NotifyNewShortUrlToRabbitMq::class => [
|
2023-11-15 21:57:58 +03:00
|
|
|
RabbitMqPublishingHelper::class,
|
|
|
|
EventDispatcher\PublishingUpdatesGenerator::class,
|
|
|
|
'em',
|
|
|
|
'Logger_Shlink',
|
|
|
|
Options\RabbitMqOptions::class,
|
2022-07-24 11:18:19 +03:00
|
|
|
],
|
2022-07-25 19:23:13 +03:00
|
|
|
EventDispatcher\RedisPubSub\NotifyVisitToRedis::class => [
|
2023-11-15 21:57:58 +03:00
|
|
|
RedisPublishingHelper::class,
|
|
|
|
EventDispatcher\PublishingUpdatesGenerator::class,
|
|
|
|
'em',
|
|
|
|
'Logger_Shlink',
|
|
|
|
'config.redis.pub_sub_enabled',
|
2022-07-25 19:23:13 +03:00
|
|
|
],
|
|
|
|
EventDispatcher\RedisPubSub\NotifyNewShortUrlToRedis::class => [
|
2023-11-15 21:57:58 +03:00
|
|
|
RedisPublishingHelper::class,
|
|
|
|
EventDispatcher\PublishingUpdatesGenerator::class,
|
|
|
|
'em',
|
|
|
|
'Logger_Shlink',
|
|
|
|
'config.redis.pub_sub_enabled',
|
2022-07-25 19:23:13 +03:00
|
|
|
],
|
2023-11-15 21:57:58 +03:00
|
|
|
|
|
|
|
EventDispatcher\Matomo\SendVisitToMatomo::class => [
|
|
|
|
'em',
|
|
|
|
'Logger_Shlink',
|
|
|
|
ShortUrlStringifier::class,
|
|
|
|
Matomo\MatomoOptions::class,
|
|
|
|
Matomo\MatomoTrackerBuilder::class,
|
2022-09-18 18:00:03 +03:00
|
|
|
],
|
2023-11-15 21:57:58 +03:00
|
|
|
|
|
|
|
EventDispatcher\UpdateGeoLiteDb::class => [
|
|
|
|
GeolocationDbUpdater::class,
|
|
|
|
'Logger_Shlink',
|
|
|
|
EventDispatcherInterface::class,
|
2020-04-11 19:00:29 +03:00
|
|
|
],
|
2023-06-03 18:56:52 +03:00
|
|
|
|
2023-11-15 21:57:58 +03:00
|
|
|
EventDispatcher\Helper\EnabledListenerChecker::class => [
|
|
|
|
Options\RabbitMqOptions::class,
|
|
|
|
'config.redis.pub_sub_enabled',
|
|
|
|
MercureOptions::class,
|
|
|
|
Options\WebhookOptions::class,
|
|
|
|
GeoLite2Options::class,
|
|
|
|
],
|
2023-06-03 18:56:52 +03:00
|
|
|
],
|
2019-07-13 13:04:21 +03:00
|
|
|
|
2023-11-15 21:57:58 +03:00
|
|
|
];
|
|
|
|
})();
|