Sha256: c0aa109474ff5cd40732a73a4b1ae9b2c9d56eeb42cdcffa2c28ec0a1e75762b

Contents?: true

Size: 1.25 KB

Versions: 2

Compression:

Stored size: 1.25 KB

Contents

class ActiveRecordOperationsProcessor < JSONAPI::OperationsProcessor
  private

  def transaction
    if @transactional
      ActiveRecord::Base.transaction do
        yield
      end
    else
      yield
    end
  end

  def rollback
    fail ActiveRecord::Rollback if @transactional
  end

  def process_operation(operation)
    operation.apply
  rescue ActiveRecord::DeleteRestrictionError => e
    record_locked_error = JSONAPI::Exceptions::RecordLocked.new(e.message)
    return JSONAPI::ErrorsOperationResult.new(record_locked_error.errors[0].code, record_locked_error.errors)

  rescue ActiveRecord::RecordNotFound
    record_not_found = JSONAPI::Exceptions::RecordNotFound.new(operation.associated_key)
    return JSONAPI::ErrorsOperationResult.new(record_not_found.errors[0].code, record_not_found.errors)

  rescue JSONAPI::Exceptions::Error => e
    raise e

  rescue => e
    if JSONAPI.configuration.exception_class_whitelist.include?(e.class)
      raise e
    else
      internal_server_error = JSONAPI::Exceptions::InternalServerError.new(e)
      Rails.logger.error { "Internal Server Error: #{e.message} #{e.backtrace.join("\n")}" }
      return JSONAPI::ErrorsOperationResult.new(internal_server_error.errors[0].code, internal_server_error.errors)
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
jsonapi-resources-0.5.0 lib/jsonapi/active_record_operations_processor.rb
jsonapi-resources-0.4.4 lib/jsonapi/active_record_operations_processor.rb