Class: ROM::Plugins::Command::Timestamps

Inherits:
Module
  • Object
show all
Defined in:
core/lib/rom/plugins/command/timestamps.rb

Overview

A plugin for automatically adding timestamp values when executing a command

Set up attributes to timestamp when the command is called

Examples:

class CreateTask < ROM::Commands::Create[:sql]
  result :one
  use :timestamps, timestamps: %i(created_at, updated_at), datestamps: %i(:written)
end

create_user = rom.command(:user).create.curry(name: 'Jane')

result = create_user.call
result[:created_at]  #=> Time.now.utc

Defined Under Namespace

Modules: ClassInterface, InstanceMethods

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(timestamps: [], datestamps: []) ⇒ Timestamps

Returns a new instance of Timestamps.



27
28
29
30
# File 'core/lib/rom/plugins/command/timestamps.rb', line 27

def initialize(timestamps: [], datestamps: [])
  @timestamps = store_attributes(timestamps)
  @datestamps = store_attributes(datestamps)
end

Instance Attribute Details

#datestampsObject (readonly)



26
27
28
# File 'core/lib/rom/plugins/command/timestamps.rb', line 26

def datestamps
  @datestamps
end

#timestampsObject (readonly)



26
27
28
# File 'core/lib/rom/plugins/command/timestamps.rb', line 26

def timestamps
  @timestamps
end

Instance Method Details

#initialize_timestamp_attributes(klass) ⇒ Object



45
46
47
48
49
50
51
52
# File 'core/lib/rom/plugins/command/timestamps.rb', line 45

def initialize_timestamp_attributes(klass)
  klass.defines :timestamp_columns, :datestamp_columns
  klass.timestamp_columns Set.new
  klass.datestamp_columns Set.new
  klass.before :set_timestamps
  klass.timestamp_columns klass.timestamp_columns.merge(timestamps) if timestamps.any?
  klass.datestamp_columns klass.datestamp_columns.merge(datestamps) if datestamps.any?
end