Sha256: d727db7d08e7cb4e458b4c29c4da874c92557459ee411f89deb60a06320c3fd7

Contents?: true

Size: 880 Bytes

Versions: 4

Compression:

Stored size: 880 Bytes

Contents

class DateTimeFieldType < FieldType
  attr_accessor :timestamp

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

  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

  def mapping
    {name: mapping_field_name, type: :string, analyzer: :snowball}
  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

4 entries across 4 versions & 1 rubygems

Version Path
cortex-plugins-core-2.0.1 app/models/date_time_field_type.rb
cortex-plugins-core-1.1.1 app/models/date_time_field_type.rb
cortex-plugins-core-1.1.0 app/models/date_time_field_type.rb
cortex-plugins-core-1.0.0 app/models/date_time_field_type.rb