Skip to content

wmp8/back-ends

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ft-water-my-plants-8 api - November, 2021

REGISTER / LOGIN

User examples:

[
  {
    "username": "iamauser",
    "password": "randompassword"
  },
  {
    "username": "pambeesly",
    "password": "anotherrandompassword"
  },
  {
    "username": "dwightschrute",
    "password": "somethingrandom"
  }
]

[POST] /api/auth/signup

  • Register a new user
    • username required (must be a string | unique)
    • password required (must be a string)
    • phone required (must be a string)

What you send:

{
  "username": "iamauser",
  "password": "randompassword",
  "phone": "7131234567"
}

What you receive:

{
  "message": "You have successfully created an account with username iamauser"
}

[POST] /api/auth/login

  • Login
    • username and password required
    • returns the following:
      • message: { "Welcome back iamauser" }
      • token: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6ImlhbWF1c2VyIiwiaWF0IjoxNjM2ODYyMDY5LCJleHAiOjE2MzY5NDg0Njl9.fhVnkCzPDA5kubS1fo3mj57AEZcon267qH7dQ5Rk7rU"
      • user_id: 1

What you send:

{
  "username": "iamauser",
  "password": "randompassword"
}

What you receive:

{
  "message": "Welcome back iamauser",
  "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6ImlhbWF1c2VyIiwiaWF0IjoxNjM2ODYyMDY5LCJleHAiOjE2MzY5NDg0Njl9.fhVnkCzPDA5kubS1fo3mj57AEZcon267qH7dQ5Rk7rU",
  "user_id": 1
}

USERS

[GET] /api/users

RESTRICTED ENDPOINT

  • Get an array of users for authenticated user
    • requires valid token in authorization header to access

What you receive:

[
  {
    "phone": "7131234567",
    "user_id": 1,
    "username": "iamauser"
  },
  {
    "phone": "8321234567",
    "user_id": 2,
    "username": "iamausertoo"
  }
]

[GET] /api/users/:user_id

RESTRICTED ENDPOINT

  • Get information for a specific user
    • requires valid token in authorization header to access

What you receive:

{
  "phone": "7131234567",
  "user_id": 1,
  "username": "iamauser"
}

[PUT] /api/users/update

RESTRICTED ENDPOINT

  • Update authenticated user's phone number or password
    • requires valid token in authorization header to access

What you send:

{
  "phone": 2811234567,
  "password": "newrandompassword"
}

What you receive:

{
  "message": "Your submission has been updated"
}

PLANTS

[GET] /api/plants/

RESTRICTED ENDPOINT

  • Get an array of plants belong to the logged in / authenticated user
    • requires valid token in authorization header to access

What you receive:

[
  {
    "image_url": "marble-pothos.png",
    "light_requirement": "Thrives in medium to low indirect light. Not suited for intense, direct sun.",
    "nickname": "Marble Queen Pothos",
    "plant_id": 1,
    "species": "Epipremnum aureum",
    "user_id": 1,
    "water_frequency": "Water every 1-2 weeks"
  },
  {
    "image_url": "snake-plant2.png",
    "light_requirement": "Thrives in medium to bright indirect light, but can tolerate low indirect light.",
    "nickname": "Snake Plant Laurentii",
    "plant_id": 2,
    "species": "Dracaena trifasciata",
    "user_id": 1,
    "water_frequency": "Water every 2-3 weeks"
  },
  {
    "image_url": "zz.png",
    "light_requirement": "Thrives in medium to low indirect light. Can tolerate bright indirect light. Not suited for intense, direct sun.",
    "nickname": "ZZ Plant",
    "plant_id": 3,
    "species": "Zamioculcas",
    "user_id": 1,
    "water_frequency": "Water every 3-4 weeks"
  }
]

[GET] /api/plants/all

RESTRICTED ENDPOINT

  • Get an array of all plants
    • requires valid token in authorization header to access

What you receive:

[
  {
    "image_url": "marble-pothos.png",
    "light_requirement": "Thrives in medium to low indirect light. Not suited for intense, direct sun.",
    "nickname": "Marble Queen Pothos",
    "plant_id": 1,
    "species": "Epipremnum aureum",
    "user_id": 1,
    "water_frequency": "Water every 1-2 weeks"
  },
  {
    "image_url": "snake-plant2.png",
    "light_requirement": "Thrives in medium to bright indirect light, but can tolerate low indirect light.",
    "nickname": "Snake Plant Laurentii",
    "plant_id": 2,
    "species": "Dracaena trifasciata",
    "user_id": 1,
    "water_frequency": "Water every 2-3 weeks"
  },
  {
    "image_url": "zz.png",
    "light_requirement": "Thrives in medium to low indirect light. Can tolerate bright indirect light. Not suited for intense, direct sun.",
    "nickname": "ZZ Plant",
    "plant_id": 3,
    "species": "Zamioculcas",
    "user_id": 1,
    "water_frequency": "Water every 3-4 weeks"
  },
  {
    "image_url": "ech.png",
    "light_requirement": "Thrives in bright direct light, but can tolerate bright indirect light.",
    "nickname": "Echeveria",
    "plant_id": 4,
    "species": "succulents",
    "user_id": 3,
    "water_frequency": "Water every 3-4 weeks"
  }
]

[GET] /api/plants/:plant_id

RESTRICTED ENDPOINT

  • Get information for a specific plant
    • requires valid token in authorization header to access

What you receive:

{
  "image_url": "marble-pothos.png",
  "light_requirement": "Thrives in medium to low indirect light. Not suited for intense, direct sun.",
  "nickname": "Marble Queen Pothos",
  "plant_id": 1,
  "species": "",
  "user_id": 1,
  "water_frequency": "Water every 1-2 weeks"
}

[POST] /api/plants/create

RESTRICTED ENDPOINT

  • Add a new plant
    • requires valid token in authorization header to access
    • nickname required (must be a string)
    • water_frequency required (must be a string)

What you send:

{
  "image_url": "marble-pothos.png",
  "light_requirement": "Thrives in medium to low indirect light. Not suited for intense, direct sun.",
  "nickname": "Marble Queen Pothos",
  "species": "Epipremnum aureum",
  "water_frequency": "Water every 1-2 weeks"
}

What you receive:

{
  "image_url": "marble-pothos.png",
  "light_requirement": "Thrives in medium to low indirect light. Not suited for intense, direct sun.",
  "nickname": "Marble Queen Pothos",
  "plant_id": 1,
  "species": "Epipremnum aureum",
  "user_id": 1,
  "water_frequency": "Water every 1-2 weeks"
}

[PUT] /api/plants/update/:plant_id

RESTRICTED ENDPOINT

  • Update an existing plant
    • requires valid token in authorization header to access
    • nickname required (must be a string)
    • water_frequency required (must be a string)

What you send:

{
  "image_url": "marble-pothos.png",
  "light_requirement": "Thrives in medium to low indirect light. Not suited for intense, direct sun.",
  "nickname": "Marble Queen Pothos",
  "species": "Epipremnum aureum",
  "water_frequency": "Water every 1-2 weeks"
}

What you receive:

{
  "image_url": "updated-marble-pothos.png",
  "light_requirement": "Thrives in medium to low indirect light. Not suited for intense, direct sun.",
  "nickname": "Marble Queen Pothos",
  "plant_id": 1,
  "species": "Epipremnum aureum",
  "user_id": 1,
  "water_frequency": "Water every 1-2 weeks"
}

[DELETE] /api/plants/delete/:class_id

RESTRICTED ENDPOINT

  • Delete an existing plants
    • requires valid token in authorization header to send
    • required information:
      • plant_id (integer)

What you receive:

{
  "message": "Plant id 1 has been deleted"
}

Build Week Scaffolding for Node and PostgreSQL

Video Tutorial

The following tutorial explains how to set up this project using PostgreSQL and Heroku.

Setting up PostgreSQL for Build Week

Requirements

Starting a New Project

  • Create a new repository using this template, and clone it to your local.
  • Create a .env file and follow the instructions inside knexfile.js.
  • Fix the scripts inside package.json to use your Heroku app.

Scripts

  • start: Runs the app in production.
  • server: Runs the app in development.
  • migrate: Migrates the local development database to the latest.
  • rollback: Rolls back migrations in the local development database.
  • seed: Truncates all tables in the local development database, feel free to add more seed files.
  • test: Runs tests.
  • deploy: Deploys the main branch to Heroku.

The following scripts NEED TO BE EDITED before using: replace YOUR_HEROKU_APP_NAME

  • migrateh: Migrates the Heroku database to the latest.
  • rollbackh: Rolls back migrations in the Heroku database.
  • databaseh: Interact with the Heroku database from the command line using psql.
  • seedh: Runs all seeds in the Heroku database.

Hot Tips

  • Figure out the connection to the database and deployment before writing any code.

  • If you need to make changes to a migration file that has already been released to Heroku, follow this sequence:

    1. Roll back migrations in the Heroku database
    2. Deploy the latest code to Heroku
    3. Migrate the Heroku database to the latest
  • If your frontend devs are clear on the shape of the data they need, you can quickly build provisional endpoints that return mock data. They shouldn't have to wait for you to build the entire backend.

  • Keep your endpoints super lean: the bulk of the code belongs inside models and other middlewares.

  • Validating and sanitizing client data using a library is much less work than doing it manually.

  • Revealing crash messages to clients is a security risk, but during development it's helpful if your frontend devs are able to tell you what crashed.

  • PostgreSQL comes with fantastic built-in functions for hammering rows into whatever JSON shape.

  • If you want to edit a migration that has already been released but don't want to lose all the data, make a new migration instead. This is a more realistic flow for production apps: prod databases are never migrated down. We can migrate Heroku down freely only because there's no valuable data from customers in it. In this sense, Heroku is acting more like a staging environment than production.

  • If your fronted devs are interested in running the API locally, help them set up PostgreSQL & pgAdmin in their machines, and teach them how to run migrations in their local. This empowers them to (1) help you troubleshoot bugs, (2) obtain the latest code by simply doing git pull and (3) work with their own data, without it being wiped every time you roll back the Heroku db. Collaboration is more fun and direct, and you don't need to deploy as often.

About

#ft-water-my-plants-8 back-end files

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published