trabajo-afectivo/app/models/history.rb

242 lines
6.4 KiB
Ruby
Raw Normal View History

# Copyright (C) 2012-2013 Zammad Foundation, http://zammad-foundation.org/
class History < ApplicationModel
include History::Assets
2012-04-10 14:06:46 +00:00
self.table_name = 'histories'
belongs_to :history_type, :class_name => 'History::Type'
belongs_to :history_object, :class_name => 'History::Object'
belongs_to :history_attribute, :class_name => 'History::Attribute'
# before_validation :check_type, :check_object
# attr_writer :history_type, :history_object
2012-04-10 14:06:46 +00:00
2012-11-07 23:47:05 +00:00
@@cache_type = {}
@@cache_object = {}
@@cache_attribute = {}
=begin
add a new history entry for an object
History.add(
:history_type => 'updated',
:history_object => 'Ticket',
:history_attribute => 'ticket_state',
:o_id => ticket.id,
:id_to => 3,
:id_from => 2,
:value_from => 'open',
:value_to => 'pending',
:created_by_id => 1,
:created_at => '2013-06-04 10:00:00',
:updated_at => '2013-06-04 10:00:00'
)
=end
def self.add(data)
2012-07-10 08:09:58 +00:00
# lookups
2012-11-07 23:47:05 +00:00
if data[:history_type]
2013-09-23 14:44:43 +00:00
history_type = self.type_lookup( data[:history_type] )
2012-07-10 08:09:58 +00:00
end
2012-11-07 23:47:05 +00:00
if data[:history_object]
2013-09-23 14:44:43 +00:00
history_object = self.object_lookup( data[:history_object] )
2012-07-10 08:09:58 +00:00
end
related_history_object_id = nil
if data[:related_history_object]
2013-09-23 14:44:43 +00:00
related_history_object = self.object_lookup( data[:related_history_object] )
2012-07-10 08:09:58 +00:00
related_history_object_id = related_history_object.id
end
history_attribute_id = nil
if data[:history_attribute]
2012-11-07 23:47:05 +00:00
history_attribute = self.history_attribute_lookup( data[:history_attribute] )
2012-07-10 08:09:58 +00:00
history_attribute_id = history_attribute.id
end
# create history
record = {
:id => data[:id],
2012-07-10 08:09:58 +00:00
:o_id => data[:o_id],
:history_type_id => history_type.id,
:history_object_id => history_object.id,
:history_attribute_id => history_attribute_id,
:related_history_object_id => related_history_object_id,
:related_o_id => data[:related_o_id],
:value_from => data[:value_from],
:value_to => data[:value_to],
:id_from => data[:id_from],
:id_to => data[:id_to],
:created_at => data[:created_at],
2012-07-10 08:09:58 +00:00
:created_by_id => data[:created_by_id]
}
history_record = nil
if data[:id]
history_record = History.where( :id => data[:id] ).first
end
if history_record
history_record.update_attributes(record)
else
record_new = History.create(record)
2013-05-27 07:25:34 +00:00
if record[:id]
record_new.id = record[:id]
end
record_new.save
end
2012-07-10 08:09:58 +00:00
end
=begin
remove whole history entries of an object
History.remove( 'Ticket', 123 )
=end
2013-06-04 12:52:56 +00:00
def self.remove( requested_object, requested_object_id )
history_object = History::Object.where( :name => requested_object ).first
2013-09-28 00:07:11 +00:00
return if !history_object
2013-06-04 12:52:56 +00:00
History.where(
:history_object_id => history_object.id,
:o_id => requested_object_id,
).destroy_all
2012-07-10 08:09:58 +00:00
end
=begin
2013-09-28 00:07:11 +00:00
return all history entries of an object
history_list = History.list( 'Ticket', 123 )
=end
2013-06-04 12:52:56 +00:00
def self.list( requested_object, requested_object_id, related_history_object = nil )
2012-07-10 08:09:58 +00:00
if !related_history_object
2013-09-23 14:44:43 +00:00
history_object = self.object_lookup( requested_object )
2012-11-07 23:47:05 +00:00
history = History.where( :history_object_id => history_object.id ).
where( :o_id => requested_object_id ).
where( :history_type_id => History::Type.where( :name => ['created', 'updated', 'notification', 'email', 'added', 'removed'] ) ).
order('created_at ASC, id ASC')
2012-07-10 08:09:58 +00:00
else
2013-09-23 14:44:43 +00:00
history_object_requested = self.object_lookup( requested_object )
history_object_related = self.object_lookup( related_history_object )
2012-07-10 08:09:58 +00:00
history = History.where(
'((history_object_id = ? AND o_id = ?) OR (history_object_id = ? AND related_o_id = ? )) AND history_type_id IN (?)',
history_object_requested.id,
requested_object_id,
history_object_related.id,
requested_object_id,
History::Type.where( :name => ['created', 'updated', 'notification', 'email', 'added', 'removed'] )
).
order('created_at ASC, id ASC')
2012-07-10 08:09:58 +00:00
end
2012-11-07 23:47:05 +00:00
return history
2012-04-10 14:06:46 +00:00
end
2012-11-07 23:47:05 +00:00
2012-04-10 14:06:46 +00:00
private
2012-11-07 23:47:05 +00:00
2013-09-23 14:44:43 +00:00
def self.type_lookup_id( id )
2012-11-07 23:47:05 +00:00
# use cache
return @@cache_type[ id ] if @@cache_type[ id ]
2012-11-07 23:47:05 +00:00
# lookup
history_type = History::Type.find(id)
@@cache_type[ id ] = history_type
return history_type
end
2012-11-07 23:47:05 +00:00
2013-09-23 14:44:43 +00:00
def self.type_lookup( name )
2012-11-07 23:47:05 +00:00
# use cache
return @@cache_type[ name ] if @@cache_type[ name ]
2012-11-07 23:47:05 +00:00
# lookup
history_type = History::Type.where( :name => name ).first
if history_type
2012-11-07 23:47:05 +00:00
@@cache_type[ name ] = history_type
return history_type
2012-04-10 14:06:46 +00:00
end
2012-11-07 23:47:05 +00:00
# create
history_type = History::Type.create(
:name => name
)
@@cache_type[ name ] = history_type
return history_type
end
2012-11-07 23:47:05 +00:00
2013-09-23 14:44:43 +00:00
def self.object_lookup_id( id )
2012-11-07 23:47:05 +00:00
# use cache
return @@cache_object[ id ] if @@cache_object[ id ]
2012-11-07 23:47:05 +00:00
# lookup
history_object = History::Object.find(id)
@@cache_object[ id ] = history_object
return history_object
end
2012-11-07 23:47:05 +00:00
2013-09-23 14:44:43 +00:00
def self.object_lookup( name )
2012-11-07 23:47:05 +00:00
# use cache
return @@cache_object[ name ] if @@cache_object[ name ]
2012-11-07 23:47:05 +00:00
# lookup
history_object = History::Object.where( :name => name ).first
if history_object
2012-11-07 23:47:05 +00:00
@@cache_object[ name ] = history_object
return history_object
end
# create
history_object = History::Object.create(
:name => name
)
@@cache_object[ name ] = history_object
return history_object
end
2012-11-07 23:47:05 +00:00
def self.history_attribute_lookup( name )
2012-11-07 23:47:05 +00:00
# use cache
return @@cache_attribute[ name ] if @@cache_attribute[ name ]
2012-11-07 23:47:05 +00:00
# lookup
history_attribute = History::Attribute.where( :name => name ).first
if history_attribute
2012-11-07 23:47:05 +00:00
@@cache_attribute[ name ] = history_attribute
return history_attribute
2012-04-10 14:06:46 +00:00
end
# create
history_attribute = History::Attribute.create(
:name => name
)
@@cache_attribute[ name ] = history_attribute
return history_attribute
end
private
=begin
nothing to do on destroying history entries
=end
def destroy_dependencies
end
class Object < ApplicationModel
2012-04-10 14:06:46 +00:00
end
class Type < ApplicationModel
2012-04-10 14:06:46 +00:00
end
class Attribute < ApplicationModel
2012-04-10 14:06:46 +00:00
end
end