| Linux hosting5.siteguarding.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64 Path : /home/devsafetybis/j524.dev.safetybis.com/libraries/src/Console/ |
| Current File : /home/devsafetybis/j524.dev.safetybis.com/libraries/src/Console/SiteCreatePublicFolderCommand.php |
<?php
/**
* Joomla! Content Management System
*
* @copyright (C) 2023 Open Source Matters, Inc. <https://www.joomla.org>
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Joomla\CMS\Console;
use Joomla\CMS\Helper\PublicFolderGeneratorHelper;
use Joomla\Console\Command\AbstractCommand;
use Joomla\Filter\InputFilter;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Style\SymfonyStyle;
// phpcs:disable PSR1.Files.SideEffects
\defined('_JEXEC') or die;
// phpcs:enable PSR1.Files.SideEffects
/**
* Console command for creating a public folder
*
* @since 5.0.0
*/
class SiteCreatePublicFolderCommand extends AbstractCommand
{
/**
* The default command name
*
* @var string
* @since 5.0.0
*/
protected static $defaultName = 'site:create-public-folder';
/**
* SymfonyStyle Object
* @var object
* @since 5.0.0
*/
private $ioStyle;
/**
* Stores the Input Object
* @var object
* @since 5.0.0
*/
private $cliInput;
/**
* The public folder path (absolute)
*
* @var string
*
* @since 5.0.0
*/
private $publicFolder;
/**
* Internal function to execute the command.
*
* @param InputInterface $input The input to inject into the command.
* @param OutputInterface $output The output to inject into the command.
*
* @return integer The command exit code
*
* @since 5.0.0
*/
protected function doExecute(InputInterface $input, OutputInterface $output): int
{
$this->configureIO($input, $output);
$this->ioStyle->title('Create a public folder');
$this->publicFolder = $this->getStringFromOption('public-folder', 'Please enter the absolute path to the public folder', true);
// Remove the last (Windows || NIX) slash
$this->publicFolder = rtrim((new InputFilter())->clean($this->publicFolder, 'PATH'), '/');
$this->publicFolder = rtrim($this->publicFolder, '\\');
// Check if the symlink function is available
if (!\function_exists('symlink')) {
$this->ioStyle->error('symlink() function is not enabled on the server. Please enable it to proceed.');
return Command::FAILURE;
}
try {
(new PublicFolderGeneratorHelper())->createPublicFolder($this->publicFolder);
} catch (\Exception $e) {
return Command::FAILURE;
}
$this->ioStyle->success("Public folder created! \nAdjust your server configuration to serve from the public folder.");
return Command::SUCCESS;
}
/**
* Method to get a value from option
*
* @param string $option set the option name
* @param string $question set the question if user enters no value to option
* @param bool $required is it required
*
* @return string
*
* @since 5.0.0
*/
public function getStringFromOption($option, $question, $required = true): string
{
$answer = (string) $this->cliInput->getOption($option);
while (!$answer && $required) {
$answer = (string) $this->ioStyle->ask($question);
}
if (!$required) {
$answer = (string) $this->ioStyle->ask($question);
}
return $answer;
}
/**
* Configure the IO.
*
* @param InputInterface $input The input to inject into the command.
* @param OutputInterface $output The output to inject into the command.
*
* @return void
*
* @since 5.0.0
*/
private function configureIO(InputInterface $input, OutputInterface $output)
{
$this->cliInput = $input;
$this->ioStyle = new SymfonyStyle($input, $output);
}
/**
* Configure the command.
*
* @return void
*
* @since 5.0.0
*/
protected function configure(): void
{
$help = "<info>%command.name%</info> will create a public folder
\nUsage: <info>php %command.full_name%</info>";
$this->addOption('public-folder', null, InputOption::VALUE_REQUIRED, 'public folder absolute path');
$this->setDescription('Create a public folder');
$this->setHelp($help);
}
}