library

Website to keep track of book collections.

Stars
0
Committers
2

Library

What is Library?

Born out of my inability to stop buying books, Library is an over-engineered tool to inventory the books that I own, track which of those books I've read, and shame me into reading more of them. I've open sourced this project so that you too can visualize your collection and join me living in guilt.

Uh, Okay... But What's in This Repo?

The repo contains everything needed to run your own instance of Library including:

  1. The web directory - A frontend built in SolidJS deployed as a static site (well, static assets with data retrieved via API Gateway).
  2. The serverless directory - A series of Google Cloud Functions written in Go to manage all the CRUD operations for the site's data, which is stored in a Firestore database.
  3. The .config directory - The tooling necessary to deploy the application in full to Google Cloud by means of a Terraform configuration.

Deployment

Terraform

This repo contains a full Terraform configuration in the .config/terraform directory. This configuration sets up all the necessary Google Cloud resources including:

  1. A Cloud Storage bucket to store terraform state and build artifacts
  2. A Cloud Storage bucket in which to deploy the static site assets
  3. A Firestore database to store application data
  4. Cloud Functions that execute all the database operations
  5. An API Gateway to serve as an intermediary between the frontend and the serverless functions
  6. A Cloud Scheduler job to ping the API Gateway every ten minutes (reduces cold start times)
  7. An Auth0 client with Google OAuth integration to authenticate users. Authenticated users are the only ones allowed to add/edit data.
  8. A custom Auth0 action to limit user registration/authentication to a provided whitelist of user emails addresses.

Assumptions

CLI

The repo also has a built-in CLI tool that can be used to easily manage various operations related to building and deploying the project. This tool is included as a binary that can be started by running ./cli from the root of the project. The source for this binary is found in the .config/cli directory and the binary can be recompiled and replaced by running go build -o ../../ from that directory. Operations available via the CLI tool:

  • Prepare the cloud functions for deployment and sync those that have changed to the source bucket in Google Cloud Storage.

Roadmap

Below is list of features that may (or may not) be added to the project in the future:

  • 🚧 Ebook Tracking - Allow users to indicate the format of a given book. This allows for separate lists of print books and ebooks. Also allow users to indicate a print book's cover (softback, hardcover) or ebook vendor (ex. Kindle, Kobo, Google Play).
  • 🚧 Offline Access - Make the application installable as a progressive web app caching assets and data on users' devices and allowing them to review and manage lists when offline. Implement background data fetching to ensure that data is up to date and users have a snappy load when opening the app.
  • 📆 Enhanced Statistics - Automatically compute progress towards (or away from) the goal of reading all your books. Could show interesting stats like reading velocity, net book in-out over time, and print/digital breakdowns.
  • 📆 Augmented Author Information - Create a more robust author data structure including biographical information, awards, etc.
  • 💡 Reader Profile - A page for each reader showing their personal lists, statistics, and (potentially) collections and ratings.
  • 💡 Collections - Allow users to create collection of books based on any arbitrary criteria (ex. favorites, categories).
  • Book Ratings - Allow users to rate the books that they have read - requires reader profiles.
  • 🤔 Unowned Books - Add support for creating lists of unowned books. This item kind of cuts against the stated purpose of the application, but would allow for the creation of notional collections like wish lists or recommendations.
  • 🤔 Integrated Ebook Reader - Allow users to upload the digital books they own and read them from within the app. Should be fairly simple for PDFs, but more complex for epub and mobi files.
  • 🤔 Audiobook Tracking - Similar to ebook tracking. Probably a low-effort addition, but not a use case I personally need.
  • 🤔 Integrate 3rd Party Reading Trackers - There are many great apps for tracking the books you've read (Goodreads and StoryGraph come to mind). Library serves a similar but somewhat distinct purpose to these trackers. It would be nice to centralize the management of all this data in one place. Would require some feasibility research into the APIs these services provide.

Roadmap legend:

Icon Description
Completed
🚧 In Progress
📆 Planned
💡 Good Idea
Blocked
🤔 Under Consideration

Questions

This is pretty complicated, couldn't you do all this in a spreadsheet?

Yes.

All this infrastructure seems expensive, is it expensive?

Not really. The nice thing about the serverless approach taken by this application is that you only get billed for what you use. So long as you have a limited number of users and traffic remains reasonable, you should comfortable stay within Google's free tier. That said, it is never a bad idea to set up budgets and billing alerts so as to avoid unwelcome surprises.

Why Google Cloud? Can I deploy this to a different cloud provider?

The choice of Google Cloud was pretty much arbitrary. I'm already quiet familiar with AWS and wanted to try something different. Other cloud providers offer analogous services so in theory you could deploy to a different environment. That said, Google Cloud Function are not a drop-in replacement for AWS Lambdas or Azure Functions so the whole serverless directory would have to be refactored. Similarly, the Terraform configuration would have to be adapted to the cloud of your choosing.