Sha256: 42b91d9418a7401d6743cb13295adea64c27885033838dec2be403d5efc257b0

Contents?: true

Size: 1.28 KB

Versions: 57

Compression:

Stored size: 1.28 KB

Contents

require_dependency "ishapi/application_controller"

##
## @deprecated, use Ishapi::LocationsController
##
class Ishapi::MapsController < Ishapi::ApplicationController
  before_action :check_profile, only: [ :show ]

  def show
    if 'self' == params[:slug] # @TODO: constantize _vp_ 2023-01-11
      @location = ::Gameui::Map.where( slug: @current_profile[:email] ).first
    else
      @location   = ::Gameui::Map.where( slug: params[:slug] ).first
      @location ||= ::Gameui::Map.find params[:slug]
    end
    @map = @location.map || @location

    authorize! :show, @map

    @newsitems = @location.newsitems.page( params[:newsitems_page] ).per( @location.newsitems_page_size )

    @markers = @map.markers.permitted_to(@current_profile).order_by(ordering: :asc)
    # case @map.ordering_type
    # when ::Gameui::Map::ORDERING_TYPE_ALPHABETIC
    #   @markers = @markers.order_by( name: :asc )
    # when ::Gameui::Map::ORDERING_TYPE_CUSTOM
    #   @markers = @markers.order_by( ordering: :asc )
    # end

    if @map.is_premium && !@current_profile.has_premium_purchase( @map )
      render 'show_restricted'
    else
      render 'show'
    end
  end

  def show_marker
    @marker = ::Gameui::Marker.find_by slug: params[:slug]
    authorize! :show, @marker
    render json: @marker
  end

end

Version data entries

57 entries across 57 versions & 1 rubygems

Version Path
ishapi-0.1.8.316 app/controllers/ishapi/maps_controller.rb
ishapi-0.1.8.315 app/controllers/ishapi/maps_controller.rb
ishapi-0.1.8.314 app/controllers/ishapi/maps_controller.rb
ishapi-0.1.8.313 app/controllers/ishapi/maps_controller.rb
ishapi-0.1.8.312 app/controllers/ishapi/maps_controller.rb
ishapi-0.1.8.310 app/controllers/ishapi/maps_controller.rb
ishapi-0.1.8.309 app/controllers/ishapi/maps_controller.rb
ishapi-0.1.8.308 app/controllers/ishapi/maps_controller.rb
ishapi-0.1.8.307 app/controllers/ishapi/maps_controller.rb
ishapi-0.1.8.306 app/controllers/ishapi/maps_controller.rb
ishapi-0.1.8.305 app/controllers/ishapi/maps_controller.rb
ishapi-0.1.8.304 app/controllers/ishapi/maps_controller.rb
ishapi-0.1.8.303 app/controllers/ishapi/maps_controller.rb
ishapi-0.1.8.302 app/controllers/ishapi/maps_controller.rb
ishapi-0.1.8.301 app/controllers/ishapi/maps_controller.rb
ishapi-0.1.8.300 app/controllers/ishapi/maps_controller.rb
ishapi-0.1.8.298 app/controllers/ishapi/maps_controller.rb
ishapi-0.1.8.297 app/controllers/ishapi/maps_controller.rb
ishapi-0.1.8.296 app/controllers/ishapi/maps_controller.rb
ishapi-0.1.8.295 app/controllers/ishapi/maps_controller.rb