Sutto / rocket_pants

API building tools on top of ActionController. Also, an awesome name.
MIT License
981 stars 130 forks source link

Rails4 - How to inherit from RocketPants::Base correctly? #122

Closed suramai closed 9 years ago

suramai commented 9 years ago

I am trying to create API for my Rails app. I have these following controllers.

I have the following inheritance

/app/controllers/api/api_controller.rb

module Api
  class ApiController < ApplicationController
  # logic

/app/controllers/api/home_page_controller.rb

class Api::HomePageController < Api::ApiController
   # logic

/app/controllers/api/users_controller.rb

class Api::UsersController < Api::ApiController
   # logic

/app/controllers/api/sessions_controller.rb

class Api::SessionsController < Api::ApiController
   # logic

/app/controllers/application_controller.rb

class ApplicationController < ActionController::Base
   # logic

When I try to inherit from RocketPants::Base like the following as mentioned in https://github.com/Sutto/rocket_pants

/app/controllers/api/api_controller.rb

module Api
  class ApiController < RocketPants::Base
    skip_before_filter :verify_authenticity_token

    protect_from_forgery with: :null_session
     # logic

I get (undefined method `protect_from_forgery' for Api::ApiController:Class)error like this

Started POST "/api/sessions" for 104.155.204.133 at 2015-04-21 22:59:56 +0000 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"

ActionController::RoutingError (undefined method protect_from_forgery' for Api::ApiController:Class): app/controllers/api/api_controller.rb:11:inclass:ApiController' app/controllers/api/api_controller.rb:2:in <module:Api>' app/controllers/api/api_controller.rb:1:in<top (required)>' app/controllers/api/sessions_controller.rb:2:in `<top (required)>'

Rendered /usr/local/rvm/gems/ruby-2.1.4/gems/web-console-2.0.0.beta4/lib/action_dispatch/templates/rescues/_trace.html.erb (3.6ms) Rendered /usr/local/rvm/gems/ruby-2.1.4/gems/web-console-2.0.0.beta4/lib/action_dispatch/templates/routes/_route.html.erb (40.7ms) Rendered /usr/local/rvm/gems/ruby-2.1.4/gems/web-console-2.0.0.beta4/lib/action_dispatch/templates/routes/_table.html.erb (19.0ms) Rendered /usr/local/rvm/gems/ruby-2.1.4/gems/web-console-2.0.0.beta4/lib/action_dispatch/templates/rescues/routing_error.html.erb within rescues/layout (266.2ms) 104.155.204.133 - - [21/Apr/2015:22:59:57 +0000] "POST /api/sessions HTTP/1.1" 404 97164 1.1316 I have added the gem and executed bundle install.

Gemfile

gem 'rocket_pants', '~> 1.10.0'

Can someone kindly guide me how to add rocketpants?

Sutto commented 9 years ago

Hey there,

Since we don't use the full rails stack, you can remove the skip_before_filter and protect_from_forgery lines from your controller, as we don't support them.

suramai commented 9 years ago

Thank you very much. The errors are gone.