2020-04-10 19:51:34 +00:00
|
|
|
class Api::NonprofitsController < ApplicationController
|
2020-04-17 20:30:54 +00:00
|
|
|
rescue_from ActiveRecord::RecordInvalid, with: :record_invalid_rescue
|
2020-04-10 19:51:34 +00:00
|
|
|
# requires :nonprofit, type: Hash do
|
|
|
|
# requires :name, type: String, desc: 'Organization Name', allow_blank: false, documentation: { param_type: 'body' }
|
|
|
|
# requires :zip_code, type: String, allow_blank: false, desc: 'Organization Address ZIP Code', documentation: { param_type: 'body' }
|
|
|
|
# requires :state_code, type: String, allow_blank: false, desc: 'Organization Address State Code', documentation: { param_type: 'body' }
|
|
|
|
# requires :city, type: String, allow_blank: false, desc: 'Organization Address City', documentation: { param_type: 'body' }
|
|
|
|
# end
|
|
|
|
|
|
|
|
# requires :user, type: Hash do
|
|
|
|
# requires :name, type: String, desc: 'Full name', allow_blank: false, documentation: { param_type: 'body' }
|
|
|
|
# requires :email, type: String, desc: 'Username', allow_blank: false, documentation: { param_type: 'body' }
|
|
|
|
# requires :password, type: String, desc: 'Password', allow_blank: false, is_equal_to: :password_confirmation, documentation: { param_type: 'body' }
|
|
|
|
def create
|
2020-04-17 20:30:54 +00:00
|
|
|
#model = CreateModel.new(clean_params)
|
2020-04-10 19:51:34 +00:00
|
|
|
Qx.transaction do
|
2020-04-17 20:30:54 +00:00
|
|
|
# raise Errors::MessageInvalid.new(model) unless model.valid?
|
|
|
|
nonprofit = Nonprofit.new(clean_params)
|
|
|
|
nonprofit.save!
|
2020-04-10 19:51:34 +00:00
|
|
|
end
|
|
|
|
# Qx.transaction do
|
|
|
|
# byebug
|
|
|
|
# np = ::Nonprofit.new(OnboardAccounts.set_nonprofit_defaults(clean_params[:nonprofit]))
|
|
|
|
|
|
|
|
# begin
|
|
|
|
# np.save!
|
|
|
|
# rescue ActiveRecord::RecordInvalid => e
|
|
|
|
# if e.record.errors[:slug]
|
|
|
|
# begin
|
|
|
|
# slug = SlugNonprofitNamingAlgorithm.new(np.state_code_slug, np.city_slug).create_copy_name(np.slug)
|
|
|
|
# np.slug = slug
|
|
|
|
# np.save!
|
|
|
|
# rescue UnableToCreateNameCopyError
|
|
|
|
# raise Grape::Exceptions::ValidationErrors.new(errors: [Grape::Exceptions::Validation.new(
|
|
|
|
# params: ['nonprofit[name]'],
|
|
|
|
# message: 'has an invalid slug. Contact support for help.'
|
|
|
|
# )])
|
|
|
|
# end
|
|
|
|
# else
|
|
|
|
# raise e
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
|
|
|
|
# u = User.new(clean_params[:user])
|
|
|
|
# u.save!
|
|
|
|
|
|
|
|
# role = u.roles.build(host: np, name: 'nonprofit_admin')
|
|
|
|
# role.save!
|
|
|
|
|
|
|
|
# billing_plan = BillingPlan.find(Settings.default_bp.id)
|
|
|
|
# b_sub = np.build_billing_subscription(billing_plan: billing_plan, status: 'active')
|
|
|
|
# b_sub.save!
|
|
|
|
# rescue ActiveRecord::RecordInvalid => e
|
|
|
|
# class_to_name = { Nonprofit => 'nonprofit', User => 'user' }
|
|
|
|
# if class_to_name[e.record.class]
|
|
|
|
# errors = e.record.errors.keys.map do |k|
|
|
|
|
# errors = e.record.errors[k].uniq
|
|
|
|
# errors.map do |error|
|
|
|
|
# Grape::Exceptions::Validation.new(
|
|
|
|
# params: ["#{class_to_name[e.record.class]}[#{k}]"],
|
|
|
|
# message: error
|
|
|
|
# )
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
|
|
|
|
# raise Grape::Exceptions::ValidationErrors.new(errors: errors.flatten)
|
|
|
|
# else
|
|
|
|
# raise e
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
end
|
|
|
|
|
2020-04-17 20:30:54 +00:00
|
|
|
private
|
|
|
|
def record_invalid_rescue(error)
|
|
|
|
render json:{errors: error.record.errors.messages}, status: :unprocessable_entity
|
|
|
|
end
|
|
|
|
|
|
|
|
def change_to_errors(message)
|
|
|
|
message.model.errors.keys.map do |k|
|
|
|
|
errors = e.record.errors[k].uniq
|
|
|
|
errors.map do |error|
|
|
|
|
Grape::Exceptions::Validation.new(
|
|
|
|
params: ["#{class_to_name[e.record.class]}[#{k}]"],
|
|
|
|
message: error
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def flatten_errors(hash_or_array, parent=nil)
|
|
|
|
if hash_or_array.keys
|
|
|
|
result = hash_or_array.keys.map{|i|
|
|
|
|
param = !parent ? i : "#{parent}[#{i}]"
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return hash_or_array;
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-04-10 19:51:34 +00:00
|
|
|
def clean_params
|
|
|
|
params.permit(nonprofit: [:name, :zip_code, :state_code, :city], user: [:name, :email, :password])
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|