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'
2014-08-24 08:04:20 +00:00
belongs_to :activity_stream_type , :class_name = > 'TypeLookup'
2014-08-23 23:59:46 +00:00
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 (
:type = > 'updated' ,
:object = > 'Ticket' ,
:role = > 'Admin' ,
:o_id = > ticket . id ,
:created_by_id = > 1 ,
:created_at = > '2013-06-04 10: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 ]
2013-09-29 21:37:49 +00:00
role = Role . lookup ( :name = > data [ :role ] )
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 (
:o_id = > data [ :o_id ] ,
2014-08-24 08:04:20 +00:00
# :activity_stream_type_id => type_id,
2013-09-28 00:07:11 +00:00
:role_id = > role_id ,
2014-08-23 23:59:46 +00:00
:activity_stream_object_id = > object_id ,
2014-02-03 19:23:00 +00:00
: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 = {
:o_id = > data [ :o_id ] ,
2014-08-24 08:04:20 +00:00
:activity_stream_type_id = > type_id ,
2014-08-23 23:59:46 +00:00
:activity_stream_object_id = > object_id ,
2013-09-29 21:37:49 +00:00
:role_id = > role_id ,
:group_id = > data [ :group_id ] ,
2013-09-28 00:07:11 +00:00
:created_at = > data [ :created_at ] ,
:created_by_id = > data [ :created_by_id ]
}
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 (
2014-08-23 23:59:46 +00:00
:activity_stream_object_id = > object_id ,
2013-09-28 00:07:11 +00:00
:o_id = > o_id ,
) . destroy_all
end
= begin
return all activity entries of an user
activity_stream = ActivityStream . list ( user )
= end
def self . list ( user , limit )
2013-09-29 21:37:49 +00:00
role_ids = user . role_ids
group_ids = user . group_ids
# do not return an activity stream for custoers
customer_role = Role . lookup ( :name = > 'Customer' )
return [ ] if role_ids . include? ( customer_role . id )
if group_ids . empty?
stream = ActivityStream . where ( '(role_id IN (?) AND group_id is NULL)' , role_ids ) .
order ( 'created_at DESC, id DESC' ) .
limit ( limit )
else
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 )
end
2013-09-28 00:07:11 +00:00
list = [ ]
stream . each do | item |
data = item . attributes
2014-08-23 23:59:46 +00:00
data [ 'object' ] = ObjectLookup . by_id ( data [ 'activity_stream_object_id' ] )
2014-08-24 08:04:20 +00:00
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
private
class Object < ApplicationModel
end
class Type < ApplicationModel
end
end