2020-03-09 17:57:10 +00:00
|
|
|
class Api::V1::Accounts::AccountsController < Api::BaseController
|
2019-12-24 12:02:27 +00:00
|
|
|
include AuthHelper
|
|
|
|
|
2019-10-20 08:47:26 +00:00
|
|
|
skip_before_action :verify_authenticity_token, only: [:create]
|
2019-08-14 09:48:44 +00:00
|
|
|
skip_before_action :authenticate_user!, :set_current_user, :check_subscription, :handle_with_exception,
|
|
|
|
only: [:create], raise: false
|
2020-02-29 05:50:33 +00:00
|
|
|
before_action :check_signup_enabled
|
2019-08-14 09:48:44 +00:00
|
|
|
|
|
|
|
rescue_from CustomExceptions::Account::InvalidEmail,
|
|
|
|
CustomExceptions::Account::UserExists,
|
|
|
|
CustomExceptions::Account::UserErrors,
|
|
|
|
with: :render_error_response
|
|
|
|
|
|
|
|
def create
|
2019-12-26 06:22:14 +00:00
|
|
|
@user = AccountBuilder.new(
|
|
|
|
account_name: account_params[:account_name],
|
|
|
|
email: account_params[:email]
|
|
|
|
).perform
|
2019-08-14 09:48:44 +00:00
|
|
|
if @user
|
2019-12-24 12:02:27 +00:00
|
|
|
send_auth_headers(@user)
|
2020-03-09 17:57:10 +00:00
|
|
|
render 'devise/auth.json', locals: { resource: @user }
|
2019-08-14 09:48:44 +00:00
|
|
|
else
|
|
|
|
render_error_response(CustomExceptions::Account::SignupFailed.new({}))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2019-12-24 12:02:27 +00:00
|
|
|
def account_params
|
2019-12-26 06:22:14 +00:00
|
|
|
params.permit(:account_name, :email)
|
2019-08-14 09:48:44 +00:00
|
|
|
end
|
2020-02-29 05:50:33 +00:00
|
|
|
|
|
|
|
def check_signup_enabled
|
|
|
|
raise ActionController::RoutingError, 'Not Found' if ENV.fetch('ENABLE_ACCOUNT_SIGNUP', true) == 'false'
|
|
|
|
end
|
2019-08-14 09:48:44 +00:00
|
|
|
end
|