mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 19:17:48 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			947 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			947 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| class Api::V1::Widget::ContactsController < Api::V1::Widget::BaseController
 | |
|   before_action :process_hmac
 | |
| 
 | |
|   def show; end
 | |
| 
 | |
|   def update
 | |
|     contact_identify_action = ContactIdentifyAction.new(
 | |
|       contact: @contact,
 | |
|       params: permitted_params.to_h.deep_symbolize_keys
 | |
|     )
 | |
|     render json: contact_identify_action.perform
 | |
|   end
 | |
| 
 | |
|   private
 | |
| 
 | |
|   def process_hmac
 | |
|     return if params[:identifier_hash].blank? && !@web_widget.hmac_mandatory
 | |
| 
 | |
|     render json: { error: 'HMAC failed: Invalid Identifier Hash Provided' }, status: :unauthorized unless valid_hmac?
 | |
| 
 | |
|     @contact_inbox.update(hmac_verified: true)
 | |
|   end
 | |
| 
 | |
|   def valid_hmac?
 | |
|     params[:identifier_hash] == OpenSSL::HMAC.hexdigest(
 | |
|       'sha256',
 | |
|       @web_widget.hmac_token,
 | |
|       params[:identifier].to_s
 | |
|     )
 | |
|   end
 | |
| 
 | |
|   def permitted_params
 | |
|     params.permit(:website_token, :identifier, :identifier_hash, :email, :name, :avatar_url, :phone_number, custom_attributes: {})
 | |
|   end
 | |
| end
 | 
