2021-06-01 12:20:20 +00:00
|
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
2017-12-18 03:36:56 +00:00
|
|
|
module Chat::Session::Assets
|
2018-04-26 08:55:53 +00:00
|
|
|
extend ActiveSupport::Concern
|
2017-12-18 03:36:56 +00:00
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
get all assets / related models for this chat
|
|
|
|
|
|
|
|
chat = Chat::Session.find(123)
|
|
|
|
result = Chat::Session.assets(assets_if_exists)
|
|
|
|
|
|
|
|
returns
|
|
|
|
|
|
|
|
result = {
|
|
|
|
users: {
|
|
|
|
123: user_model_123,
|
|
|
|
1234: user_model_1234,
|
|
|
|
},
|
|
|
|
chat_sessions: [ chat_session_model1 ]
|
|
|
|
}
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def assets(data)
|
|
|
|
|
|
|
|
app_model_chat_session = Chat::Session.to_app_model
|
|
|
|
|
2019-11-18 19:19:35 +00:00
|
|
|
if !data[ app_model_chat_session ]
|
|
|
|
data[ app_model_chat_session ] = {}
|
|
|
|
end
|
|
|
|
return data if data[ app_model_chat_session ][ id ]
|
2017-12-18 03:36:56 +00:00
|
|
|
|
2019-11-18 19:19:35 +00:00
|
|
|
data[ app_model_chat_session ][ id ] = attributes_with_association_ids
|
|
|
|
data[ app_model_chat_session ][ id ]['messages'] = []
|
|
|
|
messages.each do |message|
|
|
|
|
data[ app_model_chat_session ][ id ]['messages'].push message.attributes
|
2017-12-18 03:36:56 +00:00
|
|
|
end
|
2019-11-18 19:19:35 +00:00
|
|
|
data[ app_model_chat_session ][ id ]['tags'] = tag_list
|
2017-12-18 03:36:56 +00:00
|
|
|
|
2019-11-18 19:19:35 +00:00
|
|
|
app_model_chat = Chat.to_app_model
|
2017-12-18 03:36:56 +00:00
|
|
|
if !data[ app_model_chat ] || !data[ app_model_chat ][ chat_id ]
|
|
|
|
chat = Chat.lookup(id: chat_id)
|
|
|
|
if chat
|
|
|
|
data = chat.assets(data)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-11-18 19:19:35 +00:00
|
|
|
app_model_user = User.to_app_model
|
2017-12-18 03:36:56 +00:00
|
|
|
%w[created_by_id updated_by_id].each do |local_user_id|
|
|
|
|
next if !self[ local_user_id ]
|
|
|
|
next if data[ app_model_user ] && data[ app_model_user ][ self[ local_user_id ] ]
|
2018-10-09 06:17:41 +00:00
|
|
|
|
2017-12-18 03:36:56 +00:00
|
|
|
user = User.lookup(id: self[ local_user_id ])
|
|
|
|
next if !user
|
2018-10-09 06:17:41 +00:00
|
|
|
|
2017-12-18 03:36:56 +00:00
|
|
|
data = user.assets(data)
|
|
|
|
end
|
|
|
|
data
|
|
|
|
end
|
|
|
|
end
|