The Anti-Corruption Layer, or ACL, is a pattern that isolates and protects a system from legacy or dependencies out of its control. It acts as a mediator, translating and adapting data between different components, ensuring they communicate without corrupting each other's data or logic.
To illustrate this pattern, let's see an example of an application that uses third-party API to charge a credit card.
Let's start seeing the code structure of this example:
├── Rakefile
├── config.rb
├── app
│ └── models
│ └── payment
│ └── charge_credit_card.rb
├── lib
│ ├── payment_gateways
│ │ ├── adapters
│ │ │ ├── circle_up.rb
│ │ │ └── pay_friend.rb
│ │ ├── contract.rb
│ │ └── response.rb
│ └── payment_gateways.rb
└── vendor
├── circle_up
│ └── client.rb
└── pay_friend
└── client.rb
The files and directories are organized as follows:
Rakefileruns the application.config.rbfile contains the configurations.appdirectory contains the domain model where the business process to charge a credit card is implemented.libdirectory contains the payment gateways contract and adapters.vendordirectory contains the third-party API clients.
The ACL is implemented in the PaymentGateways module (see lib/payment_gateways.rb). It translates the third-party APIs (see vendor) into something known by the application's domain model. Through this module, the application can charge a credit card without knowing the details/internals of the vendors.
The PaymentGateways::ChargeCreditCard class (see app/models/payment/charge_credit_card.rb) usesPaymentGateways::Contract to ensure the payment_gateway object implements the required and known interface (input and output) to charge a credit card.
module Payment
class ChargeCreditCard
include ::Solid::Output.mixin(config: { addon: { continue: true } })
attr_reader :payment_gateway
def initialize(payment_gateway)
@payment_gateway = ::PaymentGateways::Contract.new(payment_gateway)
end
def call(amount:, details: {})
Given(amount:)
.and_then(:validate_amount)
.and_then(:charge_credit_card, details:)
.and_expose(:payment_charged, %i[payment_id])
end
private
def validate_amount(amount:)
return Continue() if amount.is_a?(::Numeric) && amount.positive?
Failure(:invalid_amount, erros: ['amount must be positive'])
end
def charge_credit_card(amount:, details:)
response = payment_gateway.charge_credit_card(amount:, details:)
Continue(payment_id: ::SecureRandom.uuid) if response.success?
end
end
endThe PaymentGateways::Contract defines the interface of the payment gateways. It is implemented by the PaymentGateways::Adapters::CircleUp and PaymentGateways::Adapters::PayFriend adapters.
module PaymentGateways
class Contract < ::Solid::Adapters::Proxy
def charge_credit_card(params)
params => { amount: Numeric, details: Hash }
outcome = object.charge_credit_card(params)
outcome => Response[true | false]
outcome
end
end
endIn this case, the contract will ensure the input by using the => pattern-matching operator, which will raise an exception if it does not match the expected types. After that, it calls the adapter's charge_credit_card method and ensures the output is a PaymentGateways::Response by using the => operator again.
The response (see lib/payment_gateways/response.rb) will ensure the ACL, as it is the object known/exposed to the application.
module PaymentGateways
Response = ::Struct.new(:success?)
endLet's see the payment gateways adapters:
lib/payment_gateways/adapters/circle_up.rb
module PaymentGateways
class Adapters::CircleUp
attr_reader :client
def initialize
@client = ::CircleUp::Client.new
end
def charge_credit_card(params)
params => { amount:, details: }
response = client.charge_cc(amount, details)
Response.new(response.ok?)
end
end
endlib/payment_gateways/adapters/pay_friend.rb
module PaymentGateways
class Adapters::PayFriend
attr_reader :client
def initialize
@client = ::PayFriend::Client.new
end
def charge_credit_card(params)
params => { amount:, details: }
response = client.charge(amount:, payment_data: details, payment_method: 'credit_card')
Response.new(response.status == 'success')
end
end
endYou can see that each third-party API has its way of charging a credit card, so the adapters are responsible for translating the input/output from the third-party APIs to the output known by the application (the PaymentGateways::Response).
The benefit of doing this is that the core business logic is decoupled from the legacy/external dependencies, which makes it easier to test and promote changes in the code.
Using this example, if the third-party APIs change, we just need to implement a new adapter and make the business processes (Payment::ChargeCreditCard) use it. The business processes will not be affected as it is protected by the ACL.
Use this pattern when there is a real need to decouple the core business logic from external dependencies.
You can start with a simple implementation (without ACL) and refactor it to use this pattern when the need arises.
You can eliminate the overhead by disabling the Solid::Adapters::Proxy class, which is a proxy that forwards all the method calls to the object it wraps.
When it is disabled, the Solid::Adapters::Proxy.new returns the given object so that the method calls are made directly to it.
To disable it, set the configuration to false:
Solid::Adapters.configuration do |config|
config.proxy_enabled = false
endIn the same directory as this README, run:
rake
# -- CircleUp --
#
# #<Solid::Output::Success type=:payment_charged value={:payment_id=>"2df767d0-af83-4657-b28d-6605044ffe2c"}>
#
# -- PayFriend --
#
# #<Solid::Output::Success type=:payment_charged value={:payment_id=>"dd2af4cc-8484-4f6a-bc35-f7a5e6917ecc"}>