![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/captainhook/captainhook/src/Hook/Condition/ |
<?php /** * This file is part of CaptainHook * * (c) Sebastian Feldmann <[email protected]> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace CaptainHook\App\Hook\Condition; use CaptainHook\App\Console\IO; use CaptainHook\App\Git\Diff\FilterUtil; use CaptainHook\App\Hook\Restriction; use CaptainHook\App\Hooks; use SebastianFeldmann\Git\Repository; /** * Class FileChange * * @package CaptainHook * @author Sebastian Feldmann <[email protected]> * @link https://github.com/captainhookphp/captainhook * @since Class available since Release 5.2.0 */ abstract class FileStaged extends File { /** * List of file to watch * * @var array<string> */ protected array $filesToWatch; /** * --diff-filter options * * @var array<int, string> */ protected array $diffFilter; /** * FileStaged constructor * * @param mixed $files * @param mixed $diffFilter */ public function __construct($files, $diffFilter = []) { $this->filesToWatch = is_array($files) ? $files : explode(',', (string) $files); $this->diffFilter = FilterUtil::filterFromConfigValue($diffFilter); } /** * Return the hook restriction information * * @return \CaptainHook\App\Hook\Restriction */ public static function getRestriction(): Restriction { return Restriction::fromArray([Hooks::PRE_COMMIT]); } /** * Evaluates a condition * * @param \CaptainHook\App\Console\IO $io * @param \SebastianFeldmann\Git\Repository $repository * @return bool */ abstract public function isTrue(IO $io, Repository $repository): bool; /** * Use 'diff-index --cached' to find the staged files before the commit * * @param \SebastianFeldmann\Git\Repository $repository * @return array<string> */ protected function getStagedFiles(Repository $repository): array { return $repository->getIndexOperator()->getStagedFiles($this->diffFilter); } }