123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222 |
- <?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\OutputInterface;
- use Symfony\Component\Console\Helper\HelperSet;
- /**
- * The Input/Output helper.
- *
- * @author François Pluchino <francois.pluchino@opendisplay.com>
- * @author Jordi Boggiano <j.boggiano@seld.be>
- */
- class ConsoleIO implements IOInterface
- {
- protected $input;
- protected $output;
- protected $helperSet;
- protected $authorizations = array();
- protected $lastMessage;
- /**
- * 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;
- }
- /**
- * {@inheritDoc}
- */
- public function isInteractive()
- {
- return $this->input->isInteractive();
- }
- /**
- * {@inheritDoc}
- */
- public function isDecorated()
- {
- return $this->output->isDecorated();
- }
- /**
- * {@inheritDoc}
- */
- public function isVerbose()
- {
- return (bool) $this->input->getOption('verbose');
- }
- /**
- * {@inheritDoc}
- */
- public function write($messages, $newline = true)
- {
- $this->output->write($messages, $newline);
- $this->lastMessage = join($newline ? "\n" : '', (array) $messages);
- }
- /**
- * {@inheritDoc}
- */
- public function overwrite($messages, $newline = true, $size = null)
- {
- // 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($this->lastMessage));
- }
- // ...let's fill its length with backspaces
- $this->write(str_repeat("\x08", $size), false);
- // write the new message
- $this->write($messages, false);
- $fill = $size - strlen(strip_tags($messages));
- if ($fill > 0) {
- // whitespace whatever has left
- $this->write(str_repeat(' ', $fill), false);
- // move the cursor back
- $this->write(str_repeat("\x08", $fill), false);
- }
- if ($newline) {
- $this->write('');
- }
- $this->lastMessage = $messages;
- }
- /**
- * {@inheritDoc}
- */
- public function ask($question, $default = null)
- {
- return $this->helperSet->get('dialog')->ask($this->output, $question, $default);
- }
- /**
- * {@inheritDoc}
- */
- public function askConfirmation($question, $default = true)
- {
- return $this->helperSet->get('dialog')->askConfirmation($this->output, $question, $default);
- }
- /**
- * {@inheritDoc}
- */
- public function askAndValidate($question, $validator, $attempts = false, $default = null)
- {
- return $this->helperSet->get('dialog')->askAndValidate($this->output, $question, $validator, $attempts, $default);
- }
- /**
- * {@inheritDoc}
- */
- public function askAndHideAnswer($question)
- {
- // handle windows
- if (defined('PHP_WINDOWS_VERSION_BUILD')) {
- $exe = __DIR__.'\\hiddeninput.exe';
- // handle code running from a phar
- if ('phar:' === substr(__FILE__, 0, 5)) {
- $tmpExe = sys_get_temp_dir().'/hiddeninput.exe';
- copy($exe, $tmpExe);
- $exe = $tmpExe;
- }
- $this->write($question, false);
- $value = rtrim(shell_exec($exe));
- $this->write('');
- // clean up
- if (isset($tmpExe)) {
- unlink($tmpExe);
- }
- return $value;
- }
- // 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->write($question, false);
- $readCmd = ($shell === 'csh') ? 'set mypassword = $<' : 'read mypassword';
- $command = sprintf("/usr/bin/env %s -c 'stty -echo; %s; stty echo; echo \$mypassword'", $shell, $readCmd);
- $value = rtrim(shell_exec($command));
- $this->write('');
- return $value;
- }
- // not able to hide the answer, proceed with normal question handling
- return $this->ask($question);
- }
- /**
- * {@inheritDoc}
- */
- public function getAuthorizations()
- {
- return $this->authorizations;
- }
- /**
- * {@inheritDoc}
- */
- public function hasAuthorization($repositoryName)
- {
- $auths = $this->getAuthorizations();
- return isset($auths[$repositoryName]);
- }
- /**
- * {@inheritDoc}
- */
- public function getAuthorization($repositoryName)
- {
- $auths = $this->getAuthorizations();
- return isset($auths[$repositoryName]) ? $auths[$repositoryName] : array('username' => null, 'password' => null);
- }
- /**
- * {@inheritDoc}
- */
- public function setAuthorization($repositoryName, $username, $password = null)
- {
- $this->authorizations[$repositoryName] = array('username' => $username, 'password' => $password);
- }
- }
|