Class: GeographicAreasController

Inherits:
ApplicationController show all
Includes:
DataControllerConfiguration::SharedDataControllerConfiguration
Defined in:
app/controllers/geographic_areas_controller.rb

Constant Summary

Constants included from ProjectsHelper

ProjectsHelper::CLASSIFIER, ProjectsHelper::CLASSIFIER_ANNOTATION

Instance Method Summary collapse

Methods included from DataControllerConfiguration::SharedDataControllerConfiguration

#set_is_shared_data_model

Methods included from RedirectHelper

#destroy_redirect

Methods included from RequestType

#json_request?

Methods included from LogRecent

#log_user_recent_route

Methods included from Cookies

#digest_cookie, #digested_cookie_exists?

Methods included from Whitelist

#whitelist_constantize

Methods included from ProjectsHelper

#cumulative_gb_per_year, #document_cumulative_gb_per_year, #document_gb_per_year, #gb_per_year, #image_cumulative_gb_per_year, #image_gb_per_year, #invalid_object, #project_classification, #project_link, #project_matches, #project_tag, #projects_list, #projects_search_form, #taxonworks_classification

Methods included from Api::Intercept

#intercept_api

Methods included from TokenAuthentication

#intercept_project, #intercept_user, #intercept_user_or_project, #project_token_authenticate, #token_authenticate

Instance Method Details

#autocompleteObject



36
37
38
39
40
41
42
# File 'app/controllers/geographic_areas_controller.rb', line 36

def autocomplete
  c = Queries::GeographicArea::Autocomplete.new(params[:term]).autocomplete
  @geographic_areas = c.sort_by{|geographic_area|
    -(geographic_area.collecting_events.where(project_id: sessions_current_project_id).count +
      geographic_area.asserted_distributions.where(project_id: sessions_current_project_id).count + (geographic_area.has_shape? && 1||0))
  }
end

#by_lat_longObject

!! Almost certain @mjy did similar somewhere else too !! GET /geographic_areas/by_lat_long.json?latitude=0.0&longitude=10.1



56
57
58
59
60
61
62
# File 'app/controllers/geographic_areas_controller.rb', line 56

def by_lat_long
  @geographic_areas = GeographicArea.find_smallest_by_lat_long(
    params.require(:latitude).to_f,
    params.require(:longitude).to_f
  )
  render action: :autocomplete
end

#display_coordinatesObject



18
19
20
21
22
# File 'app/controllers/geographic_areas_controller.rb', line 18

def display_coordinates
  @asserted_distribution = AssertedDistribution.new
  @json_coors = params.to_json
  render partial: '/asserted_distributions/quick_form'
end

#downloadObject

GET /geographic_areas/download



45
46
47
# File 'app/controllers/geographic_areas_controller.rb', line 45

def download
  send_data Export::Download.generate_csv(GeographicArea.all), type: 'text', filename: "geographic_areas_#{DateTime.now}.csv"
end

#geographic_area_paramsObject (private)



71
72
73
74
75
76
# File 'app/controllers/geographic_areas_controller.rb', line 71

def geographic_area_params
  params.require(:geographic_area).permit(
    :name, :level0_id, :level1_id, :level2_id, :parent_id,
    :geographic_area_type_id, :iso_3166_a2, :iso_3166_a3, :tdwgID,
    :data_origin)
end

#indexObject

GET /geographic_areas GET /geographic_areas.json



8
9
10
11
# File 'app/controllers/geographic_areas_controller.rb', line 8

def index
  @recent_objects = GeographicArea.updated_in_last(2.months).order(updated_at: :desc).limit(10)
  render '/shared/data/all/index'
end

#listObject



24
25
26
# File 'app/controllers/geographic_areas_controller.rb', line 24

def list
  @geographic_areas = GeographicArea.order(:id).page(params[:page])
end

#searchObject



28
29
30
31
32
33
34
# File 'app/controllers/geographic_areas_controller.rb', line 28

def search
  if params[:id].blank?
    redirect_to geographic_areas_path, alert: 'You must select an item from the list with a click or tab press before clicking show.'
  else
    redirect_to geographic_area_path(params[:id])
  end
end

#select_optionsObject

GET /geographic_areas/select_options.json



50
51
52
# File 'app/controllers/geographic_areas_controller.rb', line 50

def select_options
  @geographic_areas = GeographicArea.select_optimized(sessions_current_user_id, sessions_current_project_id, params.permit(:target)[:target])
end

#set_geographic_areaObject (private)



66
67
68
69
# File 'app/controllers/geographic_areas_controller.rb', line 66

def set_geographic_area
  @geographic_area = GeographicArea.find(params[:id])
  @recent_object = @geographic_area
end

#showObject

GET /geographic_areas/1 GET /geographic_areas/1.json



15
16
# File 'app/controllers/geographic_areas_controller.rb', line 15

def show
end