Re: [Rails-core] Extending controllers and models of Rails 3.2+ Engines

4,173 views
Skip to first unread message

Richard Schneeman

unread,
Jul 12, 2012, 3:46:15 PM7/12/12
to rubyonra...@googlegroups.com
For extending models (and controller methods) I use concerns:


Then you can include them in other classes or modules in your repo.



Then you can let your user know to add an `include` statement in the readme.


  class AfterSignupController < ApplicationController
    include Wicked::Wizard
Some people like to automatically add methods to ActiveRecord::Base or other similar classes, this allows them to have a dsl like `acts_as_tree` but this just pollutes the available methods, and makes me have to remember unneeded dsl when we ruby already has this type of behavior included with `include`


If you want to add methods directly to the ApplicationController of an app you can add a application_controller_helper.rb


You need to include it 

require 'opro/controllers/application_controller_helper'

then you can define a helper method for it:

  def self.include_helpers(scope)
    ActiveSupport.on_load(:action_controller) do
      include scope::ApplicationControllerHelper if defined?(scope::ApplicationControllerHelper)
    end
  end


and finally in your engine:


    initializer "opro.include_helpers" do
      Opro.include_helpers(Opro::Controllers)
    end



For extending controllers like devise i've done this:


You use the user supplied controller or fall back to a default view. 


Digging in the devise source as well can be tremendously valuable, though slightly daunting the first time or two. Let me know if you have some questions. 


-- 
Richard Schneeman

On Thursday, July 12, 2012 at 2:12 PM, Weston Platter wrote:

Is there a "Rails Way" way for extending models and controllers of rails engines?

The docs have TODO notes with no content for extending controllers and models (see 5.2 and 5.3 http://guides.rubyonrails.org/engines.html).

If there's preferred method, I would love to use it and I'll update the docs.

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Core" group.
To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-core/-/q7XpeRAheHkJ.
To post to this group, send email to rubyonra...@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-co...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-core?hl=en.

Mark McSpadden II

unread,
Jul 12, 2012, 3:49:15 PM7/12/12
to rubyonra...@googlegroups.com
There has been some work done on the edgeguides around this as well. There are a few notes scattered throughout but I believe this section is that you are looking for.


If that feels incomplete or lacking, please do contribute to make it better.

Mark McSpadden

Ryan Bigg

unread,
Jul 13, 2012, 12:00:16 AM7/13/12
to rubyonra...@googlegroups.com
We're currently discussing the best way to do this on Forem's issue #260 (https://github.com/radar/forem/pull/260). Kunal there wants to add methods to or modify the Forem::Post class, and so we're going to go with the app/decorators directory for that.

Weston Platter

unread,
Jul 13, 2012, 9:55:34 AM7/13/12
to rubyonra...@googlegroups.com
Thanks Richard for the examples. From this it seems like you don't monkey patching (Module::Class.class_eval).

Some people like to automatically add methods to ActiveRecord::Base or other similar classes, this allows them to have a dsl like `acts_as_tree` but this just pollutes the available methods, and makes me have to remember unneeded dsl when we ruby already has this type of behavior included with `include`

What's the benefit and/or difference between 
To post to this group, send email to rubyonrails-core@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-core+unsubscribe@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/rubyonrails-core?hl=en.

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Core" group.
To post to this group, send email to rubyonrails-core@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-core+unsubscribe@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/rubyonrails-core?hl=en.

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Core" group.
To post to this group, send email to rubyonrails-core@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-core+unsubscribe@googlegroups.com.

Michael Schuerig

unread,
Jul 15, 2012, 3:57:00 AM7/15/12
to rubyonra...@googlegroups.com
On Friday 13 July 2012, Weston Platter wrote:
> What's the benefit and/or difference between
> Forem's controller/model Module::Class.class_eval strategy
> Wicked Wizard ActiveSupport::Concern strategy

The first, reopening a class and defining methods, just adds new methods
by adding them to the class. If there already was a method of the same
name, it is redefined.

The later, including a concern in an existing class, adds methods by
including a module containing them. This module is inserted into the
inheritance chain just above the class itself but before any
superclasses and previously included modules. Therefore, methods defined
in such a module override those in the inheritance chain, but can access
them through super. However, methods defined in the including class
itself take precedence over those in any included module.

As such, IMO, the best way to ensure extensibility of a class is to
define its functionality in modules and have the class itself contain
barely more that a list of includes. That way, extensions can be
included from new modules while still keeping the original functionality
accessible to them. In particular, this avoids renaming methods with
alias_method_chain or similar.

Michael

--
Michael Schuerig
mailto:mic...@schuerig.de
http://www.schuerig.de/michael/

Weston Platter

unread,
Jul 19, 2012, 2:27:21 PM7/19/12
to rubyonra...@googlegroups.com
I decided to go the ActiveSupport::Concern strategy.

The reason is that a co-worker said he had done the Class.class_eval strategy
suggested by Forem/Spree (see Ryan Bigg's comment), and this would randomly
break. The basic ActiveSupport::Concern strategy looks like this.

Currently the dummy app is functional and rspec can run a simple test.

I'll continue working on the gem (Questionnaire, :branch => activesupport) and 
will be folding it into a Rails applicaiton (ccc360, :branch => rails32).

Antonio Tapiador del Dujo

unread,
Jul 20, 2012, 4:20:48 AM7/20/12
to rubyonra...@googlegroups.com
It seems pretty useful for other engines as well! Any chances to be included in Rails?

Weston Platter

unread,
Jul 22, 2012, 5:31:28 PM7/22/12
to rubyonra...@googlegroups.com
Added 2 strategies for extending Engine Models. Feedback is welcome.
To post to this group, send email to rubyonrails-core@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-core+unsubscribe@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/rubyonrails-core?hl=en.

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Core" group.
To post to this group, send email to rubyonrails-core@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-core+unsubscribe@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/rubyonrails-core?hl=en.
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Core" group.
To post to this group, send email to rubyonrails-core@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-core+unsubscribe@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/rubyonrails-core?hl=en.

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Core" group.
To post to this group, send email to rubyonrails-core@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-core+unsubscribe@googlegroups.com.

Antonio Tapiador del Dujo

unread,
Oct 1, 2012, 3:54:13 AM10/1/12
to rubyonra...@googlegroups.com
I found the time to package the decorator pattern into a gem:

http://rubygems.org/gems/rails_engine_decorators
https://github.com/atd/rails_engine_decorators

Hope it is helpful.


El 22/07/12 23:31, Weston Platter escribió:
To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-core/-/JUgMoRWK35sJ.
To post to this group, send email to rubyonra...@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-co...@googlegroups.com.

Luís Ferreira

unread,
Oct 1, 2012, 6:08:23 AM10/1/12
to rubyonra...@googlegroups.com
What if the engine's implementation was as generic as possible and relied on having an API like approach in which the app could redefine behaviour by changing just the implementation file. Here's an example:

### Engine

class UserController < Engine::ApplicationController
  def create
    ...
    @user.confirm_subscription
    ...
  end
end

class User < ActiveRecord::Base
  include  Engine::UserSubscriptions
end

module Engine
  module UserSubscriptions
    def confirm_susbscription
      blah
    end
  end
end

### App

Rewrite the User Subscriptions module not the class itself.

Maybe the example is not the best, but what do you think of this approach of having all the behaviour you want to expose in mixins and seeing changing the models or controllers as a bad smell. Does it make sense?
Cumprimentos,
Luís Ferreira



Antonio Tapiador del Dujo

unread,
Oct 1, 2012, 9:16:45 AM10/1/12
to rubyonra...@googlegroups.com
Hi Luís,

The possible cases the engine's implementation should cover are huge and indeterminable. Besides, sometimes you should wait for the engine's developers to accept or implement required changes.

The decorator pattern provides a handy, direct and neat mechanism to achieve the stuff.


El 01/10/12 12:08, Luís Ferreira escribió:

Luís Ferreira

unread,
Oct 1, 2012, 9:37:09 AM10/1/12
to rubyonra...@googlegroups.com
Yes, I understand that it is a much more flexible solution as it allows the developer to change anything. I'm just not sure that hacking away the engine is such a good policy, because if the developer does not understand the engine's code base well, he might break some things without even noticing, as he won't be running the engine's tests.

With the API aproach we kind of guarantee that it won't break anything but the functionality your changing, as well as mantaining the relevant code all in the same place.

But maybe I'm just too paranoid. :P 

The decorator seems a great improvement on where it was before, though, don't get me wrong.
Reply all
Reply to author
Forward
0 new messages