apidae-engine-rails 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (92) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +37 -0
  5. data/app/assets/javascripts/apidae/application.js +13 -0
  6. data/app/assets/stylesheets/apidae/application.css +15 -0
  7. data/app/controllers/apidae/application_controller.rb +5 -0
  8. data/app/controllers/apidae/objects_controller.rb +62 -0
  9. data/app/controllers/apidae/selections_controller.rb +62 -0
  10. data/app/helpers/apidae/application_helper.rb +4 -0
  11. data/app/helpers/apidae/objects_helper.rb +4 -0
  12. data/app/helpers/apidae/selections_helper.rb +4 -0
  13. data/app/models/apidae/attached_file.rb +31 -0
  14. data/app/models/apidae/object.rb +217 -0
  15. data/app/models/apidae/selection.rb +89 -0
  16. data/app/models/apidae/town.rb +18 -0
  17. data/app/views/apidae/objects/_form.html.erb +73 -0
  18. data/app/views/apidae/objects/edit.html.erb +6 -0
  19. data/app/views/apidae/objects/index.html.erb +53 -0
  20. data/app/views/apidae/objects/new.html.erb +5 -0
  21. data/app/views/apidae/objects/show.html.erb +74 -0
  22. data/app/views/apidae/selections/_form.html.erb +29 -0
  23. data/app/views/apidae/selections/edit.html.erb +6 -0
  24. data/app/views/apidae/selections/index.html.erb +31 -0
  25. data/app/views/apidae/selections/new.html.erb +5 -0
  26. data/app/views/apidae/selections/show.html.erb +19 -0
  27. data/app/views/layouts/apidae/application.html.erb +14 -0
  28. data/config/routes.rb +4 -0
  29. data/db/migrate/20170512212941_create_apidae_selections.rb +11 -0
  30. data/db/migrate/20170512214641_create_apidae_objects.rb +22 -0
  31. data/db/migrate/20170512221525_create_apidae_objects_apidae_selections.rb +8 -0
  32. data/db/migrate/20170513114002_create_apidae_towns.rb +15 -0
  33. data/db/migrate/20170513114409_add_town_insee_code_to_objects.rb +5 -0
  34. data/db/migrate/20170513115401_add_pictures_data_to_objects.rb +5 -0
  35. data/db/migrate/20170513121215_create_apidae_attached_files.rb +13 -0
  36. data/db/migrate/20170513205932_rename_objects_selections_table.rb +5 -0
  37. data/lib/apidae.rb +4 -0
  38. data/lib/apidae/engine.rb +5 -0
  39. data/lib/apidae/version.rb +3 -0
  40. data/lib/tasks/apidae_tasks.rake +4 -0
  41. data/test/apidae_test.rb +7 -0
  42. data/test/controllers/apidae/objects_controller_test.rb +52 -0
  43. data/test/controllers/apidae/selections_controller_test.rb +52 -0
  44. data/test/dummy/README.rdoc +28 -0
  45. data/test/dummy/Rakefile +6 -0
  46. data/test/dummy/app/assets/javascripts/application.js +13 -0
  47. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  48. data/test/dummy/app/controllers/application_controller.rb +5 -0
  49. data/test/dummy/app/helpers/application_helper.rb +2 -0
  50. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  51. data/test/dummy/bin/bundle +3 -0
  52. data/test/dummy/bin/rails +4 -0
  53. data/test/dummy/bin/rake +4 -0
  54. data/test/dummy/bin/setup +29 -0
  55. data/test/dummy/config.ru +4 -0
  56. data/test/dummy/config/application.rb +26 -0
  57. data/test/dummy/config/boot.rb +5 -0
  58. data/test/dummy/config/database.yml +20 -0
  59. data/test/dummy/config/environment.rb +5 -0
  60. data/test/dummy/config/environments/development.rb +41 -0
  61. data/test/dummy/config/environments/production.rb +79 -0
  62. data/test/dummy/config/environments/test.rb +42 -0
  63. data/test/dummy/config/initializers/assets.rb +11 -0
  64. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  65. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  66. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  67. data/test/dummy/config/initializers/inflections.rb +16 -0
  68. data/test/dummy/config/initializers/mime_types.rb +4 -0
  69. data/test/dummy/config/initializers/session_store.rb +3 -0
  70. data/test/dummy/config/initializers/to_time_preserves_timezone.rb +10 -0
  71. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  72. data/test/dummy/config/locales/en.yml +23 -0
  73. data/test/dummy/config/routes.rb +4 -0
  74. data/test/dummy/config/secrets.yml +22 -0
  75. data/test/dummy/db/schema.rb +64 -0
  76. data/test/dummy/log/development.log +121 -0
  77. data/test/dummy/log/test.log +7 -0
  78. data/test/dummy/public/404.html +67 -0
  79. data/test/dummy/public/422.html +67 -0
  80. data/test/dummy/public/500.html +66 -0
  81. data/test/dummy/public/favicon.ico +0 -0
  82. data/test/fixtures/apidae/attached_files.yml +9 -0
  83. data/test/fixtures/apidae/objects.yml +33 -0
  84. data/test/fixtures/apidae/selections.yml +11 -0
  85. data/test/fixtures/apidae/towns.yml +15 -0
  86. data/test/integration/navigation_test.rb +8 -0
  87. data/test/models/apidae/attached_file_test.rb +9 -0
  88. data/test/models/apidae/object_test.rb +9 -0
  89. data/test/models/apidae/selection_test.rb +9 -0
  90. data/test/models/apidae/town_test.rb +9 -0
  91. data/test/test_helper.rb +21 -0
  92. metadata +227 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 522e00b9e5e5656a07b2f601908f06cd90c98fab
4
+ data.tar.gz: 31907b78ba93e58357ea76f49007be7c3f61e17b
5
+ SHA512:
6
+ metadata.gz: 0fc74354fca282cf6f9e9d1bd5c490079a8ff7e8b31bb7b197a728ce0853f0b17f16c577f4c0bcd166107d01b4dd1107b7c1e4e00b300751e89e0638f6182d0c
7
+ data.tar.gz: a322836f8fd43d501d06222dbe0af6cca651feecb77230be4c66a160c2a1133ec130915c2956f18462d484fc9df2ddfae340d9e255837f550789e48a087b9f8b
@@ -0,0 +1,20 @@
1
+ Copyright 2017 Jean-Baptiste Vilain
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,3 @@
1
+ = Apidae
2
+
3
+ This project rocks and uses MIT-LICENSE.
@@ -0,0 +1,37 @@
1
+ begin
2
+ require 'bundler/setup'
3
+ rescue LoadError
4
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
+ end
6
+
7
+ require 'rdoc/task'
8
+
9
+ RDoc::Task.new(:rdoc) do |rdoc|
10
+ rdoc.rdoc_dir = 'rdoc'
11
+ rdoc.title = 'Apidae'
12
+ rdoc.options << '--line-numbers'
13
+ rdoc.rdoc_files.include('README.rdoc')
14
+ rdoc.rdoc_files.include('lib/**/*.rb')
15
+ end
16
+
17
+ APP_RAKEFILE = File.expand_path("../test/dummy/Rakefile", __FILE__)
18
+ load 'rails/tasks/engine.rake'
19
+
20
+
21
+ load 'rails/tasks/statistics.rake'
22
+
23
+
24
+
25
+ Bundler::GemHelper.install_tasks
26
+
27
+ require 'rake/testtask'
28
+
29
+ Rake::TestTask.new(:test) do |t|
30
+ t.libs << 'lib'
31
+ t.libs << 'test'
32
+ t.pattern = 'test/**/*_test.rb'
33
+ t.verbose = false
34
+ end
35
+
36
+
37
+ task default: :test
@@ -0,0 +1,13 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
+ // or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // compiled file.
9
+ //
10
+ // Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
11
+ // about supported directives.
12
+ //
13
+ //= require_tree .
@@ -0,0 +1,15 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
+ * compiled file so the styles you add here take precedence over styles defined in any styles
10
+ * defined in the other CSS/SCSS files in this directory. It is generally better to create a new
11
+ * file per style scope.
12
+ *
13
+ *= require_tree .
14
+ *= require_self
15
+ */
@@ -0,0 +1,5 @@
1
+ module Apidae
2
+ class ApplicationController < ActionController::Base
3
+ protect_from_forgery with: :exception
4
+ end
5
+ end
@@ -0,0 +1,62 @@
1
+ require_dependency "apidae/application_controller"
2
+
3
+ module Apidae
4
+ class ObjectsController < ApplicationController
5
+ before_action :set_object, only: [:show, :edit, :update, :destroy]
6
+
7
+ # GET /objects
8
+ def index
9
+ @objects = Object.all
10
+ end
11
+
12
+ # GET /objects/1
13
+ def show
14
+ end
15
+
16
+ # GET /objects/new
17
+ def new
18
+ @object = Object.new
19
+ end
20
+
21
+ # GET /objects/1/edit
22
+ def edit
23
+ end
24
+
25
+ # POST /objects
26
+ def create
27
+ @object = Object.new(object_params)
28
+
29
+ if @object.save
30
+ redirect_to @object, notice: 'Object was successfully created.'
31
+ else
32
+ render :new
33
+ end
34
+ end
35
+
36
+ # PATCH/PUT /objects/1
37
+ def update
38
+ if @object.update(object_params)
39
+ redirect_to @object, notice: 'Object was successfully updated.'
40
+ else
41
+ render :edit
42
+ end
43
+ end
44
+
45
+ # DELETE /objects/1
46
+ def destroy
47
+ @object.destroy
48
+ redirect_to objects_url, notice: 'Object was successfully destroyed.'
49
+ end
50
+
51
+ private
52
+ # Use callbacks to share common setup or constraints between actions.
53
+ def set_object
54
+ @object = Object.find(params[:id])
55
+ end
56
+
57
+ # Only allow a trusted parameter "white list" through.
58
+ def object_params
59
+ params.require(:object).permit(:address, :apidae_id, :apidae_type, :apidae_subtype, :title, :short_desc, :contact, :long_desc, :type_data, :latitude, :longitude, :openings, :rates, :reservation)
60
+ end
61
+ end
62
+ end
@@ -0,0 +1,62 @@
1
+ require_dependency "apidae/application_controller"
2
+
3
+ module Apidae
4
+ class SelectionsController < ApplicationController
5
+ before_action :set_selection, only: [:show, :edit, :update, :destroy]
6
+
7
+ # GET /selections
8
+ def index
9
+ @selections = Selection.all
10
+ end
11
+
12
+ # GET /selections/1
13
+ def show
14
+ end
15
+
16
+ # GET /selections/new
17
+ def new
18
+ @selection = Selection.new
19
+ end
20
+
21
+ # GET /selections/1/edit
22
+ def edit
23
+ end
24
+
25
+ # POST /selections
26
+ def create
27
+ @selection = Selection.new(selection_params)
28
+
29
+ if @selection.save
30
+ redirect_to @selection, notice: 'Selection was successfully created.'
31
+ else
32
+ render :new
33
+ end
34
+ end
35
+
36
+ # PATCH/PUT /selections/1
37
+ def update
38
+ if @selection.update(selection_params)
39
+ redirect_to @selection, notice: 'Selection was successfully updated.'
40
+ else
41
+ render :edit
42
+ end
43
+ end
44
+
45
+ # DELETE /selections/1
46
+ def destroy
47
+ @selection.destroy
48
+ redirect_to selections_url, notice: 'Selection was successfully destroyed.'
49
+ end
50
+
51
+ private
52
+ # Use callbacks to share common setup or constraints between actions.
53
+ def set_selection
54
+ @selection = Selection.find(params[:id])
55
+ end
56
+
57
+ # Only allow a trusted parameter "white list" through.
58
+ def selection_params
59
+ params.require(:selection).permit(:label, :reference, :apidae_id)
60
+ end
61
+ end
62
+ end
@@ -0,0 +1,4 @@
1
+ module Apidae
2
+ module ApplicationHelper
3
+ end
4
+ end
@@ -0,0 +1,4 @@
1
+ module Apidae
2
+ module ObjectsHelper
3
+ end
4
+ end
@@ -0,0 +1,4 @@
1
+ module Apidae
2
+ module SelectionsHelper
3
+ end
4
+ end
@@ -0,0 +1,31 @@
1
+ module Apidae
2
+ class AttachedFile < ActiveRecord::Base
3
+ belongs_to :apidae_object, :class_name => 'Apidae::Object'
4
+
5
+ has_attached_file :picture,
6
+ {
7
+ :styles => {
8
+ :xlarge => ['1600x1200>', :jpg],
9
+ :large => ['1280x960>', :jpg],
10
+ :medium => ['800x600>', :jpg],
11
+ :small => ['320x240', :jpg],
12
+ :thumb => ['200x200>', :png]
13
+ },
14
+ :default_url => "/#{Rails.application.config.apidae_pictures_path}/default/logo.png",
15
+ :path => "public/#{Rails.application.config.apidae_pictures_path}/:apidae_type/:apidae_id/:basename.:extension",
16
+ :url => "/#{Rails.application.config.apidae_pictures_path}/:apidae_type/:apidae_id/:basename.:extension"
17
+ }
18
+
19
+ validates_attachment :picture, content_type: { content_type: /\Aimage\/.*\Z/ }
20
+
21
+ private
22
+
23
+ Paperclip.interpolates :apidae_type do |attachment, style|
24
+ attachment.instance.apidae_object.apidae_type.downcase
25
+ end
26
+
27
+ Paperclip.interpolates :apidae_id do |attachment, style|
28
+ attachment.instance.apidae_object.apidae_id
29
+ end
30
+ end
31
+ end
@@ -0,0 +1,217 @@
1
+ module Apidae
2
+ class Object < ActiveRecord::Base
3
+
4
+ belongs_to :town, :class_name => 'Apidae::Town', foreign_key: :town_insee_code, primary_key: :insee_code
5
+ has_many :attached_files, :class_name => 'Apidae::AttachedFile'
6
+ has_and_belongs_to_many :selections, :class_name => 'Apidae::Selection'
7
+
8
+ store :pictures_data, accessors: [:pictures], coder: JSON
9
+ store :type_data, accessors: [:categories, :themes], coder: JSON
10
+ store :contact, accessors: [:telephone, :email, :website], coder: JSON
11
+ store :address, accessors: [:address_fields], coder: JSON
12
+ store :openings, accessors: [:description, :opening_periods], coder: JSON
13
+
14
+ TYPES_DATA = {
15
+ 'ACTIVITE' => {node: :informationsActivite, subtype: :activiteType},
16
+ 'COMMERCE_ET_SERVICE' => {node: :informationsCommerceEtService, subtype: :commerceEtServiceType},
17
+ 'DEGUSTATION' => {node: :informationsDegustation, subtype: :degustationType},
18
+ 'DOMAINE_SKIABLE' => {node: :informationsDomaineSkiable, subtype: :domaineSkiableType},
19
+ 'EQUIPEMENT' => {node: :informationsEquipement, subtype: :equipementType},
20
+ 'FETE_ET_MANIFESTATION' => {node: :informationsFeteEtManifestation, subtype: :feteEtManifestationType},
21
+ 'HEBERGEMENT_COLLECTIF' => {node: :informationsHebergementCollectif, subtype: :hebergementCollectifType},
22
+ 'HEBERGEMENT_LOCATIF' => {node: :informationsHebergementLocatif, subtype: :hebergementLocatifType},
23
+ 'HOTELLERIE' => {node: :informationsHotellerie, subtype: :hotellerieType},
24
+ 'HOTELLERIE_PLEIN_AIR' => {node: :informationsHotelleriePleinAir, subtype: :hotelleriePleinAirType},
25
+ 'PATRIMOINE_CULTUREL' => {node: :informationsPatrimoineCulturel, subtype: :patrimoineCulturelType},
26
+ 'PATRIMOINE_NATUREL' => {node: :informationsPatrimoineNaturel, subtype: :patrimoineNaturelType},
27
+ 'RESTAURATION' => {node: :informationsRestauration, subtype: :restaurationType},
28
+ 'SEJOUR_PACKAGE' => {node: :informationsSejourPackage, subtype: :sejourPackageType},
29
+ 'STRUCTURE' => {node: :informationsStructure, subtype: :structureType},
30
+ 'TERRITOIRE' => {node: :informationsTerritoire, subtype: :territoireType}
31
+ }
32
+
33
+ PHONE = 201
34
+ EMAIL = 204
35
+ WEBSITE = 205
36
+
37
+
38
+ def self.import(json_dir)
39
+ result = false
40
+ if Dir.exist?(json_dir)
41
+ Dir.foreach(json_dir) do |f|
42
+ if f.end_with?('.json')
43
+ json_file = File.join(json_dir, f)
44
+ objects_json = File.read(json_file)
45
+ objects_hashes = JSON.parse(objects_json, symbolize_names: true)
46
+ objects_hashes.each do |object_data|
47
+ type_fields = TYPES_DATA[object_data[:type]]
48
+ existing_obj = Apidae::Object.find_by_apidae_id(object_data[:id])
49
+ unless existing_obj
50
+ Apidae::Object.create!(
51
+ apidae_id: object_data[:id],
52
+ apidae_type: object_data[:type],
53
+ apidae_subtype: node_value(object_data[type_fields[:node]], object_data[type_fields[:subtype]]),
54
+ title: node_value(object_data, :nom),
55
+ short_desc: node_value(object_data[:presentation], :descriptifCourt),
56
+ long_desc: node_value(object_data[:presentation], :descriptifDetaille),
57
+ contact: contact(object_data[:informations]),
58
+ address: address(object_data[:localisation][:adresse]),
59
+ town: town(object_data[:localisation][:adresse]),
60
+ latitude: latitude(object_data[:localisation]),
61
+ longitude: longitude(object_data[:localisation]),
62
+ openings: openings(object_data[:ouverture]),
63
+ rates: rates(object_data[:descriptionTarif]),
64
+ reservation: reservation(object_data[:reservation]),
65
+ type_data: object_data[type_fields[:node]],
66
+ pictures_data: pictures_urls(object_data[:illustrations])
67
+ )
68
+ end
69
+ end
70
+ end
71
+ result = true
72
+ end
73
+ result
74
+ end
75
+ end
76
+
77
+ def self.update_fields(json_dir)
78
+ result = false
79
+ if Dir.exist?(json_dir)
80
+ Dir.foreach(json_dir) do |f|
81
+ if f.end_with?('.json')
82
+ json_file = File.join(json_dir, f)
83
+ objects_json = File.read(json_file)
84
+ objects_hashes = JSON.parse(objects_json, symbolize_names: true)
85
+ objects_hashes.each do |object_data|
86
+ obj = Apidae::Object.find_by_apidae_id(object_data[:id])
87
+ if obj
88
+ yield(obj, object_data)
89
+ obj.save!
90
+ end
91
+ end
92
+ end
93
+ result = true
94
+ end
95
+ result
96
+ end
97
+ end
98
+
99
+ def self.load_pictures
100
+ Object.all.each do |obj|
101
+ if obj.apidae_attached_files.blank? && obj.pictures.any?
102
+ obj.pictures.each do |pic|
103
+ begin
104
+ attached = AttachedFile.new(apidae_object_id: id, name: pic[:name], picture: URI.parse(pic[:url]),
105
+ description: pic[:description], credits: pic[:credits])
106
+ attached.save
107
+ rescue OpenURI::HTTPError => e
108
+ puts "Could not retrieve attached picture for object #{title} - Error is #{e.message}"
109
+ end
110
+ end
111
+ end
112
+ end
113
+ end
114
+
115
+ def self.pictures_urls(pictures_array)
116
+ pics_data = []
117
+ unless pictures_array.blank?
118
+ pictures_array.select { |p| p.is_a?(Hash) && !p[:traductionFichiers].blank? }.each do |pic|
119
+ pics_data << {
120
+ name: node_value(pic, :nom),
121
+ url: pic[:traductionFichiers][0][:url],
122
+ description: node_value(pic, :legende),
123
+ credits: node_value(pic, :copyright)
124
+ }
125
+ end
126
+ end
127
+ {pictures: pics_data}
128
+ end
129
+
130
+ def self.contact(information_hash)
131
+ contact_details = {}
132
+ contact_entries = information_hash[:moyensCommunication].nil? ? [] : information_hash[:moyensCommunication]
133
+ contact_entries.each do |c|
134
+ case c[:type][:id]
135
+ when PHONE
136
+ contact_details[:telephone] = c[:coordonnees][:fr]
137
+ when EMAIL
138
+ contact_details[:email] = c[:coordonnees][:fr]
139
+ when WEBSITE
140
+ contact_details[:website] = c[:coordonnees][:fr]
141
+ else
142
+ end
143
+ end
144
+ contact_details
145
+ end
146
+
147
+ def self.address(address_hash)
148
+ computed_address = []
149
+ computed_address << address_hash[:adresse1] unless address_hash[:adresse1].blank?
150
+ computed_address << address_hash[:adresse2] unless address_hash[:adresse2].blank?
151
+ computed_address << address_hash[:adresse3] unless address_hash[:adresse3].blank?
152
+ {address_fields: computed_address}
153
+ end
154
+
155
+ def self.town(address_hash)
156
+ address_hash[:commune] ? Town.find_by_apidae_id(address_hash[:commune][:id]) : nil
157
+ end
158
+
159
+ def self.latitude(location_hash)
160
+ geoloc_details = location_hash[:geolocalisation]
161
+ (geoloc_details && geoloc_details[:valide] && geoloc_details[:geoJson]) ? geoloc_details[:geoJson][:coordinates][1] : nil
162
+ end
163
+
164
+ def self.longitude(location_hash)
165
+ geoloc_details = location_hash[:geolocalisation]
166
+ (geoloc_details && geoloc_details[:valide] && geoloc_details[:geoJson]) ? geoloc_details[:geoJson][:coordinates][0] : nil
167
+ end
168
+
169
+ def self.openings(openings_hash)
170
+ if openings_hash && openings_hash[:periodeEnClair]
171
+ {description: openings_hash[:periodeEnClair][:libelleFr], opening_periods: openings_hash[:periodesOuvertures]}
172
+ end
173
+ end
174
+
175
+ def self.rates(rates_hash)
176
+ if rates_hash
177
+ if rates_hash[:gratuit]
178
+ return 'gratuit'
179
+ elsif rates_hash[:tarifsEnClair]
180
+ rates_hash[:tarifsEnClair][:libelleFr]
181
+ end
182
+ end
183
+ end
184
+
185
+ def self.reservation(reservation_hash)
186
+ if reservation_hash
187
+ if reservation_hash[:complement]
188
+ reservation_hash[:complement][:libelleFr]
189
+ else
190
+ reservation_hash[:organismes]
191
+ end
192
+ end
193
+ end
194
+
195
+ def contact_text
196
+ entries = []
197
+ JSON.parse(contact).each_pair do |k, v|
198
+ entries << "#{k}: #{v}"
199
+ end
200
+ entries.join("\n")
201
+ end
202
+
203
+ def main_picture
204
+ pictures.any? ? pictures[0][:url] : "/#{Rails.application.config.apidae_pictures_path}/default/logo.png"
205
+ end
206
+
207
+ private
208
+
209
+ def self.node_value(node, key)
210
+ if node && node[key]
211
+ node[key][:libelleFr]
212
+ else
213
+ ''
214
+ end
215
+ end
216
+ end
217
+ end