seandgrimes / metric_units_reddit_bot

Reddit bot converting imperial units to metric units

Home Page:https://www.reddit.com/user/metric_units

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build status

What does the bot do?

The bot finds comments with imperial units, and replies with metric units. See ./test/converter-test.js for what conversions are currently supported, and see Pivotal Tracker for what's coming up next.

There is a chance it will reply to certain triggers like "good bot". See personality-test.js for what the triggers are.

How does the code work?

This is a javascript app built with Node.js, and all of the app code is in the src directory.

The app starts in bot.js, and it polls the Reddit servers in an infinite loop. The app has two major components:

converter.js and conversion_helper.js are responsible for converting imperial units to metric units.

personality.js create sassy responses to certain trigger words

Running the code

For changes not related to networking, running tests is often enough. But if you want to see the bot hitting the Reddit servers:

  1. Create your bot's reddit account.
  2. Create a reddit script app through your reddit preferences. (Use http://localhost as your redirect url, we don't need it.)
  3. Get your OAuth username and secret
  4. Download the bot's code
  5. Create a file ./private/environment.yaml that looks like sample-environment.yaml
  6. run npm install
  7. run node ./src/bot.js
  8. You should have the bot up and running!

Note: You can run the bot in development mode (which won't POST requests to reddit servers) by changing the dev-mode environment variable to "true"

Running the tests

You do not need to create a reddit app to run the tests, you can use the sample-environment.yaml default values.

run npm test

Note: To run a single spec, add .only

Questions or Comments?

Feel free to drop by the subreddit or open a github issue

Contribute

Metric Units Bot is participating in Hacktoberfest! See a list of things we need help with and win free T-shirts! You can also take a look at what's in Pivotal Tracker or come up with your own improvements

Feedback & code reviews are always welcome.

License

This source is distributed under GNU GPLv3

Pull requests or derivative works welcome. but please don't make a freedom_units_bot just to spite me D:

About

Reddit bot converting imperial units to metric units

https://www.reddit.com/user/metric_units

License:GNU General Public License v3.0


Languages

Language:JavaScript 99.3%Language:Shell 0.7%