* @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:----j1xfug4W9ssUIxMfpmfflja2bHWvbtWcKUfDP9CqzjlyycYYaeBA3+2sqz7NSeKPi8zUsR5bk376TElouKIBAbB+zwqAg3A6NiyU58RdTKh4nmqHACW9OOLkZLAMuYANbLimmhL2Aa4qykUw43xFyRHdqHz3G0BOjuAcaPrHk6VAHZwr2QVlTAZcgzhv7DSKNa8mhM25h6SvjOS+LyHJ89jOKIR74lJv+K3T0QLFqTDRdwqbFLwHBh/8EokT3IjgFewOLP5bMj6iqY/k5u6+NEw6p3aix4GF1+/fZRRbELmr549/X7hvvEXzXVuUPvr4aG8OOCFzoAmsr14ZttGQHulFDiGBryKoB2T0GSAdCRtlKFJUy5dLCuHjNP4HT10z9N7tTr4Vye+mXofGfbapeW24lBHnQu2IYM3TGQv1tyeqIBwDbzaz24+oRDvmdSCGc3OnYcmgd0iQ0z2vDTA+/g+bDtxxT2jknUpGnJ6yYqLXWPRnNkLyhYDEdZ5b2QP6HS7fzaBadOpOawY1IOQDJ5Nx+tfKw9JxltFoXXbso0K3NWPC2OmmWQt6yCBoE6277tZAymZ36+SOYaxBh9ZBjel8MlDmNhHk4YhxnvoNOP+JpgphsHqgJk5yDL64Lqr2KOGN2995xuxB5j8KXbTKfFL8qNqOIwOt8gXYgTOv1TE=----ATTACHMENT:----MTQ3MTI0MzIzNDYyNTUwIDk1NzM2NTY2NjAwNjc1ODMgNTc5OTExOTA0MjA3Njg0Ng==