2014-02-03 19:23:00 +00:00
|
|
|
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
|
2013-06-12 15:59:58 +00:00
|
|
|
|
2013-05-21 22:41:32 +00:00
|
|
|
class RecentView < ApplicationModel
|
2014-08-23 22:29:04 +00:00
|
|
|
belongs_to :object_lookup, :class_name => 'ObjectLookup'
|
2013-05-21 22:41:32 +00:00
|
|
|
|
2014-08-25 23:29:28 +00:00
|
|
|
after_create :notify_clients
|
|
|
|
after_update :notify_clients
|
|
|
|
after_destroy :notify_clients
|
|
|
|
|
2014-08-23 23:56:45 +00:00
|
|
|
def self.log( object, o_id, user )
|
2013-05-21 22:41:32 +00:00
|
|
|
|
|
|
|
# lookups
|
2014-08-23 23:56:45 +00:00
|
|
|
object_lookup_id = ObjectLookup.by_name( object )
|
2013-05-21 22:41:32 +00:00
|
|
|
|
|
|
|
# create entry
|
|
|
|
record = {
|
2014-08-24 00:16:50 +00:00
|
|
|
:o_id => o_id,
|
|
|
|
:recent_view_object_id => object_lookup_id.to_i,
|
|
|
|
:created_by_id => user.id,
|
2013-05-21 22:41:32 +00:00
|
|
|
}
|
|
|
|
RecentView.create(record)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.log_destroy( requested_object, requested_object_id )
|
2014-08-24 00:16:50 +00:00
|
|
|
RecentView.where( :recent_view_object_id => ObjectLookup.by_name( requested_object ) ).
|
2013-06-12 15:59:58 +00:00
|
|
|
where( :o_id => requested_object_id ).
|
|
|
|
destroy_all
|
2013-05-21 22:41:32 +00:00
|
|
|
end
|
|
|
|
|
2014-08-23 22:29:04 +00:00
|
|
|
def self.user_log_destroy( user )
|
|
|
|
RecentView.where( :created_by_id => user.id ).destroy_all
|
|
|
|
end
|
|
|
|
|
2013-05-21 22:41:32 +00:00
|
|
|
def self.list( user, limit = 10 )
|
|
|
|
recent_views = RecentView.where( :created_by_id => user.id ).
|
2013-06-12 15:59:58 +00:00
|
|
|
order('created_at DESC, id DESC').
|
|
|
|
limit(limit)
|
2013-05-21 22:41:32 +00:00
|
|
|
|
|
|
|
list = []
|
|
|
|
recent_views.each { |item|
|
|
|
|
data = item.attributes
|
2014-08-24 00:16:50 +00:00
|
|
|
data['object'] = ObjectLookup.by_id( data['recent_view_object_id'] )
|
|
|
|
data.delete( 'recent_view_object_id' )
|
2013-05-21 22:41:32 +00:00
|
|
|
list.push data
|
|
|
|
}
|
2014-07-13 18:52:32 +00:00
|
|
|
list
|
2013-05-21 22:41:32 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.list_fulldata( user, limit = 10 )
|
|
|
|
recent_viewed = self.list( user, limit )
|
|
|
|
|
|
|
|
# get related users
|
2013-08-19 06:29:49 +00:00
|
|
|
assets = {}
|
|
|
|
ticket_ids = []
|
2013-05-21 22:41:32 +00:00
|
|
|
recent_viewed.each {|item|
|
|
|
|
|
2014-08-23 22:29:04 +00:00
|
|
|
# get related objects
|
|
|
|
require item['object'].to_filename
|
|
|
|
record = Kernel.const_get( item['object'] ).find( item['o_id'] )
|
|
|
|
assets = record.assets(assets)
|
2013-06-12 15:59:58 +00:00
|
|
|
|
2013-05-21 22:41:32 +00:00
|
|
|
}
|
|
|
|
return {
|
|
|
|
:recent_viewed => recent_viewed,
|
2013-08-19 06:29:49 +00:00
|
|
|
:assets => assets,
|
2013-05-21 22:41:32 +00:00
|
|
|
}
|
|
|
|
end
|
2014-08-25 23:29:28 +00:00
|
|
|
|
|
|
|
def notify_clients
|
|
|
|
data = RecentView.list_fulldata( User.find(self.created_by_id), 10 )
|
|
|
|
Sessions.send_to(
|
|
|
|
self.created_by_id,
|
|
|
|
{
|
|
|
|
:event => 'update_recent_viewed',
|
|
|
|
:data => data,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2013-05-21 22:41:32 +00:00
|
|
|
class Object < ApplicationModel
|
|
|
|
end
|
2014-08-23 22:29:04 +00:00
|
|
|
end
|