. /** * Base implementation of a contextlist. * * @package core_privacy * @copyright 2018 Andrew Nicols * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ namespace core_privacy\local\request; defined('MOODLE_INTERNAL') || die(); /** * Base implementation of a contextlist used to store a set of contexts. * * @copyright 2018 Andrew Nicols * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ abstract class contextlist_base implements // Implement an Iterator to fetch the Context objects. \Iterator, // Implement the Countable interface to allow the number of returned results to be queried easily. \Countable { /** * @var array List of context IDs. * * Note: this must not be updated using set_contextids only as this * ensures uniqueness. */ private $contextids = []; /** * @var string component the frankenstyle component name. */ protected $component = ''; /** * @var int Current position of the iterator. */ protected $iteratorposition = 0; /** * Set the contextids. * * @param array $contextids The list of contexts. */ protected function set_contextids(array $contextids) { $this->contextids = array_unique($contextids); } /** * Get the list of context IDs that relate to this request. * * @return int[] */ public function get_contextids() : array { return $this->contextids; } /** * Get the complete list of context objects that relate to this * request. * * @return \context[] */ public function get_contexts() : array { $contexts = []; foreach ($this->contextids as $contextid) { // It is possible that this context has been deleted and we now have subsequent calls being made with this // contextlist. Exceptions here will stop the further processing of this component and that is why we are // doing a try catch. try { $contexts[] = \context::instance_by_id($contextid); } catch (\Exception $e) { // Remove this context. unset($this->contextids[$this->iteratorposition]); } } return $contexts; } /** * Sets the component for this contextlist. * * @param string $component the frankenstyle component name. */ protected function set_component($component) { $this->component = $component; } /** * Get the name of the component to which this contextlist belongs. * * @return string the component name associated with this contextlist. */ public function get_component() : string { return $this->component; } /** * Return the current context. * * @return \context */ public function current() { // It is possible that this context has been deleted and we now have subsequent calls being made with this // contextlist. Exceptions here will stop the further processing of this component and that is why we are // doing a try catch. try { $context = \context::instance_by_id($this->contextids[$this->iteratorposition]); } catch (\Exception $e) { // Remove this context. unset($this->contextids[$this->iteratorposition]); // Check to see if there are any more contexts left. if ($this->count()) { // Move the pointer to the next record and try again. $this->next(); $context = $this->current(); } else { // There are no more context ids left. return; } } return $context; } /** * Return the key of the current element. * * @return mixed */ public function key() { return $this->iteratorposition; } /** * Move to the next context in the list. */ public function next() { ++$this->iteratorposition; } /** * Check if the current position is valid. * * @return bool */ public function valid() { return isset($this->contextids[$this->iteratorposition]); } /** * Rewind to the first found context. * * The list of contexts is uniqued during the rewind. * The rewind is called at the start of most iterations. */ public function rewind() { $this->iteratorposition = 0; } /** * Return the number of contexts. */ public function count() { return count($this->contextids); } }