Giter VIP home page Giter VIP logo

proffy-api's Introduction

[API] Proffy

GitHub Workflow Status typescript eslint airbnb-style jest coverage MIT License PRs Welcome
Run in Insomnia}

Responsible for provide data to the web and mobile front-ends. Permit to register your class availability and subject, also count the number of teacher connected to users (get contacted by whatsapp). The app has validation and a simple versioning was made.

Table of Contents

Installing

Easy peasy lemon squeezy:

$ yarn

Or:

$ npm install

Was installed and configured the eslint and prettier to keep the code clean and patterned.

Configuring

The application uses just one database: SQLite. For the fastest setup is recommended to use docker-compose, you just need to up all services:

$ docker-compose up -d

SQLite

Store all the users, classes and connections. For more information to how to setup your database see:

You can find the application's knexfile.ts file in the root folder.

Migrations

Remember to run the SQLite database migrations:

$ yarn knex:migrate

Or:

$ npx knex migrate:latest

See more information on Knex Migrations.

.env

In this file you may configure the environment, your app's port and a url to documentation (this will be returned with error responses, see error section). Rename the .env.example in the root directory to .env then just update with your settings.

key description default
APP_PORT Port number where the app will run. 3333
NODE_ENV App environment. The knex's connection configuration used rely on the this key value, so if the environment is development the knex connection used will bedevelopment. development
APP_WEB_URL Used to create the reset password link (front-end) sent in the recover password email. http://127.0.0.1:3000
MAIL_HOST Hostname or IP address of the email provider service -
MAIL_PORT Service's port 587
MAIL_USER Username to authenticate in the email service -
MAIL_PASSWORD Password to authenticate in the email service -
JWT_SECRET A alphanumeric random string. Used to create signed tokens. -
JWT_EXPIRATION_TIME How long time will be the token valid. See jsonwebtoken repo for more information. 7d
DOCS_URL An url to docs where users can find more information about the app's internal code errors. https://github.com/DiegoVictor/proffy-api#errors-reference

For more information about the MAIL_* keys configurations see nodemailer website, since this project uses it to mail.

Usage

To start up the app run:

$ yarn dev:server

Or:

npm run dev:server

Error Handling

Instead of only throw a simple message and HTTP Status Code this API return friendly errors:

{
  "statusCode": 429,
  "error": "Too Many Requests",
  "message": "Too Many Requests",
  "code": 529,
  "docs": "https://github.com/DiegoVictor/proffy-api#errors-reference"
}

Errors are implemented with @hapi/boom. As you can see a url to error docs are returned too. To configure this url update the DOCS_URL key from .env file. In the next sub section (Errors Reference) you can see the errors code description.

Errors Reference

code message description
141 User not found Could not found the user of the class.
144 Class not found The id sent does not references an existing class in the database.
150 Unexpected error while update new classes An error ocurred during the updating/creation of the user, classes and schedules.
240 Email already in use The provided email is already used by another user.
244 User not found The id sent does not references an existing user in the database.
340 User and/or password not match User and/or password is incorrect.
344 User not exists The email sent not references an existing user in the database.
440 You can not favorite yourself You provide your own id as favorited_user_id.
444 Users not match Couldn't found one or both users, the favorited (proffy) and you (you not exists xD!).
540 Token invalid or expired The reset password JWT token is invalid or expired.
541 Token invalid or expired The login JWT token is invalid or expired.
542 Invalid token The login JWT token not contain a valid user id.
543 Token not provided The login JWT token was not sent.
544 User does not exists The provided email not references a user in the database.
529 Too Many Requests You reached at the requests limit.
550 An unexpected error while updating the user occured Was not possible to reset user password.

Pagination

All the routes with pagination returns 10 records per page, to navigate to other pages just send the page query parameter with the number of the page.

  • To get the third page of incidents:
GET http://localhost:3333/v1/classes?page=3

Link Header

Also in the headers of every route with pagination the Link header is returned with links to first, last, next and prev (previous) page.

<http://localhost:3333/v1/classes?page=7>; rel="last",
<http://localhost:3333/v1/classes?page=4>; rel="next",
<http://localhost:3333/v1/classes?page=1>; rel="first",
<http://localhost:3333/v1/classes?page=2>; rel="prev"

See more about this header in this MDN doc: Link - HTTP.

X-Total-Count

Another header returned in routes with pagination, this bring the total records amount.

Bearer Token

A few routes expect a Bearer Token in an Authorization header.

You can see these routes in the routes section.

GET http://localhost:3333/v1/classes Authorization: Bearer <token>

To achieve this token you just need authenticate through the /sessions route and it will return the token key with a valid Bearer Token.

Versioning

A simple versioning was made. Just remember to set after the host the /v1/ string to your requests.

GET http://localhost:3333/v1/classes

Routes

route HTTP Method pagination params description auth method
/sessions POST Body with user email and password. Authenticates user and return an access token.
/connections GET - Lists connections total. Bearer
/connections POST Body with user_id. Increase the number of connections. Bearer
/classes GET ✔️ week_day, subject, time, page query parameters. Lists classes available. Bearer
/classes/my-class GET - Return the logged in user's class. Bearer
/classes POST Body with class subject, cost, user user_id, whatsapp, bio and class schedule schedules.week_day, schedules.from, schedules.to. Create new class availability. Bearer
/users POST Body with user name, surname, email, password, avatar (url), whatsapp and bio. Creates a new user.
/users/:id GET id of the user. Return one user. Bearer
/users/forgot_password POST Body with email. Send forgot password email.
/users/reset_password POST Body with password, password_confirmation and token. Change user's current password.
/favorites GET ✔️ page query parameters. Lists favorited proffys. Bearer
/favorites POST Body with user_id from user that intending to be favorite. Set a proffy as favorite. Bearer

Requests

  • POST /sessions

Request body:

{
  "email": "[email protected]",
  "password": "123456"
}
  • POST /connections

Request body:

{
  "user_id": 76988
}
  • POST /classes

Request body:

{
  "user_id": 76988,
  "whatsapp": "39379976591",
  "bio": "I have been worked with PHP/Laravel and JavaScript/Node.js for +4 years. Recently I started studying ReactJs and React Native :)",
  "cost": 30,
  "subject": "Node.js",
  "schedule": [
    {
      "week_day": 0,
      "from": "10:00",
      "to": "15:00"
    },
    {
      "week_day": 4,
      "from": "7:00",
      "to": "11:00"
    }
  ]
}
  • POST /users

Request body:

{
  "name": "John",
  "surname": "Doe",
  "email": "[email protected]",
  "password": "123456",
  "avatar": "https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/1103.jpg",
  "whatsapp": "1125585262",
  "bio": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. ",
}
  • POST /users/forgot_password

Request body:

{
  "email": "[email protected]"
}
  • POST /users/reset_password

Request body:

{
  "password": "123456",
  "password_confirmation": "123456",
  "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyLCJpZCI6IjE4ZjZkNzYzLTQ1NWMtNDEwNC1iMmFlLWUwNzE2N2JhOTMwYyJ9.uqiIJHRc6wsNCBy3MVtO-hDWwvs_afIhv7adswrUas4"
}
  • POST /favorites

Request body:

{
  "user_id": 76988
}

Running the tests

Jest was the choice to test the app, to run:

$ yarn test

Or:

$ npm run test

Coverage report

You can see the coverage report inside tests/coverage. They are automatically created after the tests run.

proffy-api's People

Contributors

diegovictor avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

ricardoprotheus

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.