vote up 0 vote down star

This is bothering me. It doesn't look too DRY. What would be a better implementation? As an aside, how come this ActiveRecord finder doesn't throw an exception when record is not found, but .find does?

  def current_account
    return @account if @account
    unless current_subdomain.blank?
      @account = Account.find_by_host(current_subdomain)
    else
      @account = nil
    end
    @account
  end
flag

73% accept rate

3 Answers

vote up 3 vote down check

I would code this like

def current_account
  @account ||= current_subdomain.blank? ? nil : Account.find_by_host(current_subdomain)
end

As for the exceptions, find_by dynamic methods return nil instead of throwing an exception. If you want an exception, use the find with :conditions:

def current_account
  @account ||= current_subdomain.blank? ? nil : Account.find(:first, :conditions => {:host  => current_subdomain})
end
link|flag
vote up 5 vote down
def current_account  
  @account ||= current_subdomain && Account.find_by_host(current_subdomain)
end

If a record isn't found, the dynamic find_by methods return nil, find_by_all returns an empty array.

link|flag
+1, yours is much better than mine. – Mark A. Nicolosi Oct 21 at 17:05
But .find_by_host should not be called if current_subdomain is an empty string. And if the && fails, what will be @account be assigned? false? – Alexandre Oct 21 at 17:41
However this fails if current_subdomain is "". "" evaluates to true in boolean context. Should be !current_subdomain.blank? – EmFi Oct 21 at 20:37
vote up 0 vote down

How about:

def current_account
  @account ||= Account.find_by_host(current_subdomain) unless current_subdomain.blank?
  @account
end
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.