Sha256: 24f2d387280c0dadf125bd96cfaf9fb645793a3391452889e18dfaae3f35e366

Contents?: true

Size: 1.81 KB

Versions: 4

Compression:

Stored size: 1.81 KB

Contents

class Manage::UsersController < Manage::BaseController
  inherit_resources
  defaults :route_prefix => 'manage'
  
  load_and_authorize_resource  
  
  before_filter :make_filter, :only=>[:index]
  before_filter :check_params, :only => [:create, :update]
  
  cache_sweeper :user_sweeper, :only=>[:update, :destroy]
  
  def create
    @user = User.new(params[:user])
    @user.roles_attributes = @roles
    create! { manage_users_path } 
  end
  
  def update
    @user.roles_attributes = @roles
    update!{ manage_users_path }
  end
  
  def destroy
    destroy!{ manage_users_path }
  end
  
  # POST /manage/users/1/activate
  def activate
    @user.confirm!    
    respond_with(@user, :location => manage_users_path)
  end
  
  # POST /manage/users/1/suspend
  def suspend
    @user.suspend! 
    respond_with(@user, :location => manage_users_path)
  end

  # POST /manage/users/1/unsuspend
  def unsuspend
    @user.unsuspend!
    respond_with(@user, :location => manage_users_path)
  end

  # POST /manage/users/1/delete
  def delete
    @user.delete!
    respond_with(@user, :location => manage_users_path)
  end
  
  protected
    
    def collection
      @users = (@users || end_of_association_chain).merge(@search.scoped).includes(:avatar).page(params[:page])
    end
    
    def make_filter
      @search = Sunrise::ModelFilter.new(User, :attributes=>[:name, :email])
      @search.update_attributes(params[:search])
    end
    
    def check_params
      unless params[:user].blank?
        @roles = params[:user].delete(:roles_attributes)
        
        if params[:user][:password].blank?
          params[:user].delete(:password)
          params[:user].delete(:password_confirmation)
        end
        
        @user.accessible = :all
      end
    end
    
    def find_user
      @user = User.find(params[:id])
    end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
sunrise-core-0.1.3 app/controllers/manage/users_controller.rb
sunrise-core-0.1.2 app/controllers/manage/users_controller.rb
sunrise-core-0.1.1 app/controllers/manage/users_controller.rb
sunrise-core-0.1.0 app/controllers/manage/users_controller.rb