This repository provides a connect for integration to Adyen payment service provider (PSP).
- Typescript language supported.
- Uses Fastify as web server framework.
- Uses commercetools SDK for the commercetools-specific communication.
- Uses connect payment SDK to manage request context, sessions and JWT authentication.
- Includes local development utilities in npm commands to build, start, test, lint & prettify code.
The adyen-integration connector contains two modules :
- Enabler: Acts as a wrapper implementation in which frontend components from Adyen embedded. It gives control to checkout product on when and how to load the connector frontend based on business configuration. In cases connector is used directly and not through Checkout product, the connector library can be loaded directly on frontend than the PSP one.
- Processor : Acts as backend services which is middleware to integrate with Adyen platform. It is mainly responsible for managing transactions with Adyen and updating payment entity in composable commerce.
connect-payment-sdk
will be offered to be used in connector to manage request context, sessions and other tools necessary to transact.
%%{ init : { "theme" : "", "flowchart" : { "defaultRenderer": "dagre-wrapper", "curve" : "linear" }}}%%
flowchart TD
node1(( ))
node2(( ))
user("User")-->checkout("Commercetools Checkout")
subgraph connector
enabler
processor
end
subgraph coco["Commercetools Composable Commerce"]
cart
order
payment
end
checkout----node1
node1--"1. Cart management"-->cart("cart")
node1--"2. Order management"-->order("order")
checkout("Commercetools Checkout")----node2
node2--"3. Get static assets"-->enabler("enabler")
node2--"4. Request payment \noperations"-->processor("processor")
processor--"5. Request payment \noperations"-->psp("Adyen payment service provider")
psp("Adyen payment service provider")--"6. Return response"-->processor
processor--"7. Payment management"-->payment("payment")
- commercetools Checkout in front-end side sends requests to composable commerce for cart creation.
- commercetools Checkout retrieves SDK as static assets from enabler in connector.
- After downloading the SDK, commercetools Checkout sends request via the SDK to endpoints exposed by processor for various payment operations.
- The processor transforms the received request and send them to Ayden platform.
- Adyen processes the payment operations and return the response to processor.
- The processor handles the payment persistence to composable commerce, and return the result to front-end.
- commercetools Checkout handles the order management in composable commerce once it receives the result from the processor.
Users are expected to create API client responsible for payment management in composable commerce project. Details of the API client are taken as input as environment variables/ configuration for connect such as CTP_PROJECT_KEY
, CTP_CLIENT_ID
, CTP_CLIENT_SECRET
. For details, please read Deployment Configuration.
In addition, please make sure the API client should have enough scope to be able to manage payment. For details, please refer to Running Application
Various URLs from commercetools platform are required to be configured so that the connect application can handle session and authentication process for endpoints.
Their values are taken as input as environment variables/ configuration for connect with variable names CTP_API_URL
, CTP_AUTH_URL
and CTP_SESSION_URL
.
Various account data provided by Adyen are necessary to be configured so that the requests from the connect application can be authenticated by Adyen platform within the integration.
Their values are taken as input as environment variables/ configuration for connect with variable names ADYEN_API_KEY
, ADYEN_NOTIFICATION_HMAC_KEY
, ADYEN_MERCHANT_ACCOUNT
, ADYEN_CLIENT_KEY
, ADYEN_LIVE_URL_PREFIX
and ADYEN_ENVIRONMENT
.
Regarding the development of enabler module, please refer to the following documentations:
Regarding the development of processor module, please refer to the following documentations:
Use public connector listed in connect marketplace. If any customization done, follow guidelines here to register the connector for private use.
In order to deploy your customized connector application on commercetools Connect, it needs to be published. For details, please refer to documentation about commercetools Connect In addition, in order to support connect, the adyen payment integration connector has a folder structure as listed below
├── enabler
│ ├── src
│ ├── test
│ └── package.json
├── processor
│ ├── src
│ ├── test
│ └── package.json
└── connect.yaml
Connect deployment configuration is specified in connect.yaml
which is required information needed for publishing of the application. Following is the deployment configuration used by enabler and processor modules
deployAs:
- name: enabler
applicationType: assets
- name: processor
applicationType: service
endpoint: /
configuration:
standardConfiguration:
- key: CTP_PROJECT_KEY
description: commercetools project key
required: true
- key: CTP_AUTH_URL
description: commercetools Auth URL
required: true
default: https://auth.europe-west1.gcp.commercetools.com
- key: CTP_API_URL
description: commercetools API URL
required: true
default: https://api.europe-west1.gcp.commercetools.com
- key: CTP_SESSION_URL
description: Session API URL
required: true
default: https://session.europe-west1.gcp.commercetools.com
- key: CTP_CLIENT_ID
description: commercetools client ID with manage_payments, manage_orders, view_sessions, view_api_clients, manage_checkout_payment_intents & introspect_oauth_tokens scopes
required: true
- key: ADYEN_ENVIRONMENT
description: Adyen environment
required: true
default: TEST
- key: ADYEN_MERCHANT_ACCOUNT
description: Adyen merchant account
required: true
- key: ADYEN_CLIENT_KEY
description: Adyen client key
required: true
- key: ADYEN_LIVE_URL_PREFIX
description: Adyen live URL prefix
- key: MERCHANT_RETURN_URL
description: Merchant return URL
required: true
- key: CTP_JWKS_URL
description: JWKs url (example - https://mc-api.europe-west1.gcp.commercetools.com/.well-known/jwks.json)
required: true
default: https://mc-api.europe-west1.gcp.commercetools.com/.well-known/jwks.json
- key: CTP_JWT_ISSUER
description: JWT Issuer for jwt validation (example - https://mc-api.europe-west1.gcp.commercetools.com)
required: true
default: https://mc-api.europe-west1.gcp.commercetools.com
- key: ADYEN_APPLEPAY_OWN_MERCHANT_ID
description: Apple merchant ID. Needed when using own certificate
required: false
- key: ADYEN_APPLEPAY_OWN_MERCHANT_DOMAIN
description: Apple merchant domain. Needed when using own certificate
required: false
- key: ADYEN_APPLEPAY_OWN_DISPLAY_NAME
description: Apple display name. Needed when using own certificate
required: false
securedConfiguration:
- key: CTP_CLIENT_SECRET
description: commercetools client secret
required: true
- key: ADYEN_API_KEY
description: Adyen API key
required: true
- key: ADYEN_NOTIFICATION_HMAC_KEY
description: Adyen HMAC key
required: true
- key: ADYEN_APPLEPAY_OWN_CERTIFICATE
description: Apple Pay own certificate
required: false
Here you can see the details about various variables in configuration
CTP_PROJECT_KEY
: The key of commercetools composable commerce project.CTP_CLIENT_ID
: The client ID of your commercetools composable commerce user account. It is used in commercetools client to communicate with commercetools composable commerce via SDK. Expected scopes are:manage_payments
manage_orders
view_sessions
view_api_clients
manage_checkout_payment_intents
introspect_oauth_tokens
.CTP_CLIENT_SECRET
: The client secret of commercetools composable commerce user account. It is used in commercetools client to communicate with commercetools composable commerce via SDK.CTP_AUTH_URL
: The URL for authentication in commercetools platform. It is used to generate OAuth 2.0 token which is required in every API call to commercetools composable commerce. The default value ishttps://auth.europe-west1.gcp.commercetools.com
. For details, please refer to documentation here.CTP_API_URL
: The URL for commercetools composable commerce API. Default value ishttps://api.europe-west1.gcp.commercetools.com
.CTP_SESSION_URL
: The URL for session creation in commercetools platform. Connectors relies on the session created to be able to share information between enabler and processor. The default value ishttps://session.europe-west1.gcp.commercetools.com
.CTP_JWKS_URL
: The URL which provides JSON Web Key Set. Default value ishttps://mc-api.europe-west1.gcp.commercetools.com/.well-known/jwks.json
.CTP_JWT_ISSUER
: The issuer inside JSON Web Token which is required in JWT validation process. Default value isdefault: https://mc-api.europe-west1.gcp.commercetools.com
ADYEN_ENVIRONMENT
: The indicator of adyen environment. Default value isTEST
. It can be configured either asLIVE
orTEST
.ADYEN_MERCHANT_ACCOUNT
: The name of adyen merchant account.ADYEN_CLIENT_KEY
: Client key provided by Adyen for client-side authentication. For details, please refer to Adyen client-side authentication.ADYEN_LIVE_URL_PREFIX
: It represents live endpoint prefix used by Adyen platform. It is only required for Adyen live environment. For details, please refer to Adyen live endpoints.MERCHANT_RETURN_URL
: The return URL located in merchant platform.ADYEN_API_KEY
: It represents the API Key used for Ayden request authentication. For details, please refer to Ayden API key authentication.ADYEN_NOTIFICATION_HMAC_KEY
: It represents a hash-based signature within Ayden webhook event. It aims at protecting the connector from any unauthorized webhook event. For details, please refer to Verify HMAC signatures.ADYEN_APPLEPAY_OWN_CERTIFICATE
: The merchant identity certificate. This is only needed if using an own certificate instead of the Adyen's Apple Pay certificate. Follow Adyen's guide to create the certificate. The value should be in base64 format.ADYEN_APPLEPAY_OWN_MERCHANT_ID
: The merchant identifier created in the Apple portal. Only needed if using an own certificateADYEN_APPLEPAY_OWN_MERCHANT_DOMAIN
:The merchant domain verified in the Apple portal. Only needed if using an own certificate. Do not add the https protocol.ADYEN_APPLEPAY_OWN_DISPLAY_NAME
: A string of 64 or fewer UTF-8 characters containing the canonical name for your store, suitable for display. This needs to remain a consistent value for the store and shouldn’t contain dynamic values such as incrementing order numbers. Only needed if using an own certificate.
In order to get started developing this connector certain configuration are necessary, most of which involve updating environment variables in both services (enabler, processor).
Navigate to each service directory and duplicate the .env.template file, renaming the copy to .env. Populate the newly created .env file with the appropriate values.
cp .env.template .env
With the help of docker compose, you are able to spin up all necessary components required for developing the connector by running the following command from the root directory;
docker compose up
This command would start 3 required services, necessary for development
- JWT Server
- Enabler
- Processor