/sweater_weather

Turing School of Software & Design / Back-End Engineering Module 3 final project

Primary LanguageRuby

Sweater Weather

Sweater Weather is the final solo project for Turing School's Mod 3. The purpose for this app is to provide the front-end the data needed for the views. It consumes the Google Map Geocoding, OpenWeather and Unsplash APIs to return JSON API 1.0 compliant data to the front end. You can test the Sweater Weather's endpoints locally by following the instructions here.

Table of Contents

About

Sweater Weather is a Ruby on Rails API built to provide data to the frontend. We were given a wireframe designed by the front-end, and instructed to expose all endpoints we determined we would need.

Learning Goals:

  • refactoring
  • serializers
  • consuming APIs
  • exposing APIs
  • authentication
  • password encryption

Built with:

  • Ruby: 2.5.1
  • PostgreSQL: 12.2
  • Rails: 6.0.3
  • Bcrypt (password encryption)
  • fast_jsonapi

Testing framework

  • RSpec
  • Capybara
  • Simplecov
  • Shoulda-matchers
  • Pry (For debugging)

Getting Started

To get a local copy up and running follow these simple steps.

Installation

  1. Clone the repo
git clone git@github.com:PaulDebevec/sweater_weather.git
  1. Install the Gem File
bundle install
  1. Create your environment
rails db:create
rails db:migrate
  1. Install Figaro
figaro install
  1. Visit the Google API, OpenWeather and Unsplash site to retrieve your API keys. The keys must be stored securely in the application.yml file of your app/config directory.
WEATHER_API_KEY: <YOUR OPEN WEATHER API KEY>
GOOGLE_API_KEY: <YOUR GOOGLE API KEY>

UNSPLASH_API_KEY: <YOUR UNSPLASH API KEY>
UNSPLASH_SECRET: <YOUR UNSPLASH SECRET>

ZOMATO_API_KEY: <YOUR ZOMATO API KEY>

Testing

  1. Install RSpec
bundle install rspec
  1. Require webmock in the spec_helper.rb file
require 'webmock/rspec'
  1. Include the vcr config block in the rails_helper.rb file:
require 'vcr'
require 'webmock/rspec'

VCR.configure do |config|
  config.cassette_library_dir = 'spec/cassettes'
  config.hook_into :webmock
  config.configure_rspec_metadata!
  config.allow_http_connections_when_no_cassette = true
  config.filter_sensitive_data('<WEATHER-API-KEY>') {ENV['WEATHER_API_KEY']}
  config.filter_sensitive_data('<GOOGLE_API_KEY>') {ENV['GOOGLE_API_KEY']}
  config.filter_sensitive_data('<UNSPLASH-API-KEY>') {ENV['UNSPLASH_API_KEY']}
  config.filter_sensitive_data('<UNSPLASH-SECRET>') {ENV['UNSPLASH_SECRET']}
end
  1. Run the test suite from the root directory of the repository
rspec

Sweater Weather Endpoints

Retrieve a background picture for a specific location:

GET api/v1/backgrounds?location=<location_name_here>

Expected response:

{
    "data": {
        "id": 23723,
        "type": "background",
        "attributes": {
            "url": "image_link_here"
        }
    }
}

Retrieve weather forecast for a specific location:

GET api/v1/forecast?location=<location_name>

Expected response:

{:data=>
  {:id=>"1",
   :type=>"forecast_info",
   :attributes=>
    {:id=>1,
     :today_forecast=>
      {:hourly_weather=>
        {:hourly_weather=>
          [{:time=>"8:00 PM", :temp=>55.81},
           {:time=>"9:00 PM", :temp=>54.32},
           {:time=>"10:00 PM", :temp=>53.71},
           {:time=>"11:00 PM", :temp=>52.54},
           {:time=>"12:00 AM", :temp=>50.38},
           {:time=>"1:00 AM", :temp=>49.41},
           {:time=>"2:00 AM", :temp=>46.36},
           {:time=>"3:00 AM", :temp=>46.15}]},
       :description=>"light rain",
       :location=>"Berthoud, Colorado",
       :temp_average=>55.81,
       :temp_high=>55.81,
       :temp_low=>51.53,
       :feels_like=>35.96,
       :humidity=>54,
       :visibility=>10,
       :uv_index=>8.96,
       :sunrise=>"05:30 AM",
       :sunset=>"08:28 PM"},
     :weekly_forecast=>
      {:daily_notes=>
        [{:day=>"Monday", :description=>"Rain", :precipitation_mm=>2, :temp_high=>55.81, :temp_low=>51.53},
         {:day=>"Tuesday", :description=>"Rain", :precipitation_mm=>1, :temp_high=>68.86, :temp_low=>47.84},
         {:day=>"Wednesday", :description=>"Clouds", :precipitation_mm=>0, :temp_high=>77.92, :temp_low=>46.6},
         {:day=>"Thursday", :description=>"Clear", :precipitation_mm=>0, :temp_high=>82.9, :temp_low=>51.4},
         {:day=>"Friday", :description=>"Clear", :precipitation_mm=>0, :temp_high=>91.44, :temp_low=>55.11},
         {:day=>"Saturday", :description=>"Rain", :precipitation_mm=>0, :temp_high=>93.13, :temp_low=>60.31},
         {:day=>"Sunday", :description=>"Clouds", :precipitation_mm=>0, :temp_high=>90.45, :temp_low=>60.3}]}}}}

Register a new user:

POST api/v1/users?email=<email_address_here>&password=<password_here>&password_confirmation=<confirmation_password_here>

Expected response:

{:data=>{:id=>"195", :type=>"users", :attributes=>{:email=>"whatever@example.com", :api_key=>"6e5da00f3e4119b1d114c685908916d8"}}}

Login a registered user:

POST api/v1/sessions?email=<email_address_here>&password=<password_here>

Expected response:

{:data=>{:id=>"196", :type=>"users", :attributes=>{:email=>"whatever@example.com", :api_key=>"jij342lmk1oj5klj234KNLMn34kmKM436"}}}

Returns road trip information for a registered user:

POST api/v1/road_trip?origin=<origin_here>&destination=<destination_here>&api_key=<api_key_here>

Expected response:

{:data=>
  {:id=>"42",
   :type=>"road_trip_info",
   :attributes=>{:origin=>"Denver, CO, USA", :destination=>"Pueblo, CO, USA", :travel_time=>"1 hour 48 mins", :forecast=>{:weather=>{:temp=>65.57, :description=>"clear sky"}}}}}