%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/public_html/admin1/vendor/phpro/grumphp/src/Task/ |
Upload File : |
<?php
declare(strict_types=1);
namespace GrumPHP\Task;
use GrumPHP\Collection\FilesCollection;
use GrumPHP\Exception\RuntimeException;
use GrumPHP\Linter\Yaml\YamlLinter;
use GrumPHP\Runner\TaskResult;
use GrumPHP\Runner\TaskResultInterface;
use GrumPHP\Task\Context\ContextInterface;
use GrumPHP\Task\Context\GitPreCommitContext;
use GrumPHP\Task\Context\RunContext;
use Symfony\Component\OptionsResolver\OptionsResolver;
/**
* @extends AbstractLinterTask<YamlLinter>
*/
class YamlLint extends AbstractLinterTask
{
/**
* @var YamlLinter
*/
protected $linter;
public static function getConfigurableOptions(): OptionsResolver
{
$resolver = parent::getConfigurableOptions();
$resolver->setDefaults([
'object_support' => false,
'exception_on_invalid_type' => false,
'parse_constant' => false,
'parse_custom_tags' => false,
'whitelist_patterns' => [],
]);
$resolver->addAllowedTypes('object_support', ['bool']);
$resolver->addAllowedTypes('exception_on_invalid_type', ['bool']);
$resolver->addAllowedTypes('parse_constant', ['bool']);
$resolver->addAllowedTypes('parse_custom_tags', ['bool']);
$resolver->addAllowedTypes('whitelist_patterns', ['array']);
return $resolver;
}
public function canRunInContext(ContextInterface $context): bool
{
return $context instanceof GitPreCommitContext || $context instanceof RunContext;
}
public function run(ContextInterface $context): TaskResultInterface
{
/** @var array $config */
$config = $this->getConfig()->getOptions();
$whitelistPatterns = $config['whitelist_patterns'];
$extensions = '/\.(yaml|yml)$/i';
/** @var FilesCollection $files */
$files = $context->getFiles()->name($extensions);
if (\count($whitelistPatterns)) {
$files = $context->getFiles()->paths($whitelistPatterns)->name($extensions);
}
if (0 === \count($files)) {
return TaskResult::createSkipped($this, $context);
}
$this->linter->setObjectSupport($config['object_support']);
$this->linter->setExceptionOnInvalidType($config['exception_on_invalid_type']);
$this->linter->setParseCustomTags($config['parse_custom_tags']);
$this->linter->setParseConstants($config['parse_constant']);
try {
$lintErrors = $this->lint($files);
} catch (RuntimeException $e) {
return TaskResult::createFailed($this, $context, $e->getMessage());
}
if ($lintErrors->count()) {
return TaskResult::createFailed($this, $context, (string) $lintErrors);
}
return TaskResult::createPassed($this, $context);
}
}