HEX
Server: Apache/2.4.65 (Debian)
System: Linux 88f31f35b0b8 6.1.0-38-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.147-1 (2025-08-02) x86_64
User: www-data (33)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/plugins/wp-rss-aggregator/v4/src/Data/MaskingDataSet.php
<?php

namespace RebelCode\Wpra\Core\Data;

use OutOfRangeException;

class MaskingDataSet extends AbstractDelegateDataSet
{
    /**
     * An array of keys mapping to booleans, where true exposes the key and false hides the key.
     *
     * @since 4.13
     *
     * @var bool[]
     */
    protected $mask;

    /**
     * The default mask value to use for keys that are not included in the mask array.
     *
     * @since 4.13
     *
     * @var bool
     */
    protected $defMask;

    /**
     * Constructor.
     *
     * @since 4.13
     *
     * @param DataSetInterface $inner   The inner data set.
     * @param bool[]           $mask    An array of keys mapping to booleans, where true exposes the key and false
     *                                  hides the key.
     * @param bool             $default The default mask value to use for keys that are not included in the mask array.
     */
    public function __construct(DataSetInterface $inner, array $mask, $default = true)
    {
        parent::__construct($inner);

        $this->mask = $mask;
        $this->defMask = $default;
    }

    /**
     * {@inheritdoc}
     *
     * @since 4.13
     */
    protected function has($key)
    {
        return $this->isExposed($key) && parent::has($key);
    }

    /**
     * {@inheritdoc}
     *
     * @since 4.13
     */
    protected function set($key, $value)
    {
       if (!$this->isExposed($key)) {
           throw new OutOfRangeException(sprintf('Cannot set masked key "%s"', $key));
       }

       parent::set($key, $value);
    }

    /**
     * {@inheritdoc}
     *
     * @since 4.13
     */
    protected function delete($key)
    {
        if (!$this->has($key)) {
            throw new OutOfRangeException(sprintf('Cannot delete masked key "%s"', $key));
        }

        parent::delete($key);
    }

    /**
     * {@inheritdoc}
     *
     * @since 4.13
     */
    public function rewind()
    {
        parent::rewind();

        $this->seekNextExposed();
    }

    /**
     * {@inheritdoc}
     *
     * @since 4.13
     */
    public function valid()
    {
        $this->seekNextExposed();

        return parent::valid();
    }

    /**
     * Checks if a key is exposed through the mask.
     *
     * @since 4.13
     *
     * @param int|string $key The key to check.
     *
     * @return bool True if the key is exposed, false if the key is hidden.
     */
    protected function isExposed($key)
    {
        return array_key_exists($key, $this->mask)
            ? $this->mask[$key] !== false
            : $this->defMask;
    }

    /**
     * Iterates forward until it an exposed key is found or until the end of iteration is reached.
     *
     * @since 4.13
     */
    protected function seekNextExposed()
    {
        while (parent::valid() && !$this->isExposed($this->key())) {
            parent::next();
        }
    }
}