Vladnet47 / Nike-Monitor

Nike online store API monitor that notifies Discord channel about newly released products

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Nike-Monitor

Table of Contents


Description

Sneaker resale has become very saturated, so many resellers are starting to use bots. Whereas a bot finds and purchases the desired sneakers for you, a monitor simply notifies a Discord/Slack channel whenever the sneaker is released.

Arguably, this is more ethical *tries to defend this creation*, since the purchasing is still done by a human. This won't compete with a working bot, but it's better than nothing.


How it Works

A typical monitor makes a request to an API endpoint on an online store, retrieves a list of products, and posts them as notifications to Discord/Slack.

The core principle is the same, but this monitor is more advanced.

Under the hood, it is actually multiple monitors, each one sending requests through a different proxy. This was done to maximize speed, since network latency and eventual consistency of the API endpoint makes a single monitor fairly inconsistent.

However, duplicating the entire monitor is inefficient, so it is partitioned into independent modules that are separated by pipelines. Each module receives some data, performs a specific task, and sends it to a pipeline without worrying about what happens next. This way, you can scale each portion of the microsystem based on demand, following scalability principles.

Every module in the system exists in it's own Docker container, allowing simple scalability with docker compose. Scalability with Kubernetes was considered, but it was not required for such a small system.

The following diagram shows the main modules in the system: the monitor, validator, and the notifier.



Each module performs a different task.

  • The monitor sends a request to the Nike API, retrieves a list of products, and sends each product to the first pipeline.
  • The validator reads from the first pipeline and ensures that the product has required information. Next, it checks the product against a local database to remove duplicate notifications. If a notification has not yet been made, it sends the product to the second pipeline.
  • The notifier reads from the second pipeline and sends a formatted notification to Discord.

Since each pipeline may have different loads, the system can be scaled to something like this:



There are a few modules that never scale, namely the backend and the management api.

  • The backend is responsible for launching the PostgreSQL database and the RabbitMQ message broker, or pipeline. Both the database and the pipeline are mounted to local folders on the host machine, meaning no data is lost (even if containers go down).
  • The management api allows dynamic addition of Webhooks to the database, which identify Discord channels to send the notifications to.

Here is the final, all-inclusive diagram of the system:



Helpful Links

RabbitMQ

PostgreSQL

Docker

Docker-compose

Kubernetes

Scalability Principles

About

Nike online store API monitor that notifies Discord channel about newly released products


Languages

Language:Python 95.1%Language:Dockerfile 2.9%Language:Shell 2.0%