mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-30 18:47:51 +00:00 
			
		
		
		
	 ea44a32758
			
		
	
	ea44a32758
	
	
	
		
			
			- added hCaptcha based verification for chatwoot signups Co-authored-by: Sojan <sojan@pepalo.com>
		
			
				
	
	
		
			74 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| class Api::V1::AccountsController < Api::BaseController
 | |
|   include AuthHelper
 | |
| 
 | |
|   skip_before_action :authenticate_user!, :set_current_user, :handle_with_exception,
 | |
|                      only: [:create], raise: false
 | |
|   before_action :check_signup_enabled, only: [:create]
 | |
|   before_action :validate_captcha, only: [:create]
 | |
|   before_action :fetch_account, except: [:create]
 | |
|   before_action :check_authorization, except: [:create]
 | |
| 
 | |
|   rescue_from CustomExceptions::Account::InvalidEmail,
 | |
|               CustomExceptions::Account::UserExists,
 | |
|               CustomExceptions::Account::UserErrors,
 | |
|               with: :render_error_response
 | |
| 
 | |
|   def create
 | |
|     @user, @account = AccountBuilder.new(
 | |
|       account_name: account_params[:account_name],
 | |
|       user_full_name: account_params[:user_full_name],
 | |
|       email: account_params[:email],
 | |
|       user_password: account_params[:password],
 | |
|       user: current_user
 | |
|     ).perform
 | |
|     if @user
 | |
|       send_auth_headers(@user)
 | |
|       render 'api/v1/accounts/create.json', locals: { resource: @user }
 | |
|     else
 | |
|       render_error_response(CustomExceptions::Account::SignupFailed.new({}))
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   def show
 | |
|     @latest_chatwoot_version = ::Redis::Alfred.get(::Redis::Alfred::LATEST_CHATWOOT_VERSION)
 | |
|     render 'api/v1/accounts/show.json'
 | |
|   end
 | |
| 
 | |
|   def update
 | |
|     @account.update!(account_params.slice(:name, :locale, :domain, :support_email, :auto_resolve_duration))
 | |
|   end
 | |
| 
 | |
|   def update_active_at
 | |
|     @current_account_user.active_at = Time.now.utc
 | |
|     @current_account_user.save!
 | |
|     head :ok
 | |
|   end
 | |
| 
 | |
|   private
 | |
| 
 | |
|   def fetch_account
 | |
|     @account = current_user.accounts.find(params[:id])
 | |
|     @current_account_user = @account.account_users.find_by(user_id: current_user.id)
 | |
|   end
 | |
| 
 | |
|   def account_params
 | |
|     params.permit(:account_name, :email, :name, :password, :locale, :domain, :support_email, :auto_resolve_duration, :user_full_name)
 | |
|   end
 | |
| 
 | |
|   def check_signup_enabled
 | |
|     raise ActionController::RoutingError, 'Not Found' if GlobalConfigService.load('ENABLE_ACCOUNT_SIGNUP', 'false') == 'false'
 | |
|   end
 | |
| 
 | |
|   def validate_captcha
 | |
|     raise ActionController::InvalidAuthenticityToken, 'Invalid Captcha' unless ChatwootCaptcha.new(params[:h_captcha_client_response]).valid?
 | |
|   end
 | |
| 
 | |
|   def pundit_user
 | |
|     {
 | |
|       user: current_user,
 | |
|       account: @account,
 | |
|       account_user: @current_account_user
 | |
|     }
 | |
|   end
 | |
| end
 |