2016-07-19 17:17:37 +02:00
|
|
|
<?php
|
2017-10-12 10:13:20 +02:00
|
|
|
declare(strict_types=1);
|
2017-07-22 13:33:32 +02:00
|
|
|
|
2018-09-29 09:52:32 +02:00
|
|
|
namespace Shlinkio\Shlink\CLI;
|
|
|
|
|
2019-08-05 10:08:59 +02:00
|
|
|
use Doctrine\DBAL\Connection;
|
2019-04-14 11:19:21 +02:00
|
|
|
use GeoIp2\Database\Reader;
|
|
|
|
use Shlinkio\Shlink\CLI\Util\GeolocationDbUpdater;
|
2019-08-05 18:48:33 +02:00
|
|
|
use Shlinkio\Shlink\Common\Doctrine\NoDbNameConnectionFactory;
|
2017-07-22 13:33:32 +02:00
|
|
|
use Shlinkio\Shlink\Common\Service\PreviewGenerator;
|
|
|
|
use Shlinkio\Shlink\Core\Service;
|
2019-08-10 13:42:37 +02:00
|
|
|
use Shlinkio\Shlink\IpGeolocation\GeoLite2\DbUpdater;
|
2019-08-10 13:56:06 +02:00
|
|
|
use Shlinkio\Shlink\IpGeolocation\Resolver\IpLocationResolverInterface;
|
2017-07-22 13:33:32 +02:00
|
|
|
use Shlinkio\Shlink\Rest\Service\ApiKeyService;
|
2019-08-04 11:30:35 +02:00
|
|
|
use Symfony\Component\Console as SymfonyCli;
|
|
|
|
use Symfony\Component\Lock\Factory as Locker;
|
|
|
|
use Symfony\Component\Process\PhpExecutableFinder;
|
2017-07-22 13:33:32 +02:00
|
|
|
use Zend\ServiceManager\AbstractFactory\ConfigAbstractFactory;
|
2018-11-18 16:02:52 +01:00
|
|
|
use Zend\ServiceManager\Factory\InvokableFactory;
|
2016-07-19 17:17:37 +02:00
|
|
|
|
|
|
|
return [
|
|
|
|
|
2016-07-31 16:30:05 +02:00
|
|
|
'dependencies' => [
|
2016-07-19 17:17:37 +02:00
|
|
|
'factories' => [
|
2019-08-04 11:30:35 +02:00
|
|
|
SymfonyCli\Application::class => Factory\ApplicationFactory::class,
|
|
|
|
SymfonyCli\Helper\ProcessHelper::class => Factory\ProcessHelperFactory::class,
|
|
|
|
PhpExecutableFinder::class => InvokableFactory::class,
|
2016-07-19 17:17:37 +02:00
|
|
|
|
2019-04-14 11:19:21 +02:00
|
|
|
GeolocationDbUpdater::class => ConfigAbstractFactory::class,
|
|
|
|
|
2018-09-16 18:36:02 +02:00
|
|
|
Command\ShortUrl\GenerateShortUrlCommand::class => ConfigAbstractFactory::class,
|
|
|
|
Command\ShortUrl\ResolveUrlCommand::class => ConfigAbstractFactory::class,
|
|
|
|
Command\ShortUrl\ListShortUrlsCommand::class => ConfigAbstractFactory::class,
|
|
|
|
Command\ShortUrl\GetVisitsCommand::class => ConfigAbstractFactory::class,
|
|
|
|
Command\ShortUrl\GeneratePreviewCommand::class => ConfigAbstractFactory::class,
|
|
|
|
Command\ShortUrl\DeleteShortUrlCommand::class => ConfigAbstractFactory::class,
|
2018-09-15 17:57:12 +02:00
|
|
|
|
2019-04-14 09:10:00 +02:00
|
|
|
Command\Visit\LocateVisitsCommand::class => ConfigAbstractFactory::class,
|
2018-11-12 20:06:12 +01:00
|
|
|
Command\Visit\UpdateDbCommand::class => ConfigAbstractFactory::class,
|
2018-09-15 17:57:12 +02:00
|
|
|
|
2018-11-18 16:02:52 +01:00
|
|
|
Command\Config\GenerateCharsetCommand::class => InvokableFactory::class,
|
|
|
|
Command\Config\GenerateSecretCommand::class => InvokableFactory::class,
|
2018-09-15 17:57:12 +02:00
|
|
|
|
2017-07-22 13:33:32 +02:00
|
|
|
Command\Api\GenerateKeyCommand::class => ConfigAbstractFactory::class,
|
|
|
|
Command\Api\DisableKeyCommand::class => ConfigAbstractFactory::class,
|
|
|
|
Command\Api\ListKeysCommand::class => ConfigAbstractFactory::class,
|
2018-09-15 17:57:12 +02:00
|
|
|
|
2017-07-22 13:33:32 +02:00
|
|
|
Command\Tag\ListTagsCommand::class => ConfigAbstractFactory::class,
|
|
|
|
Command\Tag\CreateTagCommand::class => ConfigAbstractFactory::class,
|
|
|
|
Command\Tag\RenameTagCommand::class => ConfigAbstractFactory::class,
|
|
|
|
Command\Tag\DeleteTagsCommand::class => ConfigAbstractFactory::class,
|
2019-08-04 11:30:35 +02:00
|
|
|
|
|
|
|
Command\Db\CreateDatabaseCommand::class => ConfigAbstractFactory::class,
|
2019-08-06 20:48:48 +02:00
|
|
|
Command\Db\MigrateDatabaseCommand::class => ConfigAbstractFactory::class,
|
2017-07-22 13:33:32 +02:00
|
|
|
],
|
|
|
|
],
|
|
|
|
|
|
|
|
ConfigAbstractFactory::class => [
|
2019-08-04 11:30:35 +02:00
|
|
|
GeolocationDbUpdater::class => [DbUpdater::class, Reader::class, Locker::class],
|
2019-04-14 11:19:21 +02:00
|
|
|
|
2018-11-18 16:02:52 +01:00
|
|
|
Command\ShortUrl\GenerateShortUrlCommand::class => [Service\UrlShortener::class, 'config.url_shortener.domain'],
|
|
|
|
Command\ShortUrl\ResolveUrlCommand::class => [Service\UrlShortener::class],
|
|
|
|
Command\ShortUrl\ListShortUrlsCommand::class => [Service\ShortUrlService::class, 'config.url_shortener.domain'],
|
|
|
|
Command\ShortUrl\GetVisitsCommand::class => [Service\VisitsTracker::class],
|
|
|
|
Command\ShortUrl\GeneratePreviewCommand::class => [Service\ShortUrlService::class, PreviewGenerator::class],
|
|
|
|
Command\ShortUrl\DeleteShortUrlCommand::class => [Service\ShortUrl\DeleteShortUrlService::class],
|
2018-09-15 17:57:12 +02:00
|
|
|
|
2019-04-14 09:10:00 +02:00
|
|
|
Command\Visit\LocateVisitsCommand::class => [
|
2017-07-22 13:33:32 +02:00
|
|
|
Service\VisitService::class,
|
2018-11-11 12:40:40 +01:00
|
|
|
IpLocationResolverInterface::class,
|
2019-08-04 11:30:35 +02:00
|
|
|
Locker::class,
|
2019-04-14 17:59:22 +02:00
|
|
|
GeolocationDbUpdater::class,
|
2016-07-19 17:17:37 +02:00
|
|
|
],
|
2018-11-18 16:02:52 +01:00
|
|
|
Command\Visit\UpdateDbCommand::class => [DbUpdater::class],
|
2018-09-15 17:57:12 +02:00
|
|
|
|
2018-11-18 16:02:52 +01:00
|
|
|
Command\Api\GenerateKeyCommand::class => [ApiKeyService::class],
|
|
|
|
Command\Api\DisableKeyCommand::class => [ApiKeyService::class],
|
|
|
|
Command\Api\ListKeysCommand::class => [ApiKeyService::class],
|
2018-09-15 17:57:12 +02:00
|
|
|
|
2018-11-18 16:02:52 +01:00
|
|
|
Command\Tag\ListTagsCommand::class => [Service\Tag\TagService::class],
|
|
|
|
Command\Tag\CreateTagCommand::class => [Service\Tag\TagService::class],
|
|
|
|
Command\Tag\RenameTagCommand::class => [Service\Tag\TagService::class],
|
|
|
|
Command\Tag\DeleteTagsCommand::class => [Service\Tag\TagService::class],
|
2019-08-04 11:30:35 +02:00
|
|
|
|
|
|
|
Command\Db\CreateDatabaseCommand::class => [
|
|
|
|
Locker::class,
|
|
|
|
SymfonyCli\Helper\ProcessHelper::class,
|
|
|
|
PhpExecutableFinder::class,
|
2019-08-05 10:08:59 +02:00
|
|
|
Connection::class,
|
2019-08-05 18:48:33 +02:00
|
|
|
NoDbNameConnectionFactory::SERVICE_NAME,
|
2019-08-04 11:30:35 +02:00
|
|
|
],
|
2019-08-06 20:48:48 +02:00
|
|
|
Command\Db\MigrateDatabaseCommand::class => [
|
|
|
|
Locker::class,
|
|
|
|
SymfonyCli\Helper\ProcessHelper::class,
|
|
|
|
PhpExecutableFinder::class,
|
|
|
|
],
|
2016-07-19 17:17:37 +02:00
|
|
|
],
|
|
|
|
|
|
|
|
];
|