1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
|
require 'geokit'
require 'geo_ruby'
module Chouette
class StopArea < Chouette::ActiveRecord
has_metadata
include ProjectionFields
include StopAreaRestrictions
include StopAreaReferentialSupport
include ObjectidSupport
include CustomFieldsSupport
extend Enumerize
enumerize :area_type, in: Chouette::AreaType::ALL
enumerize :kind, in: %i(commercial non_commercial)
AVAILABLE_LOCALIZATIONS = %i(gb nl de fr it es)
with_options dependent: :destroy do |assoc|
assoc.has_many :stop_points
assoc.has_many :access_points
assoc.has_many :access_links
end
has_and_belongs_to_many :routing_lines, :class_name => 'Chouette::Line', :foreign_key => "stop_area_id", :association_foreign_key => "line_id", :join_table => "routing_constraints_lines", :order => "lines.number"
has_and_belongs_to_many :routing_stops, :class_name => 'Chouette::StopArea', :foreign_key => "parent_id", :association_foreign_key => "child_id", :join_table => "stop_areas_stop_areas", :order => "stop_areas.name"
acts_as_tree :foreign_key => 'parent_id', :order => "name"
attr_accessor :stop_area_type
attr_accessor :children_ids
attr_writer :coordinates
after_update :journey_patterns_control_route_sections,
if: Proc.new { |stop_area| ['boarding_position', 'quay'].include? stop_area.stop_area_type }
# validates_format_of :registration_number, :with => %r{\A[\d\w_:\-]+\Z}, :allow_blank => true
validates_presence_of :name
validates_presence_of :kind
validates_presence_of :latitude, :if => :longitude
validates_presence_of :longitude, :if => :latitude
validates_numericality_of :latitude, :less_than_or_equal_to => 90, :greater_than_or_equal_to => -90, :allow_nil => true
validates_numericality_of :longitude, :less_than_or_equal_to => 180, :greater_than_or_equal_to => -180, :allow_nil => true
validates_format_of :coordinates, :with => %r{\A *-?(0?[0-9](\.[0-9]*)?|[0-8][0-9](\.[0-9]*)?|90(\.[0]*)?) *\, *-?(0?[0-9]?[0-9](\.[0-9]*)?|1[0-7][0-9](\.[0-9]*)?|180(\.[0]*)?) *\Z}, :allow_nil => true, :allow_blank => true
validates_format_of :url, :with => %r{\Ahttps?:\/\/([\da-z\.-]+)\.([a-z\.]{2,6})([\/\w \.-]*)*\/?\Z}, :allow_nil => true, :allow_blank => true
validates_numericality_of :waiting_time, greater_than_or_equal_to: 0, only_integer: true, if: :waiting_time
validate :parent_area_type_must_be_greater
validate :area_type_of_right_kind
validate :registration_number_is_set
before_validation do
self.registration_number = self.stop_area_referential.generate_registration_number unless self.registration_number.present?
end
def self.nullable_attributes
[:registration_number, :street_name, :country_code, :fare_code,
:nearest_topic_name, :comment, :long_lat_type, :zip_code, :city_name, :url, :time_zone]
end
def localized_names
val = read_attribute(:localized_names) || {}
Hash[*AVAILABLE_LOCALIZATIONS.map{|k| [k, val[k.to_s]]}.flatten]
end
def parent_area_type_must_be_greater
return unless self.parent
parent_area_type = Chouette::AreaType.find(self.parent.area_type)
if Chouette::AreaType.find(self.area_type) >= parent_area_type
errors.add(:parent_id, I18n.t('stop_areas.errors.parent_area_type', area_type: parent_area_type.label))
end
end
def area_type_of_right_kind
return unless self.kind
unless Chouette::AreaType.send(self.kind).map(&:to_s).include?(self.area_type)
errors.add(:area_type, I18n.t('stop_areas.errors.incorrect_kind_area_type'))
end
end
def registration_number_is_set
return unless self.stop_area_referential.registration_number_format.present?
if self.stop_area_referential.stop_areas.where(registration_number: self.registration_number).\
where.not(id: self.id).exists?
errors.add(:registration_number, I18n.t('stop_areas.errors.registration_number.already_taken'))
end
unless self.registration_number.present?
errors.add(:registration_number, I18n.t('stop_areas.errors.registration_number.cannot_be_empty'))
end
unless self.stop_area_referential.validates_registration_number(self.registration_number)
errors.add(:registration_number, I18n.t('stop_areas.errors.registration_number.invalid', mask: self.stop_area_referential.registration_number_format))
end
end
after_update :clean_invalid_access_links
before_save :coordinates_to_lat_lng
def combine_lat_lng
if self.latitude.nil? || self.longitude.nil?
""
else
self.latitude.to_s+","+self.longitude.to_s
end
end
def coordinates
@coordinates || combine_lat_lng
end
def coordinates_to_lat_lng
if ! @coordinates.nil?
if @coordinates.empty?
self.latitude = nil
self.longitude = nil
else
self.latitude = BigDecimal.new(@coordinates.split(",").first)
self.longitude = BigDecimal.new(@coordinates.split(",").last)
end
@coordinates = nil
end
end
def full_name
"#{name} #{zip_code} #{city_name} - #{user_objectid}"
end
def user_objectid
if objectid =~ /^.*:([0-9A-Za-z_-]+):STIF$/
$1
else
id.to_s
end
end
alias_method :local_id, :user_objectid
def children_in_depth
return [] if self.children.empty?
self.children + self.children.map do |child|
child.children_in_depth
end.flatten.compact
end
def possible_children
case area_type
when "BoardingPosition" then []
when "Quay" then []
when "CommercialStopPoint" then Chouette::StopArea.where(:area_type => ['Quay', 'BoardingPosition']) - [self]
when "StopPlace" then Chouette::StopArea.where(:area_type => ['StopPlace', 'CommercialStopPoint']) - [self]
end
end
def possible_parents
case area_type
when "BoardingPosition" then Chouette::StopArea.where(:area_type => "CommercialStopPoint") - [self]
when "Quay" then Chouette::StopArea.where(:area_type => "CommercialStopPoint") - [self]
when "CommercialStopPoint" then Chouette::StopArea.where(:area_type => "StopPlace") - [self]
when "StopPlace" then Chouette::StopArea.where(:area_type => "StopPlace") - [self]
end
end
def geometry_presenter
Chouette::Geometry::StopAreaPresenter.new self
end
def lines
[]
end
def routes
[]
end
def self.commercial
where :area_type => "CommercialStopPoint"
end
def self.stop_place
where :area_type => "StopPlace"
end
def self.physical
where :area_type => [ "BoardingPosition", "Quay" ]
end
def to_lat_lng
Geokit::LatLng.new(latitude, longitude) if latitude and longitude
end
def geometry
GeoRuby::SimpleFeatures::Point.from_lon_lat(longitude, latitude, 4326) if latitude and longitude
end
def geometry=(geometry)
geometry = geometry.to_wgs84
self.latitude, self.longitude, self.long_lat_type = geometry.lat, geometry.lng, "WGS84"
end
def position
geometry
end
def position=(position)
position = nil if String === position && position == ""
position = Geokit::LatLng.normalize(position), 4326 if String === position
if position
self.latitude = position.lat
self.longitude = position.lng
end
end
def default_position
# for first StopArea ... the bounds is nil :(
Chouette::StopArea.bounds ? Chouette::StopArea.bounds.center : nil # FIXME #821 stop_area_referential.envelope.center
end
def around(scope, distance)
db = "ST_GeomFromEWKB(ST_MakePoint(longitude, latitude, 4326))"
from = "ST_GeomFromText('POINT(#{self.longitude} #{self.latitude})', 4326)"
scope.where("ST_DWithin(#{db}, #{from}, ?, false)", distance)
end
def self.near(origin, distance = 0.3)
origin = origin.to_lat_lng
lat_degree_units = units_per_latitude_degree(:kms)
lng_degree_units = units_per_longitude_degree(origin.lat, :kms)
where "SQRT(POW(#{lat_degree_units}*(#{origin.lat}-latitude),2)+POW(#{lng_degree_units}*(#{origin.lng}-longitude),2)) <= #{distance}"
end
def self.bounds
# Give something like :
# [["113.5292500000000000", "22.1127580000000000", "113.5819330000000000", "22.2157050000000000"]]
min_and_max = connection.select_rows("select min(longitude) as min_lon, min(latitude) as min_lat, max(longitude) as max_lon, max(latitude) as max_lat from #{table_name} where latitude is not null and longitude is not null").first
return nil unless min_and_max
# Ignore [nil, nil, nil, nil]
min_and_max.compact!
return nil unless min_and_max.size == 4
min_and_max.collect! { |n| n.to_f }
# We need something like :
# [[113.5292500000000000, 22.1127580000000000], [113.5819330000000000, 22.2157050000000000]]
coordinates = min_and_max.each_slice(2).to_a
GeoRuby::SimpleFeatures::Envelope.from_coordinates coordinates
end
# DEPRECATED use StopArea#area_type
def stop_area_type
area_type ? area_type : " "
end
# DEPRECATED use StopArea#area_type
def stop_area_type=(stop_area_type)
self.area_type = (stop_area_type ? stop_area_type.camelcase : nil)
end
def children_ids=(children_ids)
children = children_ids.split(',').uniq
# remove unset children
self.children.each do |child|
if (! children.include? child.id)
child.update_attribute :parent_id, nil
end
end
# add new children
Chouette::StopArea.find(children).each do |child|
child.update_attribute :parent_id, self.id
end
end
def routing_stop_ids=(routing_stop_ids)
stops = routing_stop_ids.split(',').uniq
self.routing_stops.clear
Chouette::StopArea.find(stops).each do |stop|
self.routing_stops << stop
end
end
def routing_line_ids=(routing_line_ids)
lines = routing_line_ids.split(',').uniq
self.routing_lines.clear
Chouette::Line.find(lines).each do |line|
self.routing_lines << line
end
end
def self.without_geometry
where("latitude is null or longitude is null")
end
def self.with_geometry
where("latitude is not null and longitude is not null")
end
def self.default_geometry!
count = 0
where(nil).find_each do |stop_area|
Chouette::StopArea.unscoped do
count += 1 if stop_area.default_geometry!
end
end
count
end
def default_geometry!
new_geometry = default_geometry
update_attribute :geometry, new_geometry if new_geometry
end
def default_geometry
children_geometries = children.with_geometry.map(&:geometry).uniq
GeoRuby::SimpleFeatures::Point.centroid children_geometries if children_geometries.present?
end
def generic_access_link_matrix
matrix = Array.new
access_points.each do |access_point|
matrix += access_point.generic_access_link_matrix
end
matrix
end
def detail_access_link_matrix
matrix = Array.new
access_points.each do |access_point|
matrix += access_point.detail_access_link_matrix
end
matrix
end
def children_at_base
list = Array.new
children_in_depth.each do |child|
if child.area_type == 'Quay' || child.area_type == 'BoardingPosition'
list << child
end
end
list
end
def parents
list = Array.new
if !parent.nil?
list << parent
list += parent.parents
end
list
end
def clean_invalid_access_links
stop_parents = parents
access_links.each do |link|
unless stop_parents.include? link.access_point.stop_area
link.delete
end
end
children.each do |child|
child.clean_invalid_access_links
end
end
def duplicate
sa = self.deep_clone :except => [:object_version, :parent_id, :registration_number]
sa.uniq_objectid
sa.name = I18n.t("activerecord.copy", :name => self.name)
sa
end
def journey_patterns_control_route_sections
if self.changed_attributes['latitude'] || self.changed_attributes['longitude']
self.stop_points.each do |stop_point|
stop_point.route.journey_patterns.completed.map{ |jp| jp.control! }
end
end
end
def self.ransackable_scopes(auth_object = nil)
[:by_status]
end
def self.by_status(*statuses)
return Chouette::StopArea.all if statuses.reject(&:blank?).length == 3 || statuses.reject(&:blank?).empty?
status = {
in_creation: statuses.include?('in_creation'),
confirmed: statuses.include?('confirmed'),
deactivated: statuses.include?('deactivated'),
}
query = []
query << "deleted_at IS NOT NULL" if statuses.include?('deactivated')
query << "(confirmed_at IS NULL AND deleted_at IS NULL)" if statuses.include?('in_creation')
query << "(confirmed_at IS NOT NULL AND deleted_at IS NULL)" if statuses.include?('confirmed')
Chouette::StopArea.where(query.join(' OR '))
end
def activated?
!!(deleted_at.nil? && confirmed_at)
end
def deactivated?
deleted_at.present?
end
def activate
self.confirmed_at = Time.now
self.deleted_at = nil
end
def deactivate
self.deleted_at = Time.now
end
def activate!
update_attribute :confirmed_at, Time.now
update_attribute :deleted_at, nil
end
def deactivate!
update_attribute :deleted_at, Time.now
end
def status
return :deactivated if deleted_at
return :confirmed if confirmed_at
:in_creation
end
def status=(status)
case status&.to_sym
when :deactivated
deactivate
when :confirmed
activate
when :in_creation
self.confirmed_at = self.deleted_at = nil
end
end
def self.statuses
%i{in_creation confirmed deactivated}
end
def time_zone_offset
return 0 unless time_zone.present?
ActiveSupport::TimeZone[time_zone]&.utc_offset
end
def full_time_zone_name
return unless time_zone.present?
return unless ActiveSupport::TimeZone[time_zone].present?
ActiveSupport::TimeZone[time_zone].tzinfo.name
end
def country
return unless country_code
country = ISO3166::Country[country_code]
end
def country_name
return unless country
country.translations[I18n.locale.to_s] || country.name
end
def time_zone_formatted_offset
return nil unless time_zone.present?
ActiveSupport::TimeZone[time_zone]&.formatted_offset
end
def commercial?
kind == "commercial"
end
end
end
|