Giter Club home page Giter Club logo

rails-api-base's Introduction

Rails Api Base

Code Climate Test Coverage Build Status Dependency Status

Introduction

This projects aims to be:

  • An api example to discuss about Rails setup and development.
  • A basic template to start projects from it.

Specification summary:

  • RESTful api.
  • Api versioning.
  • Notes app example.
  • Patterns and good practices.
  • Users management.
  • Version expiration.
  • Internationalization.
  • Secret api key.
  • Rspec testing.
  • Setup scripts.
  • Postgres database.
  • Versions up-to-date.
  • Ruby Style Guide.
  • Json serialization

Here is its counterpart client mobile app that consumes data from this api -> android-base

Quick start

  • Install ruby version 2.3.0 and set it with your ruby environment manager (more info here).

  • Install Postgres and start the PostgreSQL server in the foreground (more info here).

  • Clone the repository and get inside it:

git clone git://github.com/jordifierro/rails-api-base.git --origin rails-api-base your-project-name
cd your-project-name
  • Rename whole project and reset README.md:
./bin/rename_project YourProjectName
  • Remove all 'note' related code (optional):
./bin/remove_notes
  • Create a postgres role to let rails manage the db:
./bin/create_psql_user yourprojectname
  • Setup the gems and databases:
./bin/setup
  • Run tests:
rspec
  • Once all tests are green, create a new remote repository and then execute this to reset the repo and push it:
./bin/reset_git https://github.com/yourusername/your-project-name.git

That's it, you can now start developing your own app!

(While developing on localhost, start mailcatcher in order to receive user confirmation and recover password emails)

gem install mailcatcher
mailcatcher

Documentation

The application itself is almost empty, it only aims to provide some basic modules, implement the structures with some patterns and give sample code. Here are the specifications:

RESTful Api

The app includes only the rails-api related modules, so it's thinner than a normal app but lacks some features (that can be manually added if required). The architecture of the api follows rails and http restful good practices such as:

  • Usage of http methods/verbs.
  • Structured endpoints.
  • Return appropriate status code.

Api Versioning

The endpoint routes and the code structure are ready to add new api versions. The version is chosen via headers['Accept'] with values like application/vnd.railsapibase.v1 to use the first version.

Notes Example Code

To provide the app sample code, it has been developed code to manage notes (like handwritten paper notes representation), composed by a title and a content. Thus, the app has the notes routes, controller, model and rspecs to work with that notes.

Its unique purpose is to be a guide of how to add new code, so it will be deleted by the bin/remove_notes shell script.

Concerns and ApiController Pattern

Code Climate

To structure the global controller features of the api, different modules have been implemented as ActiveSupport::Concern and tested using fake controllers. Those modules are included to the ApiController, which is the father controller of the rest of controllers (check this post). At the moment there are 4 modules: authentication, error handling, internationalization and version expiration (check this other). Code Climate is the service used to check that this and all the rest of the code follows good practices (you have to activate it for your project to use it).

Codeclimate can also be run locally with its CLI.

Users Management

Almost every api requires users, sessions and authentications, so this is the most important feature of this app. The chosen solution uses has_secure_password and has_secure_token with a custom implementation to handle sessions and users:

  • Create and delete users.
  • Login and logout users.
  • Authenticate users by token.
  • Confirm email with sending an email with token.
  • Reset password when forgotten with email verification.

A token is returned when the users login and it has to be set to headers['Authorization'] on later requests to authenticate them. More info about that on (this post)

Version Expiration System

To check if a version can still be used, there's a module that filters that before each method call. It will return error if the version has expired and there's also an endpoint to check the expiration date from the client (e.g.: to warn the user to update the app). If you want to set expiration date to a concrete version, simply set a integer formatted to string to ENV['LAST_EXPIRED_VERSION']. All versions equal or below the specified will send upgrade error message when asked. The system to set a warning to some versions is the same, using ENV['LAST_WARNED_VERSION'] to set the higher version that you want to warn. More info about that on (this post)

Internationalization

The app is translated to English (default language) and Spanish (just as translation example). There is a simple module that takes the locale from request.env['HTTP_ACCEPT_LANGUAGE'] (that can be set throught the Accept-Languange header) and sets it to the system to automatically return the appropriate translation. More info about that on (this post)

To test that all needed translations are set for an specific language, uncomment the following line to the spec_helper.rb file, place there the target language and run rspec:

I18n.default_locale = :es

Secret Api Key

In order to add some control over the api clients, there's an secret api key verification system that can be activated to make sure that is a valid client who creates the user. To activate this service just set a value to ENV['SECRET_API_KEY']. The secret api key must be sent at headers['Authorization'] when calling create new user method.

Rspec Testing

Test Coverage Build Status

This project has been developed using TDD process and all code is tested using Rspec, following best practices guidelines defined at betterspecs.org. It's important to keep it that way. Code Climate checks that the tests cover all the code cases. Travis-CI is a continous integration system that runs the tests every time a push is made. If you want to use this services, you have to enable them at their websites. If you don't, simply delete the .travis.yml file.

Setup scripts

To avoid the burden of manually modify the code to prepare the files to start a new project, some scripts have been implemented. You can find them inside bin/ folder (they are self destroyed after use).

They have been analyzed by ShellCheck.

Postgres Database

To avoid deployment problems, Postgres database has been setup from the beginning as the database system for testing and development. The fact that Heroku uses it as its default db system has been considered too.

Latest Ruby and Gems Versions

Dependency Status

The project uses Rails 5.1.4 (API module) and Ruby 2.3.0 and intends to be kept up to date using Gemnasium service. You must activate this service for your repo if you want to use it.

Follow Ruby Style Guide

In order to increase the code elegance and readability, this Ruby Style Guide has been used as reference. Rubocop gem is a Ruby static code analizer based on that style guide. Just run:

gem install rubocop
rubocop

Remember that .rubocop.yml file defines the configuration (remove it if not used).

Json output serialization

The responses are formatted using the ActiveModelSerializers gem. Serializers are responsible to format the output json, and are a good way to decouple this layer from models and controllers. Furthermore, they are versioned like controllers (e.g.: Api::V1::Serializer) because they directly interfere with the output of each api version. This will help us keeping old version contracts.

Todo List

  • Add elements pagination.
  • Upgrade to ruby and rails latest versions.

Here is its counterpart client mobile app that consumes data from this api -> android-base

Contribute

I'm not a rails experienced developer so all suggestions and contributions are more than welcome!

  • Fork this repo.
  • Create your feature branch (git checkout -b feature-name).
  • Develop your feature and test it.
  • Run tests and code style checker successfully:
rspec
rubocop
  • Commit your changes (git commit -m 'Implement new function').
  • Push the changes (git push origin feature-name).
  • Create a pull request and I'll merge it with the project.

Contributors

Unfortunately, there are no contributors yet.


http://jordifierro.com

rails-api-base's People

Contributors

jordifierro avatar

Stargazers

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

Watchers

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

rails-api-base's Issues

Error during install rails-api-base- Your Ruby version is 1.9.3, but your Gemfile specified 2.3.0

Hi @jordifierro
I am trying to install rails-api-base but I have a probleam durring install it. I just follow below steps.

Step 1
git clone git://github.com/jordifierro/rails-api-base.git --origin rails-api-base rails_api
Step 2:

cd rails_api/

Step 3:

postgres@freeman:~/rails_api$ ./bin/rename_project rails_api
sed: can't read : No such file or directory
sed: can't read : No such file or directory
Project name changed and README.md content emptied

Step 4:

postgres@freeman:~/rails_api$ ./bin/remove_notes
Notes related code files removed

Step 5:

postgres@freeman:~/rails_api$ ./bin/create_psql_user rails_api
CREATE ROLE
ALTER ROLE

Step 6:

postgres@freeman:~/rails_api$ ./bin/setup
== Installing dependencies ==
Your Ruby version is 1.9.3, but your Gemfile specified 2.3.0
Your Ruby version is 1.9.3, but your Gemfile specified 2.3.0

== Command ["bundle install"] failed ==

I've search on the web but still not solved. Could you please take a look. Thanks you so much

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.