- We serve JSON data here, open and fresh
- We help client applications help those affeceted by Hurricane Harvey
Example Clients:
- https://sketch-city.github.io/harvey-needs/
- https://www.texasrescuemap.com/muckmap
- https://www.texasrescuemap.com
- SMS Shelter Finder at http://harveyneeds.org/
- http://oneclickrelief.com/
-
Namespaced and versioned:
/api/v1
-
Sample API for list of all shelters: https://api.harveyneeds.org/api/v1/shelters
-
Sample API for list of all shelters accepting people: https://api.harveyneeds.org/api/v1/shelters?accepting=true
Shape:
{
"shelters": [
{
"county": "Fort Bend",
"shelter": "Gallery Furniture Grand Parkway",
"address": "7227 W. Grand Parkway South",
"city": "Richmond",
"pets": "Yes, crated and kept by owner's side",
"phone": "(281) 407-7161",
"accepting": true,
"last_updated": "2017-08-30 12:50 PM",
"updated_by": "bon",
"notes": "No answer (info here by Jane at 8/29/2017 21:17:00)",
"volunteer_needs": "Open up for volunteers in the morning, 8/30th",
"longitude": "-95.7505562",
"latitude": "29.673294",
"supply_needs": "toiletries, water, juice, gatorade",
"source": "",
"needs": ["Open up for volunteers in the morning", "8/30th", "toiletries", "water","juice","gatorade"],
"updatedAt":"2017-09-01T11:26:00-05:00",
"cleanPhone":"2814077161"
},
{
"county": "Harris",
"shelter": "Gallery Furniture",
"address": "6006 N. Freeway",
"city": "Houston",
"pets": "Yes",
"phone": "(713) 694-5570",
"accepting": false,
"last_updated": "2017-08-30 12:57 PM",
"updated_by": "bon",
"notes": "No answer (info here by Claudia at 8/29 10:48am; At max capacity.)",
"volunteer_needs": "",
"longitude": "-95.396748",
"latitude": "29.854114",
"supply_needs": "trucks to move people to GRB or other shelters. ",
"source": "",
"needs": ["trucks to move people to GRB or other shelters. "],
"updatedAt":"2017-08-30T12:57:00-05:00",
"cleanPhone":"7136945570"
},
{
"county": "Harris",
"shelter": "Gallery Furniture",
"address": "6006 N. Freeway",
"city": "Houston",
"pets": "Yes",
"phone": "ring ring ring banannaphone",
"accepting": false,
"last_updated": "twelve hours before dawn",
"updated_by": "bon",
"notes": "No answer (info here by Claudia at 8/29 10:48am; At max capacity.)",
"volunteer_needs": "",
"longitude": "-95.396748",
"latitude": "29.854114",
"supply_needs": "trucks to move people to GRB or other shelters. ",
"source": "",
"needs": ["trucks to move people to GRB or other shelters. "],
"updatedAt":"baddate",
"cleanPhone":"badphone"
}
],
"meta": {
"result_count": 5,
"filters": {
"shelter": "Gallery"
}
}
}
Filters:
county
: County Nameaccepting
: true/falseshelter
: the namelat
andlon
: specify the lat / lon. We'll order by the lat/lon and return results within a 100 mile radiuslimit
: only return n results
Sample:
/api/v1/shelters?county=fort bend&accepting=true
- Filters by fort bend shelters accepting people
/api/v1/shelters?shelter=Gallery
- Filters shelters with Gallery in the name
Shape:
{
"needs": [
{
"updated_by": "Taylor",
"timestamp": "2017-08-31 12:52",
"location_name": "BBVA Compass Stadium",
"location_address": "2200 Texas Ave, Houston, TX 77003",
"longitude": "-95.351565",
"latitude": "29.752355",
"contact_for_this_location_name": "",
"contact_for_this_location_phone_number": "",
"are_volunteers_needed": true,
"tell_us_about_the_volunteer_needs": "Need volunteers to process donations, sign up through Red Cross. Friday, September 1 from 8 a.m.-8 p.m. daily. More details: https://www.houstondynamo.com/post/2017/08/30/bbva-compass-stadium-capacity-no-longer-collecting-donations-storm-relief",
"are_supplies_needed": false,
"tell_us_about_the_supply_needs": "No longer taking donations",
"anything_else_you_would_like_to_tell_us": ""
}
],
"meta": {
"result_count": 1,
"filters": {
"location_name": "BBVA"
}
}
}
Filters:
supplies_needed
: truevolunteers_needed
: truelocation_name
: the namelat
andlon
: specify the lat / lon. We'll order by the lat/lon and return results within a 100 mile radiuslimit
: only return n results
Sample:
/api/v1/needs?location_name=Montgomery
- Filters by location_name
/api/v1/needs?supplies_needed=true
- Who needs supplies
Shows needs as an Amazon Product, ready for purchase.
Shape:
{
"products": [
{
"need": "pet items",
"asin": "B00ME73XUG",
"amazon_title": "PET FACTORY 28750 Chicken Dog Roll, 40-Pack",
"detail_url":
"https://www.amazon.com/FACTORY-28750-Chicken-Roll-40-Pack/dp/B00ME73XUG?psc=1&SubscriptionId=AKIAJ5PESCDQX7KIMQ5Q&tag=oneclickrelie-20&linkCode=xm2&camp=2025&creative=165953&creativeASIN=B00ME73XUG",
"priority": false,
"category_specific": "Rawhide",
"category_general": "Pet Supplies",
"price_in_cents": 2352,
"price": "$23.52"
}
],
"meta": {
"result_count": 247
}
}
Filters:
need
: Name of need, eg: 'baby'priority
:true
. Note: data has to be gathered to make this truelimit
: only return n resultscategory
: matching either the category_specific or category_general
Sample:
/api/v1/products?limit=2&need=baby
- Returns 1 result, only for needs with
baby
Shape:
{
"charitable_organizations": [
{
"name": "Boys and Girls Country",
"services": "Children",
"food_bank": false,
"donation_website": "https://www.boysandgirlscountry.org/donate",
"phone_number": "(281)351-4976",
"email": "info@boysandgirlscountry.org",
"physical_address": "18806 Roberts Road",
"city": "Hockley",
"state": "TX",
"zip": "77447",
"updatedAt": "2017-09-04T00:58:58.088Z"
}
],
"meta": {
"result_count": 1,
"filters": {
"city": "Hockley"
}
}
}
Filters:
food_bank
: truename
: the nameservices
: the services providedlimit
: only return n resultscity
: the organizations in a city
Sample:
/api/v1/charitable_organizations?services=schools
- Filters by services provided
/api/v1/charitable_organizations?food_bank=true
- Organizations acting as food banks
- Ruby 2.4.1
- Rails 5.1.
In rails console
you'll want to create an admin user:
User.create! email: "youremail@example.com", password: "yourpassword", admin: true
- Prequisites
- A github account and a repository into which to fork other repositories
- Steps
- Navigate in a browser to https://github.com/sketch-city/harvey-api
- Click the Fork button in the upper right of the screenshot_create-service-account-key
- If prompted choose into where you want to form (e.g., if you are a member of multiple github repositories)
- You'll now have a forked version - your own version - of the repository.
- Go to "Clone or download" button on right of screen and copy that URL. It will be of the format
git clone git@github.com:<YOUR OWN GITHUB REPOSITORY>/harvey-api.git
- In the directory on your local box in which you plan to work run:
git clone git@github.com:<YOUR OWN GITHUB REPOSITORY>/harvey-api.git
- GOOGLE_GEOCODER_API_KEY = Geocoding with Google Maps API, get one
- AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY = Product Advertising API, see below
Note: this is optional; currently only needed to fetch new Amazon products from the Amazon Product Advertising API
You'll need to set the following ENV variables in a .env file
- Make a working copy of .env by runng this command at the terminal:
cp .env.sample .env
- Get Amazon AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY from Amazon's IAM. You'll need to create a PolicyName. You can name it "ProductAdvertisingAPI" with the following policy:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "ProductAdvertisingAPI:*",
"Resource": "*"
}
]
}
-
Prerequisites
- PostgreSQL is installed and running on your local machine
-
Method 1: Automatic
- Run
rails db:setup
- Run
-
Method 2: Manual
- Create a postgres users
It's recommended though optional that you use a distinct user for the harvey-api database
- Example
createuser harvey-api_development -P
The-P
flag will prompt you to create a password for the new user
- Example
- Create the database (with the owner of the database set to user just created in the last step)
- Example
createdb -O harvey-api_development harvey-api_development
- Example
- Create a postgres users
It's recommended though optional that you use a distinct user for the harvey-api database
-
Run rails migrate to create schema
rails db:migrate
-
Import needs and shelters data from the production API:
rails api:import
Sample output if successful
Starting ImportSheltersJob 2017-09-03 18:33:03 +0000 ImportSheltersJob Complete - {285} Starting ImportNeedsJob 2017-09-03 18:33:05 +0000 ImportNeedsJob Complete - {92}
-
Test the API itself (Run API locally)
- You can load Amazon Products by seeding your database:
rails db:seed
(or doing a full importrails amazon:import
) TheActiveJob
s and associated Rake taskrails api:import
, which imports data for shelters and needs from the production API into the application database, is intended for use in development and test environments only.
DO NOT RUN THIS JOB IN PRODUCTION. Since this job pulls data from the production API, running it in production can only be counter-productive, and would likely be destructive.
Code should have tests, and any pull requests should be made only after you've made sure passes the test suite
We force pull-requests from feature branches to master. Once something lands in master, it goes live instantly
git remote add upstream git@github.com:sketch-city/harvey-api.git
git fetch upstream
Within your own forked repo create branches for each logical unit for work you do. One benefit of doing this is you'll be able to periodically sync your forked repo with upstream repo into the master branch without conflicting with work you may be doing.
When you believe your code is ready to be merged into the upstream repository (sketch-city/harvey-api) by creating a pull request. Do this by
- In github click the "Compare & pull request" button that github will present to you once you've committed changes to local repo
- Describe what you changed and why; reference the issue(s) if any that your work addresses
- More information about keeping your fork in sync with the upstream repository may be found at https://help.github.com/articles/syncing-a-fork/
- More information about branching can be found at https://git-scm.com/book/id/v2/Git-Branching-Branches-in-a-Nutshell
(Coming Soon)
Documentation such as READMEs (e.g., this document) are written in markdown per the [Github standard] (https://guides.github.com/features/mastering-markdown/)
- Hosted on Heroku with PostGres
- Uses ActiveJob (currently with sucker_punch)
- MiniTest with Rails system tests
Source Code Collaborators can be viewed: https://api.harveyneeds.org/contributors.html
But the API wouldn't mean anything without our volunteers:
- "PG::ConnectionBad" Looks like:
PG::ConnectionBad: could not connect to server: No such file or directory
Is the server running locally and accepting
connections on Unix domain socket "/tmp/.s.PGSQL.5432"?
Postgres is not running OR there is a connection problem to the database.
This system's software code is licensed under the GPLv3.
Full license availabe in LICENSE
This
work is licensed under a Creative Commons
Attribution-NonCommercial-ShareAlike 4.0 International License.