Sha256: 64a6e2f8d88497018321092ef002a703dff54725c815aba3c18fae97e4b0ff92

Contents?: true

Size: 1.98 KB

Versions: 54

Compression:

Stored size: 1.98 KB

Contents

module IshManager
  class ApplicationController < ActionController::Base
    # protect_from_forgery :with => :exception, :prepend => true
    before_action :set_current_ability
    before_action :set_changelog
    check_authorization
    rescue_from ::CanCan::AccessDenied, :with => :access_denied

    def home
      authorize! :home, IshManager::Ability
      render 'home'
    end

    #
    # private
    #
    private

    def set_changelog
      @version = Gem.loaded_specs['ish_manager'].version.to_s
    end

    def set_current_ability
      @current_ability ||= ::IshManager::Ability.new( current_user )
    end

    def set_lists
      @sites_list = Site.all.list
      @cities_list = City.all.list
      @venues_list = Venue.all.list
      @reports_list = Report.all.list
      @galleries_list = Gallery.all.list
      @videos_list = Video.all.list
      @user_profiles_list = IshModels::UserProfile.all.list
      @tags_list = Tag.list
    end

    def access_denied exception
      store_location_for :user, request.path
      redirect_to user_signed_in? ? root_path : Rails.application.routes.url_helpers.new_user_session_path, :alert => exception.message
    end

    def pp_errors err
      err
    end

    def puts! a, b=''
      puts "+++ +++ #{b}"
      puts a.inspect
    end

    def update_profile_pic
      return unless params[:photo]
      @photo = Photo.new :photo => params[:photo]
      @photo.user_profile = @current_user.profile
      flag = @photo.save
      @resource.profile_photo = @photo
      flagg = @resource.save
      if flag && flagg
        flash[:notice] = 'Success'
      else
        flash[:alert] = "No Luck. #{@photo.errors.messages} #{@resource.errors.messages}"
      end
      # redirect_to resource_path( @resource )
    end
    
    def resource_path resource
      case resource.class.name
      when 'City'
        city_path( resource.id )
      when 'Event'
        event_path( resource.id )
      when 'Venue'
        venue_path( resource.id )
      end
    end

  end
end

Version data entries

54 entries across 54 versions & 1 rubygems

Version Path
ish_manager-0.1.8.210 app/controllers/ish_manager/application_controller.rb
ish_manager-0.1.8.209 app/controllers/ish_manager/application_controller.rb
ish_manager-0.1.8.208 app/controllers/ish_manager/application_controller.rb
ish_manager-0.1.8.207 app/controllers/ish_manager/application_controller.rb
ish_manager-0.1.8.206 app/controllers/ish_manager/application_controller.rb
ish_manager-0.1.8.205 app/controllers/ish_manager/application_controller.rb
ish_manager-0.1.8.204 app/controllers/ish_manager/application_controller.rb
ish_manager-0.1.8.203 app/controllers/ish_manager/application_controller.rb
ish_manager-0.1.8.202 app/controllers/ish_manager/application_controller.rb
ish_manager-0.1.8.201 app/controllers/ish_manager/application_controller.rb
ish_manager-0.1.8.200 app/controllers/ish_manager/application_controller.rb
ish_manager-0.1.8.199 app/controllers/ish_manager/application_controller.rb
ish_manager-0.1.8.198 app/controllers/ish_manager/application_controller.rb
ish_manager-0.1.8.197 app/controllers/ish_manager/application_controller.rb
ish_manager-0.1.8.196 app/controllers/ish_manager/application_controller.rb
ish_manager-0.1.8.195 app/controllers/ish_manager/application_controller.rb
ish_manager-0.1.8.194 app/controllers/ish_manager/application_controller.rb
ish_manager-0.1.8.193 app/controllers/ish_manager/application_controller.rb
ish_manager-0.1.8.192 app/controllers/ish_manager/application_controller.rb
ish_manager-0.1.8.188 app/controllers/ish_manager/application_controller.rb