mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-29 18:22:53 +00:00
* fix: downcase email when finding * feat: add `from_email` class * refactor: use `from_email` * feat: add rule to disallow find_by email directly * chore: remove redundant test Since the previous imlpmentation didn't do a case-insentive search, a new user would be created, and the error would be raised at the DB layer. With the new changes, this test case is redundant * refactor: use from_email
79 lines
2.2 KiB
Ruby
79 lines
2.2 KiB
Ruby
module Integrations::Slack::SlackMessageHelper
|
|
def create_message
|
|
return unless conversation
|
|
|
|
build_message
|
|
@message.save!
|
|
{ status: 'success' }
|
|
rescue Slack::Web::Api::Errors::MissingScope => e
|
|
ChatwootExceptionTracker.new(e, account: conversation.account).capture_exception
|
|
disable_and_reauthorize
|
|
end
|
|
|
|
def disable_and_reauthorize
|
|
integration_hook.prompt_reauthorization!
|
|
integration_hook.disable
|
|
end
|
|
|
|
def build_message
|
|
@message = conversation.messages.build(
|
|
message_type: :outgoing,
|
|
account_id: conversation.account_id,
|
|
inbox_id: conversation.inbox_id,
|
|
content: Slack::Messages::Formatting.unescape(params[:event][:text] || ''),
|
|
external_source_id_slack: params[:event][:ts],
|
|
private: private_note?,
|
|
sender: sender
|
|
)
|
|
process_attachments(params[:event][:files]) if attachments_present?
|
|
end
|
|
|
|
def attachments_present?
|
|
params[:event][:files].present?
|
|
end
|
|
|
|
def process_attachments(attachments)
|
|
attachments.each do |attachment|
|
|
tempfile = Down::NetHttp.download(attachment[:url_private], headers: { 'Authorization' => "Bearer #{integration_hook.access_token}" })
|
|
|
|
attachment_params = {
|
|
file_type: file_type(attachment),
|
|
account_id: @message.account_id,
|
|
external_url: attachment[:url_private],
|
|
file: {
|
|
io: tempfile,
|
|
filename: tempfile.original_filename,
|
|
content_type: tempfile.content_type
|
|
}
|
|
}
|
|
|
|
attachment_obj = @message.attachments.new(attachment_params)
|
|
attachment_obj.file.content_type = attachment[:mimetype]
|
|
end
|
|
end
|
|
|
|
def file_type(attachment)
|
|
return if attachment[:mimetype] == 'text/plain'
|
|
|
|
case attachment[:filetype]
|
|
when 'png', 'jpeg', 'gif', 'bmp', 'tiff', 'jpg'
|
|
:image
|
|
when 'pdf'
|
|
:file
|
|
end
|
|
end
|
|
|
|
def conversation
|
|
@conversation ||= Conversation.where(identifier: params[:event][:thread_ts]).first
|
|
end
|
|
|
|
def sender
|
|
user_email = slack_client.users_info(user: params[:event][:user])[:user][:profile][:email]
|
|
conversation.account.users.from_email(user_email)
|
|
end
|
|
|
|
def private_note?
|
|
params[:event][:text].strip.downcase.starts_with?('note:', 'private:')
|
|
end
|
|
end
|