Skip to content

4rm/RUAlertbot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rutgers Snoo

RUAlertbot

RUAlertbot is a reddit bot that automatically posts RU Alerts to the Rutgers subreddit /r/rutgers. It can be found at /u/RU_Alert_bot.

Flask (0.12.1) micro web framework for Python
FreeDNS free subdomain and dynamic DNS hosting
ngrok (2.2.4) tunneling service for localhost
PRAW (4.4.0) Python Reddit Api Wrapper
Twilio (5.7.0) cloud communications platform
uWSGI (2.0.15) application server container
nginx (1.6.2) configured as a reverse proxy for uWSGI

To receive text messages from Twilio, the localhost server of the host PC needs to be exposed to the public.

Webhooks

The primary webhook is currently being supplied by ngrok (pronounced "en-grok").

ngrok

Using the command ./ngrok http -subdomain=xxxx 5000 ngrok can be launched on port 5000 at subdomain xxxx.ngrok.io. This is the link Twilio will listen on.

Free DNS is the secondary webhook in case of ngrok becoming unreachable. It is a bit slower than ngrok because two redirects are needed, but it is reliable enough to safely be used as backup.

In order to utilize the FreeDNS service, it requires that three things be set up: a subdomain that points to our full public IP address (no port), a subdomain that points to the previous subdomain (with port), and a dynamic DNS service.

FreeDNS Domains

The first domain subdomain1.domain.com is a type A DNS record that points to a "hard coded IP address" (explanations of DNS record types here). A type A DNS record allows dynamic updates, which will be discussed later. Unfortunately, this domain doesn't point to the open port 5000, which is required.

This is where the second domain comes in. A type CNAME DNS record, which points to a URL, must be set up. In our case we take the first DNS record and append the port we want, so we point to http://subdomain1.domain.com:5000/. What this allows us to do is access port 5000 on whatever public IP address we set the initial subdomain to. This is necessary because the public IP address of the server is likely to change as it is dynamic and not static.

In order to dynamically update the IP address that the type A DNS record points to, a command can be added to crontab. (Windows and Mac systems have dynamic DNS programs available here). After installing wget, the following command is appended to crontab with crontab -e.

3,8,13,18,23,28,33,38,43,48,53,58 * * * * sleep 52 ; wget --no-check-certificate -O - https://freedns.afraid.org/dynamic/update.php?********************************* >> /tmp/freedns_subdomain1_domain_com.log 2>&1 &

The URL needed can be found at the Dynamic DNS Update URLs page on FreeDNS.

In order to check that it's working, one can run cat /tmp/freedns_subdomain1_domain_com.log. If the IP address has not changed, the crontab output should look similar to the following:

crontab example

Now, even when the public IP address changes, the crontab script should update the freeDNS IP automatically.

RUAlertbot currently runs off a Raspberry Pi 3 Model B. It is connected to my home network via a wired connection, but there is currently no backup option in the event of a power or internet loss.

When Rutgers sends out an alert message, it is first received on my cellphone. The message is then forwarded to RUAlertbot's Twilio number to start the program. This is unfortunately necessary as Twilio does not support receiving messages from short code numbers. Rutgers alerts are sent from various short codes and as a result, Twilio cannot read them if they are send directly to the Twilio number. If the message is received and sent from my phone, however, then Twilio can read the message as it's been sent by a personal, 9-digit, phone number. I would like to eliminate my phone from the process as it's a large point of weakness, but at the moment I'm unsure about how to go about it.

In order to make sure that RUAlertbot will continue to run after a power or internet outage, an executable shell script, myscript.sh, is set to run at every boot that will launch the necessary programs. This was achieved by adding the following to rc.local:

cd /home/pi/Desktop
./myscript.sh
exit 0

In myscript.sh, the following is written to launch the necessary scripts into separate "tmux sessions"

#!/bin/bash
cd /home/pi/Downloads
sudo -u pi tmux new-session -d -s ngrok './ngrokLoop.sh'
cd /home/pi/Desktop/WEBSERVER
sudo -u pi tmux new-session -d -s 'RUAlertBot Webservers' './wsgiLoop.sh'
sudo -u pi tmux join-pane -h -s ngrok -t 'RUAlertBot Webservers'
sudo -u pi tmux ls

Thus, upon every reboot, wsgiLoop.sh and ngrokLoop.sh will run in their own separate session under the pi username. Within each shell script is a loop that makes sure the program will continue to run in case of error, e.g.

#!/bin/bash
while  true
do
        python3.5 RUAlerts.py
        sleep 1
done

With the tmux session launcher myscript.sh and the various loop scripts, RUAlertbot should continue to run after a power failure or fatal program error.

For stability, Flask is not suitable to run our webserver longterm (using Flask left the server unresponsive after a few days, but this is not Flask's fault). To make sure the server stays running, we can use uWSGI to handle requests. The main program still creates a Flask object, but uWSGI is used to run it. In order for uWSGI to see our program, however, we need to create an entry point (named wsgi.py)

from RUAlertBot import app as application

if __name__ == "__main__":
    application.run(host="0.0.0.0")

This lets our flask object begin to interact with uWSGI. For more configuration options, we create an .ini file, RUAlertBot.ini

[uwsgi]
module=wsgi
master=true
processes=5
socket=RUAlertBot.sock
chmod-socket=666
vacuum=true
die-on-term=true

As long as this .ini file is in the same directory as our WSGI application, it should be used whenever launching our webserver.

Because we're using a socket, and not a specific port, we need to configure nginx as a reverse proxy for uWSGI. To do this, after installing nginx, we must go to /etc/nginx/sites-available and create a file named RUAlertBot. In it, we tell nginx where to direct our requests.

server {
    listen 5000;
    server_name localhost;

    location / {
            include uwsgi_params;
            uwsgi_pass unix:///home/pi/Desktop/WEBSERVER/RUAlertBot.sock;
    }
}

Additionally, we must edit the default file in /etc/nginx/sites-available to listen on port 5000, because we aren't using the default 80. We only need to edit the first few lines to reflect this.

[...]
server {
    listen 5000 default_server;
    listen [::]:5000 default_server;
[...]

Now we need to link our new RUAlertBot file to default, so we run sudo ln -s /etc/nginx/sites-available/RUAlertBot /etc/nginx/sites-enabled. Run sudo nginx -t to make sure the config files are set properly, and then run sudo service nginx restart to put the changes into effect.

Now, in order to launch RUAlertbot, we just need to run uwsgi RUAlertBot.ini, and our server should begin running. We can check by going to localhost:5000/hello in our browser, or by checking the appropriate ngrok or FreeDNS domains.

  • Alan Shreve, ngrok Founder, for granting custom domain permissions for free
  • Joshua Anderson, FreeDNS Founder, for being extremely helpful and for keeping FreeDNS free

Please do not rely on this bot for RUAlerts. Sign up to receive them yourself here. I am not an experienced coder and the bot is likely to run into issues.

Contact: [email protected]

About

Reddit bot that posts RU Alerts

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages