mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 02:57:57 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			69 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			69 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| class Api::V1::Widget::MessagesController < Api::V1::Widget::BaseController
 | |
|   before_action :set_conversation, only: [:create]
 | |
|   before_action :set_message, only: [:update]
 | |
| 
 | |
|   def index
 | |
|     @messages = conversation.nil? ? [] : message_finder.perform
 | |
|   end
 | |
| 
 | |
|   def create
 | |
|     @message = conversation.messages.new(message_params)
 | |
|     @message.save
 | |
|     build_attachment
 | |
|   end
 | |
| 
 | |
|   def update
 | |
|     if @message.content_type == 'input_email'
 | |
|       @message.update!(submitted_email: contact_email)
 | |
|       update_contact(contact_email)
 | |
|     else
 | |
|       @message.update!(message_update_params[:message])
 | |
|     end
 | |
|   rescue StandardError => e
 | |
|     render json: { error: @contact.errors, message: e.message }.to_json, status: :internal_server_error
 | |
|   end
 | |
| 
 | |
|   private
 | |
| 
 | |
|   def build_attachment
 | |
|     return if params[:message][:attachments].blank?
 | |
| 
 | |
|     params[:message][:attachments].each do |uploaded_attachment|
 | |
|       attachment = @message.attachments.new(
 | |
|         account_id: @message.account_id,
 | |
|         file_type: helpers.file_type(uploaded_attachment&.content_type)
 | |
|       )
 | |
|       attachment.file.attach(uploaded_attachment)
 | |
|     end
 | |
|     @message.save!
 | |
|   end
 | |
| 
 | |
|   def set_conversation
 | |
|     @conversation = create_conversation if conversation.nil?
 | |
|   end
 | |
| 
 | |
|   def message_finder_params
 | |
|     {
 | |
|       filter_internal_messages: true,
 | |
|       before: permitted_params[:before]
 | |
|     }
 | |
|   end
 | |
| 
 | |
|   def message_finder
 | |
|     @message_finder ||= MessageFinder.new(conversation, message_finder_params)
 | |
|   end
 | |
| 
 | |
|   def message_update_params
 | |
|     params.permit(message: [{ submitted_values: [:name, :title, :value] }])
 | |
|   end
 | |
| 
 | |
|   def permitted_params
 | |
|     # timestamp parameter is used in create conversation method
 | |
|     params.permit(:id, :before, :website_token, contact: [:name, :email], message: [:content, :referer_url, :timestamp, :echo_id])
 | |
|   end
 | |
| 
 | |
|   def set_message
 | |
|     @message = @web_widget.inbox.messages.find(permitted_params[:id])
 | |
|   end
 | |
| end
 | 
