medusa-payment-redsys
v1.0.2
Published
Redsys / Sermepa TPV Virtual payment provider plugin for MedusaJS v2
Downloads
125
Maintainers
Readme
medusa-payment-redsys
Redsys / Sermepa TPV Virtual payment provider plugin for MedusaJS v2.
This plugin enables payment processing through Redsys' hosted payment page (TPV Virtual) via redirect flow. Customers are redirected to the Redsys secure payment page to complete their transaction.
Production-proven: This plugin is derived from a live production Medusa store processing real Redsys payments.
Features
- Redsys hosted payment page / TPV Virtual redirect flow
- Sandbox and production environments
- One-step payment (immediate capture) and two-step payment (pre-authorization + capture)
- Full and partial refunds via Redsys API
- Payment cancellation
- Webhook handling with HMAC-SHA256 signature verification
- Spanish error messages for Redsys response codes
- Zero PCI scope — card data is handled by Redsys' secure page
Prerequisites
- MedusaJS v2.13.0 or later
- Node.js v20 or later
- A Redsys merchant account (or sandbox test credentials)
redsys-easyv5.3.0+ (installed automatically as a dependency)
Installation
npm install medusa-payment-redsys
# or
yarn add medusa-payment-redsys
# or
pnpm add medusa-payment-redsysConfiguration
Environment Variables
Add the following to your .env file:
REDSYS_SECRET_KEY=sq7Hj....
REDSYS_MERCHANT_CODE=999008881
REDSYS_TERMINAL=001
REDSYS_ENVIRONMENT=sandbox
REDSYS_NOTIFICATION_URL=https://your-api.com/hooks/payment/redsys_redsys
REDSYS_SUCCESS_URL=https://your-store.com/checkout/redsys-callback
REDSYS_ERROR_URL=https://your-store.com/checkout/redsys-callback?error=1For sandbox testing, use the following test credentials from Redsys:
Merchant Code: 999008881
Terminal: 001
Secret Key: sq7Hj.......
Environment: sandboxMedusa Configuration
In your medusa-config.ts:
import { defineConfig } from "@medusajs/framework/config"
export default defineConfig({
modules: [
{
resolve: "@medusajs/medusa/payment",
options: {
providers: [
{
resolve: "medusa-payment-redsys/providers/redsys",
id: "redsys",
options: {
secretKey: process.env.REDSYS_SECRET_KEY,
merchantCode: process.env.REDSYS_MERCHANT_CODE,
terminal: process.env.REDSYS_TERMINAL || "001",
environment:
process.env.REDSYS_ENVIRONMENT || "sandbox",
notificationUrl:
process.env.REDSYS_NOTIFICATION_URL,
successUrl: process.env.REDSYS_SUCCESS_URL,
errorUrl: process.env.REDSYS_ERROR_URL,
transactionType: "0", // "0" = immediate capture, "1" = pre-authorization
},
},
],
},
},
],
})Enable in Region
Enable the Redsys provider in your Medusa admin panel under Settings > Regions and select Redsys as a payment provider.
The provider ID will be:
pp_redsys_redsysOptions
| Option | Type | Required | Default | Description |
|---|---|---|---|---|
| secretKey | string | Yes | — | Redsys HMAC-SHA256 secret key |
| merchantCode | string | Yes | — | Redsys merchant code (FUC) |
| terminal | string | No | "001" | Terminal number |
| environment | string | No | "sandbox" | "sandbox" or "production" |
| notificationUrl | string | No | — | Webhook URL for Redsys to POST transaction results |
| successUrl | string | No | — | URL to redirect after successful payment (URLOK) |
| errorUrl | string | No | — | URL to redirect after failed payment (URLKO) |
| transactionType | string | No | "0" | "0" = immediate capture, "1" = pre-authorization |
Payment Flow
- Customer selects Redsys as payment method
initiatePayment()creates a signed redirect form with Redsys merchant parameters- Customer clicks "Place Order" → storefront calls
cart.complete()to create the order, then auto-submits the redirect form to Redsys TPV - Customer completes payment on the Redsys hosted payment page
- Redsys sends a webhook notification to
{backendUrl}/hooks/payment/redsys_redsys getWebhookActionAndData()validates the HMAC-SHA256 signature and updates the payment status- Redsys redirects the customer's browser to
successUrlorerrorUrl
Important: authorizePayment Behavior
This plugin's authorizePayment returns AUTHORIZED for sessions with status "pending" and "authorized". This is intentional for the redirect flow: the real authorization happens on Redsys TPV and is confirmed via webhook. Without this, cart.complete() would fail with a 400 error because Medusa requires the payment session to be authorized before completing the cart.
Storefront Integration
Redsys is a redirect-based payment method (no card input in your storefront — the customer enters card data on Redsys' secure TPV). You must adapt your Medusa Next.js storefront with the changes below.
1. src/lib/constants.tsx — Register the payment method
Add Redsys to the payment info map and add a helper function:
// Inside paymentInfoMap, add:
pp_redsys_redsys: {
title: "Credit / Debit Card",
icon: <CreditCard />,
},
// Add helper function:
export const isRedsys = (providerId?: string) => {
return providerId?.startsWith("pp_redsys_")
}2. src/lib/data/cart.ts — Add order completion without redirect
Add a completeCartWithoutRedirect function. The standard placeOrder does a redirect() (server-side), but Redsys needs to redirect the browser to the TPV instead. This function completes the cart, creates the order, but returns the result so the client can handle the TPV redirect:
export async function completeCartWithoutRedirect(cartId?: string) {
const id = cartId || (await getCartId())
if (!id) {
throw new Error("No existing cart found when completing cart")
}
const headers = {
...(await getAuthHeaders()),
}
const cartRes = await sdk.store.cart
.complete(id, {}, headers)
.then(async (cartRes) => {
const cartCacheTag = await getCacheTag("carts")
revalidateTag(cartCacheTag)
return cartRes
})
.catch(medusaError)
if (cartRes?.type === "order") {
const orderCacheTag = await getCacheTag("orders")
revalidateTag(orderCacheTag)
removeCartId()
}
return cartRes
}3. src/modules/checkout/components/payment-button/index.tsx — Redsys payment button
Add a RedsysPaymentButton component that:
- Reads the payment session data (formUrl, merchantParams, signature) from the cart
- Calls
completeCartWithoutRedirect()to create the order - Dynamically builds and auto-submits a
<form>to Redsys' TPV
// Add import:
import { isManual, isRedsys, isStripeLike } from "@lib/constants"
import { completeCartWithoutRedirect, placeOrder } from "@lib/data/cart"
// Add case in PaymentButton's switch:
case isRedsys(paymentSession?.provider_id):
return (
<RedsysPaymentButton
notReady={notReady}
cart={cart}
data-testid={dataTestId}
/>
)
// Add the component:
const RedsysPaymentButton = ({
cart,
notReady,
"data-testid": dataTestId,
}: {
cart: HttpTypes.StoreCart
notReady: boolean
"data-testid"?: string
}) => {
const [submitting, setSubmitting] = useState(false)
const [errorMessage, setErrorMessage] = useState<string | null>(null)
const handlePayment = async () => {
setSubmitting(true)
const paymentSession = cart.payment_collection?.payment_sessions?.find(
(s) => s.status === "pending" && isRedsys(s.provider_id)
)
const redsysData = paymentSession?.data as Record<string, string> | undefined
if (!redsysData?.formUrl || !redsysData?.merchantParams || !redsysData?.signature) {
setErrorMessage("No se pudieron obtener los datos de pago de Redsys")
setSubmitting(false)
return
}
const cartRes = await completeCartWithoutRedirect()
.catch((err) => {
setErrorMessage(err.message)
setSubmitting(false)
return null
})
if (!cartRes || cartRes.type !== "order") {
setErrorMessage(cartRes ? "Error al crear el pedido" : "")
setSubmitting(false)
return
}
const form = document.createElement("form")
form.method = "POST"
form.action = redsysData.formUrl
const fields: Record<string, string> = {
Ds_SignatureVersion: redsysData.signatureVersion,
Ds_MerchantParameters: redsysData.merchantParams,
Ds_Signature: redsysData.signature,
}
Object.entries(fields).forEach(([name, value]) => {
const input = document.createElement("input")
input.type = "hidden"
input.name = name
input.value = value
form.appendChild(input)
})
document.body.appendChild(form)
form.submit()
}
return (
<>
<Button
disabled={notReady || submitting}
isLoading={submitting}
onClick={handlePayment}
size="large"
data-testid={dataTestId}
>
Place order
</Button>
<ErrorMessage
error={errorMessage}
data-testid="redsys-payment-error-message"
/>
</>
)
}4. src/app/checkout/redsys-callback/page.tsx — Callback page (new file)
Create the page Redsys redirects to after payment. It reads the orderId query param and redirects to the order confirmation page:
import { retrieveOrder } from "@lib/data/orders"
import { Metadata } from "next"
import { redirect } from "next/navigation"
export const metadata: Metadata = {
title: "Resultado del pago",
description: "Resultado de la operación con Redsys",
}
type Props = {
searchParams: Promise<{ [key: string]: string | undefined }>
}
export default async function RedsysCallbackPage(props: Props) {
const searchParams = await props.searchParams
const isError = searchParams.error === "1"
const orderId = searchParams.orderId
if (isError) {
return (
<div className="flex flex-col items-center justify-center min-h-[50vh] gap-4 p-8">
<h1 className="text-2xl font-bold text-red-600">Pago no completado</h1>
<p className="text-gray-600">
La operación no se ha completado correctamente.
</p>
<a href="/" className="mt-4 px-6 py-2 bg-blue-600 text-white rounded-md hover:bg-blue-700">
Volver a la tienda
</a>
</div>
)
}
if (orderId) {
try {
const order = await retrieveOrder(orderId)
if (order) {
const countryCode = order.shipping_address?.country_code?.toLowerCase() || "dk"
return redirect(`/${countryCode}/order/${orderId}/confirmed`)
}
} catch {
// Order not found, show success anyway
}
}
return (
<div className="flex flex-col items-center justify-center min-h-[50vh] gap-4 p-8">
<h1 className="text-2xl font-bold text-green-600">Pago procesado</h1>
<p className="text-gray-600">Tu pago ha sido procesado correctamente.</p>
<a href="/" className="mt-4 px-6 py-2 bg-blue-600 text-white rounded-md hover:bg-blue-700">
Volver a la tienda
</a>
</div>
)
}5. src/middleware.ts — Bypass region redirect
If your storefront uses middleware to enforce region/country code prefixes in URLs (as the default Medusa Next.js storefront does), add a bypass so /checkout/redsys-callback is not redirected. Add this early in the middleware function:
// Redsys callback URL — bypass region redirect
if (request.nextUrl.pathname.startsWith("/checkout/redsys-callback")) {
return NextResponse.next()
}6. medusa-config.ts — CORS
Ensure your storefront domain is allowed in CORS:
projectConfig: {
http: {
storeCors: "http://localhost:8000,https://your-store.com",
},
}Session Data Reference
The payment session data field returned by initiatePayment:
{
orderId: "1234ABCD5678",
amount: "2550",
currency: "978",
status: "pending",
transactionType: "0",
merchantParams: "base64...", // Base64-encoded merchant parameters
signature: "hmac...", // HMAC-SHA256 signature
signatureVersion: "HMAC_SHA256_V1",
formUrl: "https://sis-t.redsys.es:25443/sis/realizarPago"
}These fields are used in step 3 to build the auto-submitting redirect form.
Webhook
Medusa automatically exposes a webhook endpoint for the Redsys provider at:
/hooks/payment/redsys_redsysFor local development with sandbox, you must expose your backend to the internet (e.g., via ngrok) so Redsys can reach the webhook. Set notificationUrl to the ngrok URL.
Important: Redsys sends the notification to notificationUrl but the signature verification and payment status update happens through the Medusa webhook handler — make sure notificationUrl points to the same endpoint or forward notifications accordingly.
Test Cards (Sandbox)
| Card Number | Brand | Behavior | |---|---|---| | 4548810000000003 | VISA | 3DS v2 approved | | 5576441563045037 | Mastercard | 3DS v2 approved | | 4548814479727229 | VISA | 3DS frictionless | | 4548817212493017 | VISA | 3DS challenge | | Any + CVV 999 | Any | Payment declined |
Transaction Types
| Code | Type | Description |
|---|---|---|
| "0" | Payment | Authorization + immediate capture (default) |
| "1" | Pre-authorization | Reserve funds only |
| "2" | Confirmation | Capture pre-authorized funds |
| "3" | Refund | Full or partial refund |
| "9" | Cancellation | Cancel/void a transaction |
Security
- Never log PAN, CVV, or the secret key. The provider strips sensitive fields from log output.
- Always validate signatures server-side.
getWebhookActionAndData()usesredsys-easy'sprocessRestNotification()for HMAC-SHA256 verification. - Use HTTPS for all communication with Redsys.
- Do not trust client-side payment data. The webhook with signature verification is the source of truth.
- The redirect flow keeps you out of PCI scope — card data is handled by Redsys' secure page.
Currency Support
The plugin includes built-in numeric currency codes for all major currencies. If your currency is not listed, it defaults to EUR (978). See src/types.ts for the full list.
Development
# Install dependencies
npm install
# Build
npm run build
# Run tests
npm test
# Watch mode (for local plugin development)
npm run devLocal Testing with a Medusa Project
# From your plugin directory
npm run dev
# In your Medusa project directory:
npx medusa plugin:add ../path-to/medusa-payment-redsysLicense
MIT — see LICENSE file for details.
Support
For issues and questions, please open an issue on GitHub.
