2016-07-19 10:07:59 -05:00
|
|
|
<?php
|
2017-10-12 03:13:20 -05:00
|
|
|
declare(strict_types=1);
|
2017-07-22 07:20:40 -05:00
|
|
|
|
|
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
use Shlinkio\Shlink\Core\Options\AppOptions;
|
|
|
|
use Shlinkio\Shlink\Core\Service;
|
2016-07-19 10:07:59 -05:00
|
|
|
use Shlinkio\Shlink\Rest\Action;
|
2016-08-07 12:13:40 -05:00
|
|
|
use Shlinkio\Shlink\Rest\Authentication\JWTService;
|
2016-07-19 10:07:59 -05:00
|
|
|
use Shlinkio\Shlink\Rest\Middleware;
|
2017-07-22 07:20:40 -05:00
|
|
|
use Shlinkio\Shlink\Rest\Service\ApiKeyService;
|
|
|
|
use Zend\I18n\Translator\Translator;
|
|
|
|
use Zend\ServiceManager\AbstractFactory\ConfigAbstractFactory;
|
2016-07-19 10:07:59 -05:00
|
|
|
use Zend\ServiceManager\Factory\InvokableFactory;
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
2016-07-31 09:30:05 -05:00
|
|
|
'dependencies' => [
|
2016-07-19 10:07:59 -05:00
|
|
|
'factories' => [
|
2017-07-22 07:20:40 -05:00
|
|
|
JWTService::class => ConfigAbstractFactory::class,
|
|
|
|
ApiKeyService::class => ConfigAbstractFactory::class,
|
|
|
|
|
|
|
|
Action\AuthenticateAction::class => ConfigAbstractFactory::class,
|
2018-05-03 05:19:51 -05:00
|
|
|
Action\CreateShortCodeAction::class => ConfigAbstractFactory::class,
|
2018-01-07 14:13:06 -06:00
|
|
|
Action\EditShortCodeAction::class => ConfigAbstractFactory::class,
|
2017-07-22 07:20:40 -05:00
|
|
|
Action\ResolveUrlAction::class => ConfigAbstractFactory::class,
|
|
|
|
Action\GetVisitsAction::class => ConfigAbstractFactory::class,
|
2018-05-03 05:19:51 -05:00
|
|
|
Action\ListShortCodesAction::class => ConfigAbstractFactory::class,
|
|
|
|
Action\EditShortCodeTagsAction::class => ConfigAbstractFactory::class,
|
2017-07-22 07:20:40 -05:00
|
|
|
Action\Tag\ListTagsAction::class => ConfigAbstractFactory::class,
|
|
|
|
Action\Tag\DeleteTagsAction::class => ConfigAbstractFactory::class,
|
|
|
|
Action\Tag\CreateTagsAction::class => ConfigAbstractFactory::class,
|
|
|
|
Action\Tag\UpdateTagAction::class => ConfigAbstractFactory::class,
|
|
|
|
|
|
|
|
Middleware\BodyParserMiddleware::class => InvokableFactory::class,
|
2016-07-19 10:07:59 -05:00
|
|
|
Middleware\CrossDomainMiddleware::class => InvokableFactory::class,
|
2016-10-22 11:46:53 -05:00
|
|
|
Middleware\PathVersionMiddleware::class => InvokableFactory::class,
|
2017-07-22 07:20:40 -05:00
|
|
|
Middleware\CheckAuthenticationMiddleware::class => ConfigAbstractFactory::class,
|
|
|
|
],
|
|
|
|
],
|
|
|
|
|
|
|
|
ConfigAbstractFactory::class => [
|
|
|
|
JWTService::class => [AppOptions::class],
|
|
|
|
ApiKeyService::class => ['em'],
|
|
|
|
|
|
|
|
Action\AuthenticateAction::class => [ApiKeyService::class, JWTService::class, 'translator', 'Logger_Shlink'],
|
2018-05-03 05:19:51 -05:00
|
|
|
Action\CreateShortCodeAction::class => [
|
2017-07-22 07:20:40 -05:00
|
|
|
Service\UrlShortener::class,
|
|
|
|
'translator',
|
|
|
|
'config.url_shortener.domain',
|
2017-10-12 03:13:20 -05:00
|
|
|
'Logger_Shlink',
|
2016-07-19 10:07:59 -05:00
|
|
|
],
|
2018-01-07 14:13:06 -06:00
|
|
|
Action\EditShortCodeAction::class => [Service\ShortUrlService::class, 'translator', 'Logger_Shlink',],
|
2017-07-22 07:20:40 -05:00
|
|
|
Action\ResolveUrlAction::class => [Service\UrlShortener::class, 'translator'],
|
|
|
|
Action\GetVisitsAction::class => [Service\VisitsTracker::class, 'translator', 'Logger_Shlink'],
|
2018-05-03 05:19:51 -05:00
|
|
|
Action\ListShortCodesAction::class => [Service\ShortUrlService::class, 'translator', 'Logger_Shlink'],
|
|
|
|
Action\EditShortCodeTagsAction::class => [Service\ShortUrlService::class, 'translator', 'Logger_Shlink'],
|
2017-07-22 07:20:40 -05:00
|
|
|
Action\Tag\ListTagsAction::class => [Service\Tag\TagService::class, LoggerInterface::class],
|
|
|
|
Action\Tag\DeleteTagsAction::class => [Service\Tag\TagService::class, LoggerInterface::class],
|
|
|
|
Action\Tag\CreateTagsAction::class => [Service\Tag\TagService::class, LoggerInterface::class],
|
|
|
|
Action\Tag\UpdateTagAction::class => [Service\Tag\TagService::class, Translator::class, LoggerInterface::class],
|
|
|
|
|
2018-05-01 11:35:12 -05:00
|
|
|
Middleware\CheckAuthenticationMiddleware::class => [
|
|
|
|
JWTService::class,
|
|
|
|
'translator',
|
|
|
|
'config.auth.routes_whitelist',
|
|
|
|
'Logger_Shlink',
|
|
|
|
],
|
2016-07-19 10:07:59 -05:00
|
|
|
],
|
|
|
|
|
|
|
|
];
|