42 lines
864 B
Ruby
42 lines
864 B
Ruby
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
class Sessions::Event::ChatSessionNotice < Sessions::Event::ChatBase
|
|
|
|
=begin
|
|
|
|
a customer action has triggered a notice to the agent (e. g. view url of customer has changed)
|
|
|
|
payload
|
|
|
|
{
|
|
event: 'chat_session_notice',
|
|
data: {
|
|
message: 'url has changed to http://localhost',
|
|
},
|
|
}
|
|
|
|
return is sent as message back to peer
|
|
|
|
=end
|
|
|
|
def run
|
|
return super if super
|
|
return if !check_chat_session_exists
|
|
|
|
chat_session = current_chat_session
|
|
return if !chat_session
|
|
return if !@payload['data']['message']
|
|
|
|
message = {
|
|
event: 'chat_session_notice',
|
|
data: {
|
|
session_id: chat_session.session_id,
|
|
message: @payload['data']['message'],
|
|
},
|
|
}
|
|
chat_session.send_to_recipients(message, @client_id)
|
|
|
|
nil
|
|
end
|
|
|
|
end
|