2016-10-19 03:11:36 +00:00
|
|
|
# Copyright (C) 2012-2016 Zammad Foundation, http://zammad-foundation.org/
|
2015-05-01 13:08:43 +00:00
|
|
|
module ApplicationModel::ActivityStreamBase
|
2013-09-28 00:07:11 +00:00
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
log activity for this object
|
|
|
|
|
|
|
|
article = Ticket::Article.find(123)
|
2016-02-22 19:58:23 +00:00
|
|
|
result = article.activity_stream_log('create', user_id)
|
2013-09-28 00:07:11 +00:00
|
|
|
|
2013-10-07 03:38:07 +00:00
|
|
|
# force log
|
2016-02-22 19:58:23 +00:00
|
|
|
result = article.activity_stream_log('create', user_id, true)
|
2013-10-07 03:38:07 +00:00
|
|
|
|
2013-09-28 00:07:11 +00:00
|
|
|
returns
|
|
|
|
|
|
|
|
result = true # false
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
2016-02-22 19:58:23 +00:00
|
|
|
def activity_stream_log(type, user_id, force = false)
|
2015-05-01 13:08:43 +00:00
|
|
|
|
|
|
|
# return if we run import mode
|
|
|
|
return if Setting.get('import_mode')
|
|
|
|
|
|
|
|
# return if we run on init mode
|
|
|
|
return if !Setting.get('system_init_done')
|
|
|
|
|
2016-08-12 16:39:09 +00:00
|
|
|
permission = self.class.activity_stream_support_config[:permission]
|
2015-05-01 13:08:43 +00:00
|
|
|
updated_at = self.updated_at
|
|
|
|
if force
|
2015-05-08 10:20:33 +00:00
|
|
|
updated_at = Time.zone.now
|
2013-10-07 03:38:07 +00:00
|
|
|
end
|
2015-05-01 13:08:43 +00:00
|
|
|
ActivityStream.add(
|
|
|
|
o_id: self['id'],
|
|
|
|
type: type,
|
|
|
|
object: self.class.name,
|
|
|
|
group_id: self['group_id'],
|
2016-08-12 16:39:09 +00:00
|
|
|
permission: permission,
|
2015-05-01 13:08:43 +00:00
|
|
|
created_at: updated_at,
|
|
|
|
created_by_id: user_id,
|
|
|
|
)
|
2013-09-28 00:07:11 +00:00
|
|
|
end
|
2014-02-03 19:23:00 +00:00
|
|
|
end
|