From 2b15ee9eae6a98fba871b4c587cdd8cfc1b1b48a Mon Sep 17 00:00:00 2001 From: "David T. Sadler" Date: Sat, 18 Sep 2021 12:20:59 +0100 Subject: Beginning of rewrite --- autoload.php | 14 +++++++ public/index.php | 27 +++++++++++++ src/DTS/Bookmark.php | 27 +++++++++++++ src/DTS/BookmarkRepository.php | 87 ++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 155 insertions(+) create mode 100644 autoload.php create mode 100644 public/index.php create mode 100644 src/DTS/Bookmark.php create mode 100644 src/DTS/BookmarkRepository.php diff --git a/autoload.php b/autoload.php new file mode 100644 index 0000000..cb673fa --- /dev/null +++ b/autoload.php @@ -0,0 +1,14 @@ +load(); + +if ($tag !== null) { + $bookmarks->filter($tag); +} + +$bookmarks->sort($sort === 'asc'); + +foreach ($bookmarks as $bookmark) { + echo $bookmark->url.' '.$bookmark->addedAt."
"; +} diff --git a/src/DTS/Bookmark.php b/src/DTS/Bookmark.php new file mode 100644 index 0000000..93c7a29 --- /dev/null +++ b/src/DTS/Bookmark.php @@ -0,0 +1,27 @@ +id = $id; + $this->url = $url; + $this->tag = $tag; + $this->addedAt = $addedAt; + $this->read = $read; + } +} diff --git a/src/DTS/BookmarkRepository.php b/src/DTS/BookmarkRepository.php new file mode 100644 index 0000000..deb188c --- /dev/null +++ b/src/DTS/BookmarkRepository.php @@ -0,0 +1,87 @@ +pathToRepository = $pathToRepository; + } + + public function load(): void + { + if (!is_file($this->pathToRepository) || !is_readable($this->pathToRepository)) { + throw new \Exception("Unable to locate repository {$this->pathToRepository}"); + } + + if (($fp = fopen($this->pathToRepository, 'r')) === FALSE) { + throw new \Exception("Unable to read from repository {$this->pathToRepository}"); + } + + while (($data = fgetcsv($fp)) !== FALSE) { + $this->repository[] = new Bookmark( + $data[0], // Id. + $data[1], // Url. + $data[2], // Tag. + $data[3], // Added At. + (bool)$data[4], // Read. + ); + } + + fclose($fp); + } + + public function sort(bool $asc = true): BookmarkRepository + { + usort($this->repository, function ($a, $b) use ($asc) { + return $asc ? $a->addedAt <=> $b->addedAt + : $b->addedAt <=> $a->addedAt; + }); + + return $this; + } + + public function filter(string $tag): BookmarkRepository + { + $this->repository = array_filter( + $this->repository, + fn($bookmark) => $bookmark->tag === $tag + ); + + return $this; + } + + public function current(): mixed + { + return $this->repository[$this->position]; + } + + public function key(): mixed + { + return $this->position; + } + + public function next(): void + { + ++$this->position; + } + + public function rewind(): void + { + $this->position = 0; + } + + public function valid(): bool + { + return isset($this->repository[$this->position]); + } +} -- cgit v1.2.3-13-gbd6f