2016-07-19 19:01:39 +03:00
|
|
|
<?php
|
2017-10-12 11:13:20 +03:00
|
|
|
declare(strict_types=1);
|
2017-07-22 14:48:30 +03:00
|
|
|
|
|
|
|
use Doctrine\Common\Cache\Cache;
|
|
|
|
use Shlinkio\Shlink\Common\Service\PreviewGenerator;
|
2016-08-09 11:24:42 +03:00
|
|
|
use Shlinkio\Shlink\Core\Action;
|
2016-08-09 14:41:30 +03:00
|
|
|
use Shlinkio\Shlink\Core\Middleware;
|
2016-08-16 00:40:49 +03:00
|
|
|
use Shlinkio\Shlink\Core\Options;
|
2017-10-13 12:55:14 +03:00
|
|
|
use Shlinkio\Shlink\Core\Response\NotFoundDelegate;
|
2016-07-19 19:01:39 +03:00
|
|
|
use Shlinkio\Shlink\Core\Service;
|
2017-07-22 14:48:30 +03:00
|
|
|
use Zend\Expressive\Router\RouterInterface;
|
2017-10-13 12:55:14 +03:00
|
|
|
use Zend\Expressive\Template\TemplateRendererInterface;
|
2017-07-22 14:48:30 +03:00
|
|
|
use Zend\ServiceManager\AbstractFactory\ConfigAbstractFactory;
|
2016-07-19 19:01:39 +03:00
|
|
|
|
|
|
|
return [
|
|
|
|
|
2016-07-31 17:30:05 +03:00
|
|
|
'dependencies' => [
|
2016-07-19 19:01:39 +03:00
|
|
|
'factories' => [
|
2016-08-16 00:40:49 +03:00
|
|
|
Options\AppOptions::class => Options\AppOptionsFactory::class,
|
2017-10-13 12:55:14 +03:00
|
|
|
NotFoundDelegate::class => ConfigAbstractFactory::class,
|
2016-08-07 15:44:33 +03:00
|
|
|
|
2016-07-19 19:01:39 +03:00
|
|
|
// Services
|
2017-07-22 14:48:30 +03:00
|
|
|
Service\UrlShortener::class => ConfigAbstractFactory::class,
|
|
|
|
Service\VisitsTracker::class => ConfigAbstractFactory::class,
|
|
|
|
Service\ShortUrlService::class => ConfigAbstractFactory::class,
|
|
|
|
Service\VisitService::class => ConfigAbstractFactory::class,
|
|
|
|
Service\Tag\TagService::class => ConfigAbstractFactory::class,
|
2016-07-19 19:01:39 +03:00
|
|
|
|
|
|
|
// Middleware
|
2017-07-22 14:48:30 +03:00
|
|
|
Action\RedirectAction::class => ConfigAbstractFactory::class,
|
|
|
|
Action\QrCodeAction::class => ConfigAbstractFactory::class,
|
|
|
|
Action\PreviewAction::class => ConfigAbstractFactory::class,
|
|
|
|
Middleware\QrCodeCacheMiddleware::class => ConfigAbstractFactory::class,
|
2016-07-19 19:01:39 +03:00
|
|
|
],
|
2017-10-13 12:55:14 +03:00
|
|
|
|
|
|
|
'aliases' => [
|
|
|
|
'Zend\Expressive\Delegate\DefaultDelegate' => NotFoundDelegate::class,
|
|
|
|
],
|
2016-07-19 19:01:39 +03:00
|
|
|
],
|
|
|
|
|
2017-07-22 14:48:30 +03:00
|
|
|
ConfigAbstractFactory::class => [
|
2017-10-13 12:55:14 +03:00
|
|
|
NotFoundDelegate::class => [TemplateRendererInterface::class],
|
|
|
|
|
2017-07-22 14:48:30 +03:00
|
|
|
// Services
|
2017-10-23 14:28:09 +03:00
|
|
|
Service\UrlShortener::class => [
|
|
|
|
'httpClient',
|
|
|
|
'em',
|
|
|
|
Cache::class,
|
|
|
|
'config.url_shortener.validate_url',
|
|
|
|
'config.url_shortener.shortcode_chars',
|
2016-07-19 19:01:39 +03:00
|
|
|
],
|
2017-07-22 14:48:30 +03:00
|
|
|
Service\VisitsTracker::class => ['em'],
|
|
|
|
Service\ShortUrlService::class => ['em'],
|
|
|
|
Service\VisitService::class => ['em'],
|
|
|
|
Service\Tag\TagService::class => ['em'],
|
|
|
|
|
|
|
|
// Middleware
|
2017-10-21 12:39:27 +03:00
|
|
|
Action\RedirectAction::class => [Service\UrlShortener::class, Service\VisitsTracker::class],
|
2017-07-22 14:48:30 +03:00
|
|
|
Action\QrCodeAction::class => [RouterInterface::class, Service\UrlShortener::class, 'Logger_Shlink'],
|
|
|
|
Action\PreviewAction::class => [PreviewGenerator::class, Service\UrlShortener::class],
|
|
|
|
Middleware\QrCodeCacheMiddleware::class => [Cache::class],
|
|
|
|
],
|
|
|
|
|
2016-07-19 19:01:39 +03:00
|
|
|
];
|