From c223ab602cbe7f6db7321ba547164971d63d7bcd Mon Sep 17 00:00:00 2001 From: Fbenas Date: Sun, 29 Apr 2018 22:24:25 +0100 Subject: WIP --- src/Model/Collection.php | 193 +++++++++++++++++++++++++++++++++++++++++++++++ src/Model/Menu.php | 0 src/Model/Model.php | 19 +++++ src/Model/Vendor.php | 49 ++++++++++++ 4 files changed, 261 insertions(+) create mode 100644 src/Model/Collection.php create mode 100644 src/Model/Menu.php create mode 100644 src/Model/Model.php create mode 100644 src/Model/Vendor.php (limited to 'src/Model') diff --git a/src/Model/Collection.php b/src/Model/Collection.php new file mode 100644 index 0000000..8715f07 --- /dev/null +++ b/src/Model/Collection.php @@ -0,0 +1,193 @@ + + */ +class Collection implements ArrayAccess, Iterator, Countable +{ + /** + * Raw array of models + * + * @var Model[] + */ + protected $models; + + /** + * Current index of array + * + * @var int + */ + protected $position; + + /** + * Initalise the collection + * + * @author Phil Burton + * @param $array + */ + public function __construct($array = []) + { + // Initalise Index + $this->position = 0; + + // Initalise empty array + $this->setFromArray($array); + } + + /** + * Reset array to a new array of models + * + * @author Phil Burton + * @param array $array + */ + public function setFromArray(array $array) + { + $this->models = []; + foreach ($array as $model) { + $this->models[] = $model; + } + } + + /** + * Set the offset + * Only allow values that are an instance of User + * + * @author Phil Burton + * @param mixed $offset + * @param mixed $value + */ + public function offsetSet($offset, $value) + { + if (!$value instanceof Model) { + throw new Exception( + 'Collection expects a value of type ' . Model::class . ', ' . gettype($value) . ' given' + ); + } + if (is_null($offset)) { + $this->models[] = $value; + } else { + $this->models[$offset] = $value; + } + } + + /** + * Return true if the given offset exists + * Otherwise return false + * + * @author Phil Burton + * @param mixed $offset + */ + public function offsetExists($offset) + { + return isset($this->models[$offset]); + } + + /** + * Unset a given offset + * + * @author Phil Burton + * @param mixed $offset + */ + public function offsetUnset($offset) + { + unset($this->models[$offset]); + } + + /** + * Get the value at a given offset + * + * @author Phil Burton + * @param mixed $offset + */ + public function offsetGet($offset) + { + return isset($this->models[$offset]) ? $this->models[$offset] : null; + } + + /** + * Return current user + * + * @author Phil Burton + * @return Model + */ + public function current() + { + return $this->models[$this->position]; + } + + /** + * Return true if the current index exists in user array + * Otherwise return false + * + * @author Phil Burton + * @return bool + */ + public function valid() + { + return isset($this->models[$this->position]); + } + + /** + * Reset index back to 0 + * + * @author Phil Burton + */ + public function rewind() + { + $this->position = 0; + } + + /** + * Return the current index + * + * @author Phil Burton + * @return int + */ + public function key() + { + return $this->position; + } + + /** + * Increment index by 1 + * + * @author Phil Burton + */ + public function next() + { + ++$this->position; + } + + /** + * Create and return new collection of the merged arrays from thsi and a given collection + * + * @author Phil Burton + * @param Collection $collection + * @return Collection + */ + public function merge(Collection $collection): Collection + { + return new Collection(array_merge($collection->toArray(), $this->toArray())); + } + + /** + * Return count of users + * + * @author Phil Burton + * @return int + */ + public function count(): int + { + return count($this->models); + } +} diff --git a/src/Model/Menu.php b/src/Model/Menu.php new file mode 100644 index 0000000..e69de29 diff --git a/src/Model/Model.php b/src/Model/Model.php new file mode 100644 index 0000000..99847f9 --- /dev/null +++ b/src/Model/Model.php @@ -0,0 +1,19 @@ + + */ + public function __construct() + { + // initalise Model + } +} diff --git a/src/Model/Vendor.php b/src/Model/Vendor.php new file mode 100644 index 0000000..99a95dd --- /dev/null +++ b/src/Model/Vendor.php @@ -0,0 +1,49 @@ + + * @param FileHandler $handler + * @return Collection + */ + public function loadFromFile(FileHandler $handler): Collection + { + // initalise a Vendor Collection + $collection = new Collection; + + foreach ($handler->getVendorArray() as $vendorRaw) { + $collection[] = new Vendor($vendorRaw); + } + + return $collection; + } + + /** + * Filter by input + * + * @author Phil Burton + * @param Input $input + */ + public function filterByInput(Input $input) + { + // Amend the colletion so we've filtered by the input + } +} -- cgit v1.2.3