Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/vendor/magento/framework/Filesystem/Filter/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/framework/Filesystem/Filter/ExcludeFilter.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

namespace Magento\Framework\Filesystem\Filter;

/**
 * Filters Iterator to exclude specified files
 */
class ExcludeFilter extends \FilterIterator
{
    /**
     * Array that is used for filtering
     *
     * @var array
     */
    protected $_filters;

    /**
     * Constructor
     *
     * @param \Iterator $iterator
     * @param array $filters list of files to skip
     */
    public function __construct(\Iterator $iterator, array $filters)
    {
        parent::__construct($iterator);
        $this->_filters = $filters;
    }

    /**
     * Check whether the current element of the iterator is acceptable
     *
     * @return bool
     */
    #[\ReturnTypeWillChange]
    public function accept()
    {
        $current = str_replace('\\', '/', $this->current()->__toString());
        $currentFilename = str_replace('\\', '/', $this->current()->getFilename());

        if ($currentFilename == '.' || $currentFilename == '..') {
            return false;
        }

        foreach ($this->_filters as $filter) {
            $filter = $filter !== null ? str_replace('\\', '/', $filter) : '';
            if (false !== strpos($current, $filter)) {
                return false;
            }
        }

        return true;
    }
}