123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330 |
- <?php
- /*
- * This file is part of Composer.
- *
- * (c) Nils Adermann <naderman@naderman.de>
- * Jordi Boggiano <j.boggiano@seld.be>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Composer\IO;
- use Symfony\Component\Console\Input\InputInterface;
- use Symfony\Component\Console\Output\ConsoleOutputInterface;
- use Symfony\Component\Console\Output\OutputInterface;
- use Symfony\Component\Console\Helper\HelperSet;
- use Symfony\Component\Console\Question\ConfirmationQuestion;
- use Symfony\Component\Console\Question\Question;
- use Symfony\Component\Process\ExecutableFinder;
- /**
- * The Input/Output helper.
- *
- * @author François Pluchino <francois.pluchino@opendisplay.com>
- * @author Jordi Boggiano <j.boggiano@seld.be>
- */
- class ConsoleIO extends BaseIO
- {
- protected $input;
- protected $output;
- protected $helperSet;
- protected $lastMessage;
- protected $lastMessageErr;
- private $startTime;
- /**
- * Constructor.
- *
- * @param InputInterface $input The input instance
- * @param OutputInterface $output The output instance
- * @param HelperSet $helperSet The helperSet instance
- */
- public function __construct(InputInterface $input, OutputInterface $output, HelperSet $helperSet)
- {
- $this->input = $input;
- $this->output = $output;
- $this->helperSet = $helperSet;
- }
- public function enableDebugging($startTime)
- {
- $this->startTime = $startTime;
- }
- /**
- * {@inheritDoc}
- */
- public function isInteractive()
- {
- return $this->input->isInteractive();
- }
- /**
- * {@inheritDoc}
- */
- public function isDecorated()
- {
- return $this->output->isDecorated();
- }
- /**
- * {@inheritDoc}
- */
- public function isVerbose()
- {
- return $this->output->getVerbosity() >= OutputInterface::VERBOSITY_VERBOSE;
- }
- /**
- * {@inheritDoc}
- */
- public function isVeryVerbose()
- {
- return $this->output->getVerbosity() >= 3; // OutputInterface::VERSOBITY_VERY_VERBOSE
- }
- /**
- * {@inheritDoc}
- */
- public function isDebug()
- {
- return $this->output->getVerbosity() >= 4; // OutputInterface::VERBOSITY_DEBUG
- }
- /**
- * {@inheritDoc}
- */
- public function write($messages, $newline = true)
- {
- $this->doWrite($messages, $newline, false);
- }
- /**
- * {@inheritDoc}
- */
- public function writeError($messages, $newline = true)
- {
- $this->doWrite($messages, $newline, true);
- }
- /**
- * @param array $messages
- * @param boolean $newline
- * @param boolean $stderr
- */
- private function doWrite($messages, $newline, $stderr)
- {
- if (null !== $this->startTime) {
- $memoryUsage = memory_get_usage() / 1024 / 1024;
- $timeSpent = microtime(true) - $this->startTime;
- $messages = array_map(function ($message) use ($memoryUsage, $timeSpent) {
- return sprintf('[%.1fMB/%.2fs] %s', $memoryUsage, $timeSpent, $message);
- }, (array) $messages);
- }
- if (true === $stderr && $this->output instanceof ConsoleOutputInterface) {
- $this->output->getErrorOutput()->write($messages, $newline);
- $this->lastMessageErr = join($newline ? "\n" : '', (array) $messages);
- return;
- }
- $this->output->write($messages, $newline);
- $this->lastMessage = join($newline ? "\n" : '', (array) $messages);
- }
- /**
- * {@inheritDoc}
- */
- public function overwrite($messages, $newline = true, $size = null)
- {
- $this->doOverwrite($messages, $newline, $size, false);
- }
- /**
- * {@inheritDoc}
- */
- public function overwriteError($messages, $newline = true, $size = null)
- {
- $this->doOverwrite($messages, $newline, $size, true);
- }
- /**
- * @param array $messages
- * @param boolean $newline
- * @param integer $size
- * @param boolean $stderr
- */
- private function doOverwrite($messages, $newline, $size, $stderr)
- {
- if (true === $stderr && $this->output instanceof ConsoleOutputInterface) {
- $output = $this->output->getErrorOutput();
- } else {
- $output = $this->output;
- }
- // messages can be an array, let's convert it to string anyway
- $messages = join($newline ? "\n" : '', (array) $messages);
- // since overwrite is supposed to overwrite last message...
- if (!isset($size)) {
- // removing possible formatting of lastMessage with strip_tags
- $size = strlen(strip_tags($stderr ? $this->lastMessageErr : $this->lastMessage));
- }
- // ...let's fill its length with backspaces
- $this->doWrite(str_repeat("\x08", $size), false, $stderr);
- // write the new message
- $this->doWrite($messages, false, $stderr);
- $fill = $size - strlen(strip_tags($messages));
- if ($fill > 0) {
- // whitespace whatever has left
- $this->doWrite(str_repeat(' ', $fill), false, $stderr);
- // move the cursor back
- $this->doWrite(str_repeat("\x08", $fill), false, $stderr);
- }
- if ($newline) {
- $this->doWrite('', true, $stderr);
- }
- if ($stderr) {
- $this->lastMessageErr = $messages;
- } else {
- $this->lastMessage = $messages;
- }
- }
- /**
- * {@inheritDoc}
- */
- public function ask($question, $default = null)
- {
- $output = $this->output;
- if ($output instanceof ConsoleOutputInterface) {
- $output = $output->getErrorOutput();
- }
- /** @var \Symfony\Component\Console\Helper\QuestionHelper $helper */
- $helper = $this->helperSet->get('question');
- $question = new Question($question, $default);
- return $helper->ask($this->input, $output, $question);
- }
- /**
- * {@inheritDoc}
- */
- public function askConfirmation($question, $default = true)
- {
- $output = $this->output;
- if ($output instanceof ConsoleOutputInterface) {
- $output = $output->getErrorOutput();
- }
- /** @var \Symfony\Component\Console\Helper\QuestionHelper $helper */
- $helper = $this->helperSet->get('question');
- $question = new ConfirmationQuestion($question, $default);
- return $helper->ask($this->input, $output, $question);
- }
- /**
- * {@inheritDoc}
- */
- public function askAndValidate($question, $validator, $attempts = null, $default = null)
- {
- $output = $this->output;
- if ($output instanceof ConsoleOutputInterface) {
- $output = $output->getErrorOutput();
- }
- /** @var \Symfony\Component\Console\Helper\QuestionHelper $helper */
- $helper = $this->helperSet->get('question');
- $question = new Question($question, $default);
- $question->setValidator($validator);
- $question->setMaxAttempts($attempts);
- return $helper->ask($this->input, $output, $question);
- }
- /**
- * {@inheritDoc}
- */
- public function askAndHideAnswer($question)
- {
- // handle windows
- if (defined('PHP_WINDOWS_VERSION_BUILD')) {
- $finder = new ExecutableFinder();
- // use bash if it's present
- if ($finder->find('bash') && $finder->find('stty')) {
- $this->writeError($question, false);
- $value = rtrim(shell_exec('bash -c "stty -echo; read -n0 discard; read -r mypassword; stty echo; echo $mypassword"'));
- $this->writeError('');
- return $value;
- }
- // fallback to hiddeninput executable
- $exe = __DIR__.'\\hiddeninput.exe';
- // handle code running from a phar
- if ('phar:' === substr(__FILE__, 0, 5)) {
- $tmpExe = sys_get_temp_dir().'/hiddeninput.exe';
- // use stream_copy_to_stream instead of copy
- // to work around https://bugs.php.net/bug.php?id=64634
- $source = fopen(__DIR__.'\\hiddeninput.exe', 'r');
- $target = fopen($tmpExe, 'w+');
- stream_copy_to_stream($source, $target);
- fclose($source);
- fclose($target);
- unset($source, $target);
- $exe = $tmpExe;
- }
- $this->writeError($question, false);
- $value = rtrim(shell_exec($exe));
- $this->writeError('');
- // clean up
- if (isset($tmpExe)) {
- unlink($tmpExe);
- }
- return $value;
- }
- if (file_exists('/usr/bin/env')) {
- // handle other OSs with bash/zsh/ksh/csh if available to hide the answer
- $test = "/usr/bin/env %s -c 'echo OK' 2> /dev/null";
- foreach (array('bash', 'zsh', 'ksh', 'csh') as $sh) {
- if ('OK' === rtrim(shell_exec(sprintf($test, $sh)))) {
- $shell = $sh;
- break;
- }
- }
- if (isset($shell)) {
- $this->writeError($question, false);
- $readCmd = ($shell === 'csh') ? 'set mypassword = $<' : 'read -r mypassword';
- $command = sprintf("/usr/bin/env %s -c 'stty -echo; %s; stty echo; echo \$mypassword'", $shell, $readCmd);
- $value = rtrim(shell_exec($command));
- $this->writeError('');
- return $value;
- }
- }
- // not able to hide the answer, proceed with normal question handling
- return $this->ask($question);
- }
- }
|