2014-02-03 19:23:00 +00:00
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
2013-09-28 00:07:11 +00:00
class ActivityStream < ApplicationModel
self . table_name = 'activity_streams'
2015-04-27 13:42:53 +00:00
belongs_to :activity_stream_type , class_name : 'TypeLookup'
belongs_to :activity_stream_object , class_name : 'ObjectLookup'
2013-09-28 00:07:11 +00:00
= begin
add a new activity entry for an object
ActivityStream . add (
2014-12-31 14:07:56 +00:00
:type = > 'updated' ,
:object = > 'Ticket' ,
:role = > 'Admin' ,
:o_id = > ticket . id ,
:created_by_id = > 1 ,
:created_at = > '2013-06-04 10:00:00' ,
2013-09-28 00:07:11 +00:00
)
= end
def self . add ( data )
# lookups
if data [ :type ]
2014-08-24 08:04:20 +00:00
type_id = TypeLookup . by_name ( data [ :type ] )
2013-09-28 00:07:11 +00:00
end
if data [ :object ]
2014-08-23 23:59:46 +00:00
object_id = ObjectLookup . by_name ( data [ :object ] )
2013-09-28 00:07:11 +00:00
end
role_id = nil
if data [ :role ]
2015-04-27 13:42:53 +00:00
role = Role . lookup ( name : data [ :role ] )
2013-09-29 21:37:49 +00:00
if ! role
2013-09-28 00:07:11 +00:00
raise " No such Role #{ data [ :role ] } "
end
2013-09-29 21:37:49 +00:00
role_id = role . id
2013-09-28 00:07:11 +00:00
end
2014-06-26 22:42:27 +00:00
# check newest entry - is needed
2013-09-28 00:07:11 +00:00
result = ActivityStream . where (
2015-04-27 13:42:53 +00:00
o_id : data [ :o_id ] ,
2014-12-31 14:07:56 +00:00
#:activity_stream_type_id => type_id,
2015-04-27 13:42:53 +00:00
role_id : role_id ,
activity_stream_object_id : object_id ,
created_by_id : data [ :created_by_id ]
2014-06-26 22:42:27 +00:00
) . order ( 'created_at DESC, id DESC' ) . first
2013-09-28 00:07:11 +00:00
2014-05-30 07:57:35 +00:00
# resturn if old entry is really fresh
return result if result && result . created_at . to_i > = ( data [ :created_at ] . to_i - 12 )
2014-06-01 08:31:04 +00:00
2013-09-28 00:07:11 +00:00
# create history
record = {
2015-04-27 13:42:53 +00:00
o_id : data [ :o_id ] ,
activity_stream_type_id : type_id ,
activity_stream_object_id : object_id ,
role_id : role_id ,
group_id : data [ :group_id ] ,
created_at : data [ :created_at ] ,
created_by_id : data [ :created_by_id ]
2013-09-28 00:07:11 +00:00
}
2013-09-29 21:37:49 +00:00
2013-09-28 00:07:11 +00:00
ActivityStream . create ( record )
end
= begin
remove whole activity entries of an object
ActivityStream . remove ( 'Ticket' , 123 )
= end
def self . remove ( object_name , o_id )
2014-08-23 23:59:46 +00:00
object_id = ObjectLookup . by_name ( object_name )
2013-09-28 00:07:11 +00:00
ActivityStream . where (
2015-04-27 13:42:53 +00:00
activity_stream_object_id : object_id ,
o_id : o_id ,
2013-09-28 00:07:11 +00:00
) . destroy_all
end
= begin
return all activity entries of an user
activity_stream = ActivityStream . list ( user )
= end
2015-04-27 14:53:29 +00:00
def self . list ( user , limit )
2014-12-31 14:07:56 +00:00
role_ids = user . role_ids
2013-09-29 21:37:49 +00:00
group_ids = user . group_ids
# do not return an activity stream for custoers
2015-04-27 13:42:53 +00:00
customer_role = Role . lookup ( name : 'Customer' )
2013-09-29 21:37:49 +00:00
return [ ] if role_ids . include? ( customer_role . id )
if group_ids . empty?
2015-04-30 17:51:31 +00:00
stream = ActivityStream . where ( '(role_id IN (?) AND group_id is NULL)' , role_ids )
. order ( 'created_at DESC, id DESC' )
. limit ( limit )
2013-09-29 21:37:49 +00:00
else
2015-04-30 17:51:31 +00:00
stream = ActivityStream . where ( '(role_id IN (?) AND group_id is NULL) OR ( role_id IN (?) AND group_id IN (?) ) OR ( role_id is NULL AND group_id IN (?) )' , role_ids , role_ids , group_ids , group_ids )
. order ( 'created_at DESC, id DESC' )
. limit ( limit )
2013-09-29 21:37:49 +00:00
end
2013-09-28 00:07:11 +00:00
list = [ ]
stream . each do | item |
2014-12-31 14:07:56 +00:00
data = item . attributes
data [ 'object' ] = ObjectLookup . by_id ( data [ 'activity_stream_object_id' ] )
data [ 'type' ] = TypeLookup . by_id ( data [ 'activity_stream_type_id' ] )
2013-09-28 00:07:11 +00:00
data . delete ( 'activity_stream_object_id' )
data . delete ( 'activity_stream_type_id' )
list . push data
end
list
end
2015-04-27 14:15:29 +00:00
end