| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?php
- namespace Opentalent\OtAdmin\Command;
- use Opentalent\OtAdmin\Controller\SiteController;
- use Symfony\Component\Console\Command\Command;
- use Symfony\Component\Console\Input\InputArgument;
- use Symfony\Component\Console\Input\InputInterface;
- use Symfony\Component\Console\Input\InputOption;
- use Symfony\Component\Console\Output\OutputInterface;
- use Symfony\Component\Console\Style\SymfonyStyle;
- use TYPO3\CMS\Core\Utility\GeneralUtility;
- use TYPO3\CMS\Extbase\Object\ObjectManager;
- /**
- * This CLI command sets a new domain for the organization website
- *
- * @package Opentalent\OtAdmin\Command
- */
- class SetSiteDomainCommand extends Command
- {
- /**
- * -- This method is expected by Typo3, do not rename ou remove --
- *
- * Allows to configure the command.
- * Allows to add a description, a help text, and / or define arguments.
- *
- */
- protected function configure()
- {
- $this
- ->setName("ot:site:setdomain")
- ->setDescription("Set a new domain for the organization website")
- ->setHelp("Set a new domain for the organization website. If the --redirect argument is passed, " .
- "a redirection will be added from the existing domain to the new one.")
- ->addArgument(
- 'organization_id',
- InputArgument::REQUIRED,
- "The organization's id in the opentalent DB"
- )
- ->addArgument(
- 'domain',
- InputArgument::REQUIRED,
- "The new domain to set up"
- )
- ->addOption(
- 'redirect',
- 'r',
- InputOption::VALUE_NONE,
- 'Use this option to add a redirection from the previous domain to the new one'
- );
- }
- /**
- * -- This method is expected by Typo3, do not rename ou remove --
- *
- * Executes the command for creating the new organization
- *
- * @param InputInterface $input
- * @param OutputInterface $output
- * @throws \Exception
- */
- protected function execute(InputInterface $input, OutputInterface $output)
- {
- $org_id = $input->getArgument('organization_id');
- $domain = $input->getArgument('domain');
- $redirect = $input->getOption('redirect');
- $io = new SymfonyStyle($input, $output);
- $siteController = GeneralUtility::makeInstance(ObjectManager::class)->get(SiteController::class);
- $rootUid = $siteController->setSiteDomainAction($org_id, $domain, $redirect);
- $io->success(sprintf("The website with root uid " . $rootUid . " domain has been set to " . $domain));
- }
- }
|