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 10:59:28 -05:00
|
|
|
Action\ShortCode\CreateShortCodeAction::class => ConfigAbstractFactory::class,
|
2018-05-03 06:21:43 -05:00
|
|
|
Action\ShortCode\SingleStepCreateShortCodeAction::class => ConfigAbstractFactory::class,
|
2018-05-03 11:00:32 -05:00
|
|
|
Action\ShortCode\EditShortCodeAction::class => ConfigAbstractFactory::class,
|
2018-05-03 11:02:45 -05:00
|
|
|
Action\ShortCode\ResolveUrlAction::class => ConfigAbstractFactory::class,
|
2018-05-03 11:04:00 -05:00
|
|
|
Action\Visit\GetVisitsAction::class => ConfigAbstractFactory::class,
|
2018-05-03 11:01:57 -05:00
|
|
|
Action\ShortCode\ListShortCodesAction::class => ConfigAbstractFactory::class,
|
2018-05-03 11:03:10 -05:00
|
|
|
Action\ShortCode\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,
|
2018-05-03 11:26:31 -05:00
|
|
|
Middleware\ShortCode\CreateShortCodeContentNegotiationMiddleware::class => InvokableFactory::class,
|
2017-07-22 07:20:40 -05:00
|
|
|
],
|
|
|
|
],
|
|
|
|
|
|
|
|
ConfigAbstractFactory::class => [
|
|
|
|
JWTService::class => [AppOptions::class],
|
|
|
|
ApiKeyService::class => ['em'],
|
|
|
|
|
|
|
|
Action\AuthenticateAction::class => [ApiKeyService::class, JWTService::class, 'translator', 'Logger_Shlink'],
|
2018-05-03 10:59:28 -05:00
|
|
|
Action\ShortCode\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-05-03 06:21:43 -05:00
|
|
|
Action\ShortCode\SingleStepCreateShortCodeAction::class => [
|
|
|
|
Service\UrlShortener::class,
|
|
|
|
'translator',
|
|
|
|
ApiKeyService::class,
|
|
|
|
'config.url_shortener.domain',
|
|
|
|
'Logger_Shlink',
|
|
|
|
],
|
2018-05-03 11:00:32 -05:00
|
|
|
Action\ShortCode\EditShortCodeAction::class => [Service\ShortUrlService::class, 'translator', 'Logger_Shlink',],
|
2018-08-11 03:40:44 -05:00
|
|
|
Action\ShortCode\ResolveUrlAction::class => [
|
|
|
|
Service\UrlShortener::class,
|
|
|
|
'translator',
|
|
|
|
'config.url_shortener.domain',
|
|
|
|
],
|
2018-05-03 11:04:00 -05:00
|
|
|
Action\Visit\GetVisitsAction::class => [Service\VisitsTracker::class, 'translator', 'Logger_Shlink'],
|
2018-08-10 16:14:45 -05:00
|
|
|
Action\ShortCode\ListShortCodesAction::class => [
|
|
|
|
Service\ShortUrlService::class,
|
|
|
|
'translator',
|
|
|
|
'config.url_shortener.domain',
|
|
|
|
'Logger_Shlink',
|
|
|
|
],
|
2018-05-03 11:05:16 -05:00
|
|
|
Action\ShortCode\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
|
|
|
],
|
|
|
|
|
|
|
|
];
|