2016-07-19 18:07:59 +03:00
|
|
|
<?php
|
2019-10-05 18:26:10 +03:00
|
|
|
|
2017-10-12 11:13:20 +03:00
|
|
|
declare(strict_types=1);
|
2017-07-22 15:20:40 +03:00
|
|
|
|
2018-09-20 21:27:34 +03:00
|
|
|
namespace Shlinkio\Shlink\Rest;
|
|
|
|
|
2020-01-01 23:11:53 +03:00
|
|
|
use Laminas\ServiceManager\AbstractFactory\ConfigAbstractFactory;
|
|
|
|
use Laminas\ServiceManager\Factory\InvokableFactory;
|
|
|
|
use Mezzio\Router\Middleware\ImplicitOptionsMiddleware;
|
2020-04-12 14:59:10 +03:00
|
|
|
use Shlinkio\Shlink\Common\Mercure\LcobucciJwtProvider;
|
2017-07-22 15:20:40 +03:00
|
|
|
use Shlinkio\Shlink\Core\Options\AppOptions;
|
|
|
|
use Shlinkio\Shlink\Core\Service;
|
2020-05-08 11:29:24 +03:00
|
|
|
use Shlinkio\Shlink\Core\Tag\TagService;
|
2020-05-01 12:40:02 +03:00
|
|
|
use Shlinkio\Shlink\Core\Visit;
|
2017-07-22 15:20:40 +03:00
|
|
|
use Shlinkio\Shlink\Rest\Service\ApiKeyService;
|
2016-07-19 18:07:59 +03:00
|
|
|
|
|
|
|
return [
|
|
|
|
|
2016-07-31 17:30:05 +03:00
|
|
|
'dependencies' => [
|
2016-07-19 18:07:59 +03:00
|
|
|
'factories' => [
|
2017-07-22 15:20:40 +03:00
|
|
|
ApiKeyService::class => ConfigAbstractFactory::class,
|
|
|
|
|
2019-11-20 22:18:21 +03:00
|
|
|
Action\HealthAction::class => ConfigAbstractFactory::class,
|
2020-04-12 15:19:51 +03:00
|
|
|
Action\MercureInfoAction::class => ConfigAbstractFactory::class,
|
2018-09-20 20:55:24 +03:00
|
|
|
Action\ShortUrl\CreateShortUrlAction::class => ConfigAbstractFactory::class,
|
|
|
|
Action\ShortUrl\SingleStepCreateShortUrlAction::class => ConfigAbstractFactory::class,
|
|
|
|
Action\ShortUrl\EditShortUrlAction::class => ConfigAbstractFactory::class,
|
|
|
|
Action\ShortUrl\DeleteShortUrlAction::class => ConfigAbstractFactory::class,
|
|
|
|
Action\ShortUrl\ResolveShortUrlAction::class => ConfigAbstractFactory::class,
|
|
|
|
Action\ShortUrl\ListShortUrlsAction::class => ConfigAbstractFactory::class,
|
|
|
|
Action\ShortUrl\EditShortUrlTagsAction::class => ConfigAbstractFactory::class,
|
2020-05-01 12:17:07 +03:00
|
|
|
Action\Visit\ShortUrlVisitsAction::class => ConfigAbstractFactory::class,
|
2020-05-01 12:40:02 +03:00
|
|
|
Action\Visit\GlobalVisitsAction::class => ConfigAbstractFactory::class,
|
2017-07-22 15:20:40 +03: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,
|
|
|
|
|
2019-08-11 15:02:25 +03:00
|
|
|
ImplicitOptionsMiddleware::class => Middleware\EmptyResponseImplicitOptionsMiddlewareFactory::class,
|
2017-07-22 15:20:40 +03:00
|
|
|
Middleware\BodyParserMiddleware::class => InvokableFactory::class,
|
2016-07-19 18:07:59 +03:00
|
|
|
Middleware\CrossDomainMiddleware::class => InvokableFactory::class,
|
2018-09-20 21:00:53 +03:00
|
|
|
Middleware\ShortUrl\CreateShortUrlContentNegotiationMiddleware::class => InvokableFactory::class,
|
2020-02-08 14:22:07 +03:00
|
|
|
Middleware\ShortUrl\DropDefaultDomainFromRequestMiddleware::class => ConfigAbstractFactory::class,
|
2020-02-18 21:21:34 +03:00
|
|
|
Middleware\ShortUrl\DefaultShortCodesLengthMiddleware::class => ConfigAbstractFactory::class,
|
2017-07-22 15:20:40 +03:00
|
|
|
],
|
|
|
|
],
|
|
|
|
|
|
|
|
ConfigAbstractFactory::class => [
|
|
|
|
ApiKeyService::class => ['em'],
|
|
|
|
|
2020-05-01 13:08:44 +03:00
|
|
|
Action\HealthAction::class => ['em', AppOptions::class],
|
|
|
|
Action\MercureInfoAction::class => [LcobucciJwtProvider::class, 'config.mercure'],
|
|
|
|
Action\ShortUrl\CreateShortUrlAction::class => [Service\UrlShortener::class, 'config.url_shortener.domain'],
|
2018-09-20 20:55:24 +03:00
|
|
|
Action\ShortUrl\SingleStepCreateShortUrlAction::class => [
|
2018-05-03 14:21:43 +03:00
|
|
|
Service\UrlShortener::class,
|
|
|
|
ApiKeyService::class,
|
|
|
|
'config.url_shortener.domain',
|
|
|
|
],
|
2020-05-01 13:08:44 +03:00
|
|
|
Action\ShortUrl\EditShortUrlAction::class => [Service\ShortUrlService::class],
|
|
|
|
Action\ShortUrl\DeleteShortUrlAction::class => [Service\ShortUrl\DeleteShortUrlService::class],
|
2020-01-26 21:21:51 +03:00
|
|
|
Action\ShortUrl\ResolveShortUrlAction::class => [
|
|
|
|
Service\ShortUrl\ShortUrlResolver::class,
|
|
|
|
'config.url_shortener.domain',
|
|
|
|
],
|
2020-05-01 13:08:44 +03:00
|
|
|
Action\Visit\ShortUrlVisitsAction::class => [Service\VisitsTracker::class],
|
|
|
|
Action\Visit\GlobalVisitsAction::class => [Visit\VisitsStatsHelper::class],
|
|
|
|
Action\ShortUrl\ListShortUrlsAction::class => [Service\ShortUrlService::class, 'config.url_shortener.domain'],
|
|
|
|
Action\ShortUrl\EditShortUrlTagsAction::class => [Service\ShortUrlService::class],
|
2020-05-08 11:29:24 +03:00
|
|
|
Action\Tag\ListTagsAction::class => [TagService::class],
|
|
|
|
Action\Tag\DeleteTagsAction::class => [TagService::class],
|
|
|
|
Action\Tag\CreateTagsAction::class => [TagService::class],
|
|
|
|
Action\Tag\UpdateTagAction::class => [TagService::class],
|
2020-02-02 21:03:43 +03:00
|
|
|
|
2020-02-08 14:22:07 +03:00
|
|
|
Middleware\ShortUrl\DropDefaultDomainFromRequestMiddleware::class => ['config.url_shortener.domain.hostname'],
|
2020-02-18 21:21:34 +03:00
|
|
|
Middleware\ShortUrl\DefaultShortCodesLengthMiddleware::class => [
|
|
|
|
'config.url_shortener.default_short_codes_length',
|
|
|
|
],
|
2016-07-19 18:07:59 +03:00
|
|
|
],
|
|
|
|
|
|
|
|
];
|