SpikeHD / AmazonMonitor

Amazon price checker, item monitor and stock monitor, all shoved into a Discord bot
GNU General Public License v3.0
221 stars 38 forks source link
amazon discord discord-bot discord-js price-tracker

AmazonMonitor

Now updated for Discord.js v14 (and typescript)!

TODO

Description

AmazonMonitor is a self-hosted Discord bot designed for notifying you, or other people, about price drops and restocks on Amazon. It supports setting price limits, watching items from other countries, watching entire search queries and categories, and more.

FAQ (please read this before creating an issue. Thanks!)

Demo

https://user-images.githubusercontent.com/25207995/226811331-4b86a328-a93c-46da-98b2-737a082d3ea5.mp4

Jump to:

Requirements

Configuration

The project comes with an example configuration you can use as a base. To begin configuring the bot:

  1. Copy the config.example.json file.
  2. Rename it to config.json.
  3. Begin editing in your favorite text editor.

It may be hard to know exactly what each option does, and what you can set them to, so they are all outlined below.

prefix

This is the character, or characters, that you will begin every command with. Good examples are $ or !.

token

The token is the login information of the bot. If you don't know how to set up a bot user, refer to this guide.

minutes_per_check

The amount of minutes before each check cycle is run. A good number is around 2 or 3.

seconds_between_check

The amount of second to pause in between each item in the check cycle. This defaults to 5 seconds, which is a perfectly fine number. If you increase this, make sure you increase the minutes_per_check as well, or else check cycles may overlap and cause issues.

url_params

If you want to include a referral code or something, you can use this option to add as many as you want. You'll notice the curly braces; inside of those is where you add each parameter. An example would be something like this:

"url_params":{
  "ref":"my_ref_code",
  "tag":"my_tag"
  etc...
 }

which would produce a link that looks like this:

https://www.amazon.com/dp/B08L5R1CCC/?ref=my_ref_code&tag=my_tag

guild_item_limit

The guild item limit is used to control how many items the bot can keep track of at a time. It's hard to judge what a reasonable number is, so just keep it as low as you can.

cache_limit

This is the cache limit is the amount of items that will be watched in a category or search query. For example, if set to 10, then only the first 10 results will be tracked when watching an item with -q and -c.

required_perms

These are individual permissions, not roles, that a user must have in order to run any of the commands. You can find a reference here.

tld

A TLD, or Top-Level Domain, is the little .com or .ca of a URL. Each regional Amazon site is given a different TLD, so you can set this to your favorite country's TLD and it will grab Amazon results and data from that site. Some examples are:

* Just as a heads up, if you run the details or watch command on an item listed in a different country, it will not convert it to the correct country.

auto_cart_link

If you're the efficient type, setting this to true will make sure that the links in stock/price notifications will bring you to a page that will automatically add the item to your cart.

custom_chromium_exec

If you are on a platform that does not properly install Chromium when running npm install, you can install Chromium manually, and then set that path here. Most users can just leave this blank

debug_enabled

If set to true, the console window will spit out all kinds of information related to what it's doing, in order to give you a better understanding of what's going on in case you're having trouble.

Proxies

This is optional, but if you'd like to make use of a proxylist, you simply need to create a file named proxylist.txt in the main bot folder. Each ip/url should be separated by a new line. Each one should be formatted like so: username:password@ip:port. An example of some are listed below in the same format yours should be listed:

http://myuser:password123@127.0.0.1:12345
http://spikehd:testpass@111.22.33.456:8008
http://amazonuser:amazonpassword@26.29.66.123:2318008
etc...

Starting

To start the bot, simply open a terminal and run these commands:

To restart the bot after a config change:

Commands

Like explained before, commands can only be run with users that have the permissions in the required_perms section of the config. All examples assume a prefix of !, but, again, you can set it to whatever you want.

help

This will give you some details on each command.

search

Allows you to search for items matching a query, just like on the website. Additional actions are available once the list of items is returned, but you can refer to the information there.

details

Spits out details on an item from Amazon. Useful in conjunction with search.

watch

Adds an item, category, or search query to the watchlist.

watchlist

View your watchlist as a numbered list. Useful for unwatch.

unwatch

Remove an item from your watchlist.

Contributing

Wanna add stuff? Sweet! Issues, PRs, etc. are all welcome!