Question

My rails app is set to use subdomains as described in this RailsCast:

http://railscasts.com/episodes/221-subdomains-in-rails-3

Now, I would like to add an admin subdomain to the front of my blog subdomain as follows:

admin.company.lvh.me:3000

I've tried to namespace admin outside of my Subdomain constraint:

namespace :admin, path: '/', constraints: { subdomain: 'admin' } do
  constraints(Subdomain) do
    match     '/',            to: 'blogs#show', via: 'get'
  end
end

But instead of routing through my app/controllers/admin/blogs_controller it attempts to route through my "normal user" controller (app/controllers/blogs_controller).

Am I just missing something simple or is doing something like this in rails much more difficult?

Was it helpful?

Solution

I was able to solve this, although it feels a little hackish. Understanding that Rails treats constraints either true or false, I set another constraint inside the initial subdomain constraint check. It splits the subdomain in 2 and examines the first subdomain to see if it equals "admin". If true, it routes to the admin/controllers and admin/views (because of module: "admin"), if not, it routes to the less specific routes that are not inside the "admin" module.

At first I didn't have the namespace :admin, and my route helpers were incorrect (the admin routes weren't prefixed with "admin" and the less specific routes weren't being set since they were duplicates). Once I added namespace :admin and the path: "" (this is important, too, because it removes "admin/" from the URI Pattern), it worked!

One last thing, in the admin/controllers, you have to edit the set_blog method, since "admin.company" is being interpreted instead (see admin/blogs_controller.rb).

routes.rb

Blog::Application.routes.draw do
  constraints(Subdomain) do
    namespace :admin, module: "admin", path: "", constraints: lamda { |r| r.subdomain.split('.')[0] == 'admin' } do
      match '/', to: 'blogs#show', via: 'get'
      ...
    end

    match '/', to: 'blogs#show', via: 'get'
    ...
  end
  ...
end

Rake Routes:

Prefix Verb URI Pattern Controller#Action
 admin GET  /   admin/blogs#show
 ...

​ GET / blogs#show ...

admin/blogs_controller.rb

BlogController < ApplicationController
  before_action :set_blog
  ...
  private
    set_blog
      @blog = Blog.find_by_subdomain!(request.subdomain.split('.')[1])
    end
end

Let me know if there's anything cleaner out there, if not, hopefully this helps others with this issue.

OTHER TIPS

There are several important factors here

Firstly, you'll need to see what the constraint params look like with "multi" subdomains. Instead of splitting, Rails may have admin.company as the subdomain

If we take the idea that Rails will split the subdomains into two, which one is being called as the "parent"?

namespace :admin, path: '/', constraints: { subdomain: 'admin' } do
  constraints(Subdomain) do
    resources :blogs, only: :show, path_names: { show: "" }
  end
end

If you give us some more info on the request (params etc), we'll be in a much better position to help!

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top