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;
|
|
|
|
|
2019-12-28 15:07:11 +03:00
|
|
|
use Psr\EventDispatcher\EventDispatcherInterface;
|
2019-07-20 12:21:00 +03:00
|
|
|
use Shlinkio\Shlink\CLI\Util\GeolocationDbUpdater;
|
2019-08-10 14:56:06 +03:00
|
|
|
use Shlinkio\Shlink\IpGeolocation\Resolver\IpLocationResolverInterface;
|
2019-07-13 13:04:21 +03:00
|
|
|
use Zend\ServiceManager\AbstractFactory\ConfigAbstractFactory;
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
|
|
|
'events' => [
|
2019-12-28 15:50:41 +03:00
|
|
|
'regular' => [
|
|
|
|
EventDispatcher\VisitLocated::class => [
|
|
|
|
EventDispatcher\NotifyVisitToWebHooks::class,
|
|
|
|
],
|
|
|
|
],
|
2019-07-18 20:07:07 +03:00
|
|
|
'async' => [
|
|
|
|
EventDispatcher\ShortUrlVisited::class => [
|
|
|
|
EventDispatcher\LocateShortUrlVisit::class,
|
|
|
|
],
|
2019-07-13 13:04:21 +03:00
|
|
|
],
|
|
|
|
],
|
|
|
|
|
|
|
|
'dependencies' => [
|
2019-07-13 16:43:54 +03:00
|
|
|
'factories' => [
|
|
|
|
EventDispatcher\LocateShortUrlVisit::class => ConfigAbstractFactory::class,
|
2019-12-28 15:50:41 +03:00
|
|
|
EventDispatcher\NotifyVisitToWebHooks::class => ConfigAbstractFactory::class,
|
2019-07-13 16:43:54 +03:00
|
|
|
],
|
2019-07-13 13:04:21 +03:00
|
|
|
],
|
|
|
|
|
|
|
|
ConfigAbstractFactory::class => [
|
2019-07-20 12:21:00 +03:00
|
|
|
EventDispatcher\LocateShortUrlVisit::class => [
|
|
|
|
IpLocationResolverInterface::class,
|
|
|
|
'em',
|
|
|
|
'Logger_Shlink',
|
|
|
|
GeolocationDbUpdater::class,
|
2019-12-28 15:07:11 +03:00
|
|
|
EventDispatcherInterface::class,
|
2019-07-20 12:21:00 +03:00
|
|
|
],
|
2019-12-27 11:25:07 +03:00
|
|
|
EventDispatcher\NotifyVisitToWebHooks::class => [
|
|
|
|
'httpClient',
|
|
|
|
'em',
|
|
|
|
'Logger_Shlink',
|
|
|
|
'config.url_shortener.visits_webhooks',
|
2019-12-27 19:07:20 +03:00
|
|
|
'config.url_shortener.domain',
|
2019-12-28 15:50:41 +03:00
|
|
|
Options\AppOptions::class,
|
2019-12-27 11:25:07 +03:00
|
|
|
],
|
2019-07-13 13:04:21 +03:00
|
|
|
],
|
|
|
|
|
|
|
|
];
|