Mollie driver for the WordPress payment processing library.

Installs: 23 042

Dependents: 2

Suggesters: 0

Security: 0

Stars: 6

Watchers: 5

Forks: 1

Type:wordpress-plugin


README

WordPress Pay » Gateway » Mollie

WordPress Pay » Gateway » Mollie

Mollie driver for the WordPress payment processing library.

Table of contents

Status

Build Status Coverage Status Latest Stable Version Total Downloads Latest Unstable Version License Built with Grunt

Webhook URL

Please note that an webhook URL with the host localhost or with the TLD .dev are not allowed, this library will check on WordPress URL's on localhost or on the .dev TLD and will not pass the webhookUrl parameter to Mollie. If you want to test the Mollie webhook URL on an local development environment you could use a service like ngrok.

Beste Remco,

Ja dit is inderdaad het probleem. .dev URL's worden niet ondersteunt. Deze zal ook niet bereikbaar zijn.

Als je report URL niet publiekelijk bereikbaar is zou je een service als https://ngrok.com kunnen gebruiken. Dit is een programma die je lokaal draait en als proxy werkt. Misschien heb je er iets aan.

Met vriendelijke groet,

Lennard van Gunst Mollie

Simulate Requests

Webhook

curl --request POST "https://www.example.com/wp-json/pronamic-pay/mollie/v1/webhook" \
        --data "id=test" \
        --user-agent "Mollie HTTP"

REST API

The Pronamic Pay Mollie gateway can handle Mollie webhook requests via the WordPress REST API.

Route: /wp-json/pronamic-pay/mollie/v1/webhook

The WordPress REST API Mollie webhook endpoint can be tested with for example cURL:

curl --request POST --data "id=tr_d0b0E3EA3v" http://pay.test/wp-json/pronamic-pay/mollie/v1/webhook

Legacy webhook URL:

curl --request POST --data "id=tr_d0b0E3EA3v" "http://pay.test/?mollie_webhook"

WP-CLI

What is WP-CLI?

For those who have never heard before WP-CLI, here's a brief description extracted from the official website.

WP-CLI is a set of command-line tools for managing WordPress installations. You can update plugins, set up multisite installs and much more, without using a web browser.

Commands

$ wp pronamic-pay mollie
usage: wp pronamic-pay mollie customers <command>
   or: wp pronamic-pay mollie organizations <command>

See 'wp help pronamic-pay mollie <command>' for more information on a specific command.

Command pronamic-pay mollie customers synchronize

Synchronize Mollie customers to WordPress.

$ wp pronamic-pay mollie customers synchronize

Command pronamic-pay mollie customers connect-wp-users

Connect Mollie customers to WordPress users by email.

$ wp pronamic-pay mollie customers connect-wp-users

WordPress Filters

pronamic_pay_mollie_payment_description

Description

Filters the Mollie payment description.

Usage

\add_filter( 'pronamic_pay_mollie_payment_description', 'your_function_name', 10, 2 );

Parameters

$description | string

Mollie payment description.

$payment | Payment Object

The WordPress payment object.

Examples

\add_filter( 'pronamic_pay_mollie_payment_description', function( $description, $payment ) {
	$periods = $payment->get_periods();

	if ( null === $periods ) {
		return $description;
	}

	foreach ( $periods as $period ) {
		$phase = $period->get_phase();

		$subscription = $phase->get_subscription();

		$description = \sprintf(
			'%s - %s - %s',
			$subscription->get_description(),
			$period->get_start_date()->format_i18n( 'd-m-Y' ),
			$period->get_end_date()->format_i18n( 'd-m-Y' )
		);
	}

	return $description;
}, 10, 2 );

pronamic_pay_mollie_payment_metadata

Description

Filters the Mollie payment metadata.

Usage

\add_filter( 'pronamic_pay_mollie_payment_metadata', 'your_function_name', 10, 2 );

Parameters

$metadata | mixed

Mollie payment metadata.

$payment | Payment Object

The WordPress payment object.

Examples

\add_filter( 'pronamic_pay_mollie_payment_metadata', function( $metadata, $payment ) {
	$data = array();

	$customer = $payment->get_customer();

	if ( null !== $customer ) {
		$vat_number = $customer->get_vat_number();

		if ( null !== $vat_number ) {
			$data['vat_number'] = $vat_number->normalized();
		}
	}

	switch ( $payment->get_source() ) {
		case 'easydigitaldownloads':
			$data['edd_order_id'] = $payment->get_source_id();

			break;
		case 'gravityformsideal':
			$data['gf_entry_id'] = $payment->get_source_id();

			break;
	}

	return (object) $data;
}, 10, 2 );

pronamic_pay_mollie_payment_billing_email

Description

Filters the Mollie payment billing email used for bank transfer payment instructions.

Usage

\add_filter( 'pronamic_pay_mollie_payment_billing_email', 'your_function_name', 10, 2 );

Parameters

$billing_email | string|null

The Mollie payment billing email.

$payment | Payment Object

The WordPress payment object.

Examples

\add_filter( 'pronamic_pay_mollie_payment_billing_email', function( $billing_email, $payment ) {
	$billing_email = 'mollie-billing-email@example.com';

	return $billing_email;
}, 10, 2 );

Links

Errors

The customer id is invalid

DELETE
	meta
FROM
	wp_usermeta AS meta
		INNER JOIN
	wp_users AS user
			ON user.ID = user_id
WHERE
	(
		meta_key = '_pronamic_pay_mollie_customer_id'
			OR
		meta_key = '_pronamic_pay_mollie_customer_id_test'
	)
		AND
	user.user_login = 'username'
;

Documentation