Ohana SMS is a Ruby on Rails application that allows people in need who lack access to the internet to find human services via SMS.
By default, Ohana SMS is able to query any Ohana API instance, but it can be modified to work with any API.
- Ruby version 2.5.7
- Rails version 5.2.0
- Testing Frameworks: MiniTest
You'll need a Ruby development environment on your computer, and a Twilio account.
If you're on a Mac, the easiest way to get up and running is to run my laptop script. On Linux, you'll need to install Build tools, Ruby with RVM, and Node.js.
Once your environment is ready to go, install the app:
git clone git@github.com:monfresh/ohana-sms.git && cd ohana-sms
bin/setup
- Sign up for a free Twilio account.
- Once logged in to your Twilio account, create a project, then visit your Project Settings page.
- Copy your AuthToken and paste it in
config/application.yml
next totwilio_auth_token
.
-
Sign in, or sign up if you don't already have a Heroku account
-
Fill in the
App Name
field with your desired name, such asohana-sms-demo
-
Scroll down and click
Deploy for Free
-
Once your app is created, go to your computer's command line and run
figaro heroku:set -e production -a your_app_name
, whereyour_app_name
is the name you chose in step 3. This will configure your Heroku app with your secret Twilio information from yourapplication.yml
. -
Go to Twilio's Messaging Services and create a new service and select
Chat Bot/Interactive 2-Way
as the Use Case. -
Under
Inbound Settings
, check theProcess Inbound Messages
checkbox and in theRequest URL
field, enterhttps://ohana-sms-demo.herokuapp.com/locations/reply
, making sure to replaceohana-sms-demo
with your actual Heroku app name. Then selectHTTP GET
from the dropdown, and clickSave
. It should look like this:
- Click on
Numbers
underConfigure
in the sidebar on the left, and buy a new Twilio number.
-
Send an SMS to your Twilio number. You should be asked to enter a ZIP code:
Hi! Please enter a 5-digit ZIP code to get started.
-
Send
94025
. You should be offered to choose a category:Please choose a category by entering its number: #1: Care, #2: Education...
-
Send
1
. You should get up to 5 results if there's a match:Here are up to 5 locations that match your search. To get more details about a location, enter its number. #1: Rosener House Adult Day Services (Peninsula Volunteers)...
If there isn't a match, you should get:
Sorry, no results found. Please try again with a different ZIP code or category.
-
Send
1
. You should get more details about Rosener House (short description, phone, and address). -
You can now send a different result number to see details about another location.
-
To reset the conversation, send
reset
(it's not case-sensitive).
If you haven't already deployed an instance of Ohana API with your own data, you'll need to do that first.
Then, all you'll need to do is set the OHANA_API_ENDPOINT
config var on
Heroku to your API's URL:
heroku config:set OHANA_API_ENDPOINT=https://your_ohana_api_url -a your_heroku_app_name
Currently, what can be translated are the greetings and instructions. The search results content, such as the Location names, or the short descriptions, are not translated. In order to translate search results, you would need to sign up for Google's paid translation service, but I have not integrated it in this app yet.
To translate the greetings and instructions, copy and paste the contents of
config/locales/en.yml
into a new file in config/locales
with a filename
corresponding to the language's two-character code, and with a .yml
extension. Then translate the text from English into your desired language.
See config/locales/es.yml
as an example. For more details, read the
Rails Internationalization Guide.
Once your translations are in place, create a new number in your Twilio account
that will be used for a particular language. Following the same instructions
as in Step 7 in the Deploy to Heroku section, add ?locale=[language_code]
to
the end of the Request URL. For example, to make your phone number use the
Spanish version of the app, your Request URL would look like this:
https://ohana-sms-demo.herokuapp.com/locations/reply?locale=es
Run tests locally with this command:
script/test
To see the actual tests, browse through the test directory.
Created by Moncef Belyamani.
Inspired by and built upon the work of Mark Silverberg.
This project is dedicated to the public domain. As stated in CONTRIBUTING:
This project is in the public domain within the United States, and copyright and related rights in the work worldwide are waived through the CC0 1.0 Universal public domain dedication.
All contributions to this project will be released under the CC0 dedication. By submitting a pull request, you are agreeing to comply with this waiver of copyright interest.