demarches-normaliennes/app/serializers/champ_serializer.rb

94 lines
1.9 KiB
Ruby
Raw Normal View History

2018-02-09 17:38:30 +01:00
class ChampSerializer < ActiveModel::Serializer
include Rails.application.routes.url_helpers
2018-02-09 17:38:30 +01:00
attributes :value
has_one :type_de_champ
2018-11-13 18:48:04 +01:00
has_many :geo_areas, if: :include_geo_areas?
has_one :etablissement, if: :include_etablissement?
has_one :entreprise, if: :include_etablissement?
def value
case object
2018-11-27 15:55:14 +01:00
when GeoArea
object.geometry.to_json
2018-11-13 18:48:04 +01:00
when Champs::CarteChamp
2018-11-30 13:19:19 +01:00
if object.geo_json.present?
object.geo_json.to_json
end
2018-11-13 18:48:04 +01:00
when Champs::DecimalNumberChamp
if object.value.present?
object.value.to_f
end
when Champs::IntegerNumberChamp
if object.value.present?
object.value.to_i
end
when Champs::LinkedDropDownListChamp
if object.value.present?
{ primary: object.primary_value, secondary: object.secondary_value }
end
when Champs::PieceJustificativeChamp
if object.piece_justificative_file.attached?
url_for(object.piece_justificative_file)
end
2018-11-13 18:48:04 +01:00
else
object.value
end
end
def type_de_champ
case object
2018-11-27 15:55:14 +01:00
when GeoArea
legacy_type_de_champ
else
object.type_de_champ
end
end
2018-11-13 18:48:04 +01:00
def etablissement
object.etablissement
end
def entreprise
object.etablissement&.entreprise
end
def include_etablissement?
object.is_a?(Champs::SiretChamp)
end
def include_geo_areas?
object.is_a?(Champs::CarteChamp)
end
private
def legacy_type_de_champ
{
id: -1,
libelle: legacy_carto_libelle,
type_champ: legacy_carto_type_champ,
order_place: -1,
description: ''
}
end
def legacy_carto_libelle
2018-11-27 15:55:14 +01:00
if object.source == GeoArea.sources.fetch(:selection_utilisateur)
'user geometry'
else
2018-11-27 15:55:14 +01:00
object.source.to_s.tr('_', ' ')
end
end
def legacy_carto_type_champ
2018-11-27 15:55:14 +01:00
if object.source == GeoArea.sources.fetch(:selection_utilisateur)
'user_geometry'
else
2018-11-27 15:55:14 +01:00
object.source.to_s
end
end
2018-02-09 17:38:30 +01:00
end