trabajo-afectivo/app/models/activity_stream.rb

122 lines
3.2 KiB
Ruby
Raw Normal View History

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'
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]
role = Role.lookup( name: data[:role] )
2013-09-29 21:37:49 +00:00
if !role
fail "No such Role #{data[:role]}"
2013-09-28 00:07:11 +00:00
end
2013-09-29 21:37:49 +00:00
role_id = role.id
2013-09-28 00:07:11 +00:00
end
# check newest entry - is needed
2013-09-28 00:07:11 +00:00
result = ActivityStream.where(
o_id: data[:o_id],
2014-12-31 14:07:56 +00:00
#:activity_stream_type_id => type_id,
role_id: role_id,
activity_stream_object_id: object_id,
created_by_id: data[:created_by_id]
).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],
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(
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
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?
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
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
end