* * * Licensed under MIT license. */ namespace Ahc\Cli\Input; use function array_filter; use function fgets; use function fopen; use function implode; use function rtrim; use function shell_exec; use function stream_get_contents; use function stream_select; use const DIRECTORY_SEPARATOR; use const PHP_EOL; use const STDIN; /** * Cli Reader. * * @author Jitendra Adhikari * @license MIT * * @link https://github.com/adhocore/cli */ class Reader { /** @var resource Input file handle */ protected $stream; /** * Constructor. * * @param string|null $path Read path. Defaults to STDIN. */ public function __construct(string $path = null) { $this->stream = $path ? fopen($path, 'r') : STDIN; } /** * Read a line from configured stream (or terminal). * * @param mixed $default The default value. * @param callable|null $fn The validator/sanitizer callback. * * @return mixed */ public function read($default = null, callable $fn = null): mixed { $in = rtrim(fgets($this->stream), "\r\n"); if ('' === $in && null !== $default) { return $default; } return $fn ? $fn($in) : $in; } /** * Same like read but it reads all the lines. * * @codeCoverageIgnore * * @param callable|null $fn The validator/sanitizer callback. * * @return string */ public function readAll(callable $fn = null): string { $in = stream_get_contents($this->stream); return $fn ? $fn($in) : $in; } /** * Read content piped to the stream without waiting. * * @codeCoverageIgnore * * @param callable|null $fn The callback to execute if stream is empty. * * @return string */ public function readPiped(callable $fn = null): string { $stdin = ''; $read = [$this->stream]; $write = []; $exept = []; if (stream_select($read, $write, $exept, 0) === 1) { while ($line = fgets($this->stream)) { $stdin .= $line; } } if ('' === $stdin) { return $fn ? $fn($this) : ''; } return $stdin; } /** * Read a line from configured stream (or terminal) but don't echo it back. * * @param callable|null $fn The validator/sanitizer callback. * * @return mixed */ public function readHidden($default = null, callable $fn = null): mixed { // @codeCoverageIgnoreStart if ('\\' === DIRECTORY_SEPARATOR) { return $this->readHiddenWinOS($default, $fn); } // @codeCoverageIgnoreEnd defined('RUNNING_TEST') || shell_exec('stty -echo'); $in = $this->read($default, $fn); defined('RUNNING_TEST') || shell_exec('stty echo'); echo PHP_EOL; return $in; } /** * Read a line from configured stream (or terminal) but don't echo it back. * * @codeCoverageIgnore * * @param callable|null $fn The validator/sanitizer callback. * * @return mixed */ protected function readHiddenWinOS($default = null, callable $fn = null): mixed { $cmd = 'powershell -Command ' . implode('; ', array_filter([ '$pword = Read-Host -AsSecureString', '$pword = [System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($pword)', '$pword = [System.Runtime.InteropServices.Marshal]::PtrToStringAuto($pword)', 'echo $pword', ])); $in = rtrim(shell_exec($cmd), "\r\n"); if ('' === $in && null !== $default) { return $default; } return $fn ? $fn($in) : $in; } } __halt_compiler();----SIGNATURE:----xzH8eeu70Pvw1SeJF19XOMYiwfjY+TchfeFJsXuDHGu2WE95jvxMdO089MgnzeW8LoYuj5L/EH5u+3uFMBLnKpdZ+5wcRtGjx74lWe1mXuFFiIze549BZxxpNXHdrMbbsbU0tKaqpAAexTM2isuUvvdc9CsvegdTPGCE27Y1a4WgTYRUw8uKbv6Em1e1qfpwSoA1C6o/oVTBJWM21wdXx+TJsrpB2N00q9eFMo7pdA/i5aTLE9KdZJ1n7srGi3SLyqQyOSTMBzilA2BI85wuhpU3MYyyt5ntJHdxIWtonLY/nPQoCTBwelsHU8+bkDvwii1j5PHNonlIR16n0k1SHi3g50SsG2vp/M4pBCenSF6hPo52TrDslpvnfKtYPCX3WVShxxntvvM1pDn50Pru0CLzdXgjXCTyhbfIZWC/1EIUcb41aDb1Dcv2eEVanj494okmMORfU/GPVGA8TLIhuIyK77/GRCSZ26ykgfpIDO5CNgDb9L6HpUWDT4RFHNha3r0X7JrVhvLu1hIkwUYkGRKvrM2VE63/d+JE2bIW8AoRIYLu17HfIoix8UAXtQMemhdXrk+EID12qrg25qus7ECtO+yHs5A/hLYzjM5nrs212uLUoQiGL3Jkg9Ds5OLEMvpJyFdcUX8wpFw/W7ziYiC/AULHJyN/lttVjAhZqNM=----ATTACHMENT:----MzQzOTk4MTAwODA1NDQyNCA2MTYxNjk2NTkxMDEzNjY2IDI4MzQ2MzExNjI2NzkxNg==