Sha256: 2843e9ac0026b38657896168d7d6fefcb1ba3d48458753de7fa52c07025ae3dc

Contents?: true

Size: 896 Bytes

Versions: 2

Compression:

Stored size: 896 Bytes

Contents

class DateTimeFieldType < FieldType
  attr_accessor :timestamp

  validates :timestamp, presence: true, if: :validate_presence?
  validate :timestamp_is_valid?, if: :validate_presence?

  def elasticsearch_mapping
    { name: mapping_field_name, type: :string, analyzer: :snowball }
  end

  def data=(data_hash)
    @timestamp = data_hash.deep_symbolize_keys[:timestamp]
  end

  def field_item_as_indexed_json_for_field_type(field_item, options = {})
    json = {}
    json[mapping_field_name] = field_item.data['timestamp']
    json
  end

  private

  def mapping_field_name
    "#{field_name.parameterize(separator: '_')}_date_time"
  end

  def timestamp_is_valid?
    begin
      DateTime.parse(@timestamp)
      true
    rescue ArgumentError
      errors.add(:timestamp, 'must be a valid date')
      false
    end
  end

  def validate_presence?
    validations.key? :presence
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
cortex-plugins-core-2.1.1 app/models/date_time_field_type.rb
cortex-plugins-core-2.1.0 app/models/date_time_field_type.rb