Sha256: af5da0e2a5c9b586e64e4c471e9dfb187d276f6ef09106dbdbc42e684fece79b

Contents?: true

Size: 1.69 KB

Versions: 3

Compression:

Stored size: 1.69 KB

Contents

class Comfy::Admin::Cms::SitesController < Comfy::Admin::Cms::BaseController

  skip_before_action  :load_admin_site,
                      :load_seeds

  before_action :build_site,  only: [:new, :create]
  before_action :load_site,   only: [:edit, :update, :destroy]
  before_action :authorize

  def index
    return redirect_to action: :new if ::Comfy::Cms::Site.count == 0
    @site = ::Comfy::Cms::Site.find_by_id(session[:site_id])
    @sites ||= ::Comfy::Cms::Site.all
  end

  def new
    render
  end

  def edit
    render
  end

  def create
    @site.save!
    flash[:success] = I18n.t('comfy.admin.cms.sites.created')
    redirect_to comfy_admin_cms_site_layouts_path(@site)
  rescue ActiveRecord::RecordInvalid
    flash.now[:danger] = I18n.t('comfy.admin.cms.sites.creation_failure')
    render action: :new
  end

  def update
    @site.update_attributes!(site_params)
    flash[:success] = I18n.t('comfy.admin.cms.sites.updated')
    redirect_to action: :edit, id: @site
  rescue ActiveRecord::RecordInvalid
    flash.now[:danger] = I18n.t('comfy.admin.cms.sites.update_failure')
    render action: :edit
  end

  def destroy
    @site.destroy
    flash[:success] = I18n.t('comfy.admin.cms.sites.deleted')
    redirect_to action: :index
  end

protected

  def build_site
    @site = ::Comfy::Cms::Site.new(site_params)
    @site.hostname ||= request.host.downcase
  end

  def load_site
    @site = ::Comfy::Cms::Site.find(params[:id])
    I18n.locale = ComfortableMexicanSofa.config.admin_locale || @site.locale
  rescue ActiveRecord::RecordNotFound
    flash[:danger] = I18n.t('comfy.admin.cms.sites.not_found')
    redirect_to action: :index
  end

  def site_params
    params.fetch(:site, {}).permit!
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
comfortable_mexican_sofa-2.0.2 app/controllers/comfy/admin/cms/sites_controller.rb
comfortable_mexican_sofa-2.0.1 app/controllers/comfy/admin/cms/sites_controller.rb
comfortable_mexican_sofa-2.0.0 app/controllers/comfy/admin/cms/sites_controller.rb