Current File : /home/kelaby89/jrncommunityhousing.charity/wp-content/plugins/give/includes/gateways/functions.php |
<?php
/**
* Gateway Functions
*
* @package Give
* @subpackage Gateways
* @copyright Copyright (c) 2016, GiveWP
* @license https://opensource.org/licenses/gpl-license GNU Public License
* @since 1.0
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Returns a list of all available gateways.
*
* @since 3.0.0 add $version param
* @since 2.30.0 add filter give_payment_gateways_admin_label
* @since 1.0
* @param int|null $version
* @return array $gateways All the available gateways
*/
function give_get_payment_gateways($version = null)
{
// Default, built-in gateways
$gateways = apply_filters(
'give_payment_gateways',
Give_Cache_Setting::get_option('gateways', [])
);
array_walk($gateways, static function (&$gateway, $gatewayId) {
if (isset($gateway['admin_label'])) {
$gateway['admin_label'] = apply_filters(
'give_payment_gateways_admin_label',
$gateway['admin_label'],
$gatewayId
);
}
});
$gatewayLabels = [];
if (!$version || $version === 2) {
$gatewayLabels = array_merge($gatewayLabels, (array)give_get_option('gateways_label', []));
}
if (!$version || $version === 3) {
$gatewayLabels = array_merge($gatewayLabels, (array)give_get_option('gateways_label_v3', []));
}
// Replace payment gateway checkout label with admin defined checkout label.
if ($gatewayLabels) {
foreach ($gatewayLabels as $gatewayId => $checkoutLabel) {
if ($checkoutLabel && array_key_exists($gatewayId, $gateways)) {
$gateways[$gatewayId]['checkout_label'] = $checkoutLabel;
}
}
}
return $gateways;
}
/**
* Returns a list of all enabled gateways.
*
* @since 3.0.0 add $version param
* @since 1.0
*
* @param int|null $form_id Form ID
* @param int|null $version
* @return array $gateway_list All the available gateways
*/
function give_get_enabled_payment_gateways($form_id = 0, $version = null)
{
$gateways = give_get_payment_gateways($version);
$enabled = [];
if (!$version || $version === 2) {
$gatewaysFromPostRequest = isset($_POST['gateways']) ? (array)$_POST['gateways'] : null;
$enabled = array_merge($enabled, $gatewaysFromPostRequest ?? (array)give_get_option('gateways', []));
}
if (!$version || $version === 3) {
$gatewaysFromPostRequest = isset($_POST['gateways_v3']) ? (array)$_POST['gateways_v3'] : null;
$enabled = array_merge($enabled, $gatewaysFromPostRequest ?? (array)give_get_option('gateways_v3', []));
}
$gateway_list = [];
foreach ( $gateways as $key => $gateway ) {
if ( isset( $enabled[ $key ] ) && $enabled[ $key ] == 1 ) {
$gateway_list[ $key ] = $gateway;
}
}
// Set order of payment gateway in list.
$gateway_list = give_get_ordered_payment_gateways($gateway_list, $version);
return apply_filters('give_enabled_payment_gateways', $gateway_list, $form_id, $version);
}
/**
* Checks whether a specified gateway is activated.
*
* @since 3.0.2 add $version param
* @since 1.0
*
* @param string $gateway Name of the gateway to check for
* @param int|null $version
* @return bool true if enabled, false otherwise
*/
function give_is_gateway_active($gateway, $version = 2)
{
$gateways = give_get_enabled_payment_gateways(null, $version);
$ret = array_key_exists( $gateway, $gateways );
return apply_filters('give_is_gateway_active', $ret, $gateway, $gateways, $version);
}
/**
* Gets the default payment gateway selected from the Give Settings
*
* @since 3.0.2 add $version param
* @since 1.0
*
* @param int|null $form_id int ID of the Give Form
* @param int|null $version
* @return string Gateway ID
*/
function give_get_default_gateway($form_id, $version = 2)
{
$suffix = $version === 3 ? '_v3' : '';
$enabled_gateways = array_keys(give_get_enabled_payment_gateways($form_id, $version));
$default_gateway = give_get_option('default_gateway' . $suffix);
$default = !empty($default_gateway) && give_is_gateway_active(
$default_gateway,
$version
) ? $default_gateway : $enabled_gateways[0];
$form_default = give_get_meta( $form_id, '_give_default_gateway', true );
// Single Form settings varies compared to the Global default settings.
if (
! empty( $form_default ) &&
$form_id !== null &&
$default !== $form_default &&
'global' !== $form_default &&
give_is_gateway_active($form_default, $version)
) {
$default = $form_default;
}
return apply_filters('give_default_gateway', $default, $version);
}
/**
* Returns the admin label for the specified gateway
*
* @since 2.21.0 remove hard coded admin_labels
* @since 1.0
*
* @param string $gateway Name of the gateway to retrieve a label for
*
* @return string Gateway admin label
*/
function give_get_gateway_admin_label($gateway)
{
$gateways = give_get_payment_gateways();
$label = isset($gateways[$gateway]) ? $gateways[$gateway]['admin_label'] : $gateway;
return apply_filters('give_gateway_admin_label', $label, $gateway);
}
/**
* Returns the checkout label for the specified gateway
*
* @since 3.0.0 add $version param
* @since 1.0
* @since 2.15.0 Code removed. Here no need to forcefully change manual payment gateway checkout label to "Test Donation".
*
* @param string $gateway Name of the gateway to retrieve a label for
* @param int|null $version
* @return string Checkout label for the gateway
*/
function give_get_gateway_checkout_label($gateway, $version = 2)
{
$gateways = give_get_payment_gateways($version);
$label = isset( $gateways[ $gateway ] ) ? $gateways[ $gateway ]['checkout_label'] : $gateway;
return apply_filters('give_gateway_checkout_label', $label, $gateway, $version);
}
/**
* Returns the options a gateway supports
*
* @since 1.8
*
* @param string $gateway ID of the gateway to retrieve a label for
*
* @return array Options the gateway supports
*/
function give_get_gateway_supports( $gateway ) {
$gateways = give_get_enabled_payment_gateways();
$supports = isset( $gateways[ $gateway ]['supports'] ) ? $gateways[ $gateway ]['supports'] : [];
return apply_filters( 'give_gateway_supports', $supports, $gateway );
}
/**
* Sends all the payment data to the specified gateway
*
* @since 1.0
*
* @param string $gateway Name of the gateway
* @param array $payment_data All the payment data to be sent to the gateway
*
* @return void
*/
function give_send_to_gateway( $gateway, $payment_data ) {
$payment_data['gateway_nonce'] = wp_create_nonce( 'give-gateway' );
/**
* Fires while loading payment gateway via AJAX.
*
* The dynamic portion of the hook name '$gateway' must match the ID used when registering the gateway.
*
* @since 1.0
*
* @param array $payment_data All the payment data to be sent to the gateway.
*/
do_action( "give_gateway_{$gateway}", $payment_data );
}
/**
* Determines the currently selected donation payment gateway.
*
* @access public
* @since 1.0
*
* @param int $form_id The ID of the Form
*
* @return string $enabled_gateway The slug of the gateway
*/
function give_get_chosen_gateway( $form_id ) {
$request_form_id = isset( $_REQUEST['give_form_id'] ) ? $_REQUEST['give_form_id'] : 0;
// Back to check if 'form-id' is present.
if ( empty( $request_form_id ) ) {
$request_form_id = isset( $_REQUEST['form-id'] ) ? $_REQUEST['form-id'] : 0;
}
$request_payment_mode = isset( $_REQUEST['payment-mode'] ) ? $_REQUEST['payment-mode'] : '';
$chosen = false;
// If both 'payment-mode' and 'form-id' then set for only this form.
if ( ! empty( $request_form_id ) && $form_id == $request_form_id ) {
$chosen = $request_payment_mode;
} elseif ( empty( $request_form_id ) && $request_payment_mode ) {
// If no 'form-id' but there is 'payment-mode'.
$chosen = $request_payment_mode;
}
// Get the enable gateway based of chosen var.
if ( $chosen && give_is_gateway_active( $chosen ) ) {
$enabled_gateway = urldecode( $chosen );
} else {
$enabled_gateway = give_get_default_gateway( $form_id );
}
return apply_filters( 'give_chosen_gateway', $enabled_gateway );
}
/**
* Record a log entry
*
* A wrapper function for the Give_Logging class add() method.
*
* @deprecated 2.10.0
* @use Log::LOG_TYPE( $message );
* @see Log
*
* @since 1.0
* @since 2.0 Use global logs object
*
* @param string $title Log title. Default is empty.
* @param string $message Log message. Default is empty.
* @param int $parent Parent log. Default is 0.
* @param string $type Log type. Default is null.
*
* @return int ID of the new log entry.
*/
function give_record_log( $title = '', $message = '', $parent = 0, $type = null ) {
return Give()->logs->add( $title, $message, $parent, $type );
}
/**
* Record a gateway error.
*
* A simple wrapper function for give_record_log().
*
* @deprecated 2.10.0
* @use Log::LOG_TYPE( $message );
* @see Log
*
* @access public
* @since 1.0
*
* @param string $title Title of the log entry (default: empty)
* @param string $message Message to store in the log entry (default: empty)
* @param int $parent Parent log entry (default: 0)
*
* @return int ID of the new log entry
*/
function give_record_gateway_error( $title = '', $message = '', $parent = 0 ) {
$title = empty( $title ) ? esc_html__( 'Payment Error', 'give' ) : $title;
return give_record_log( $title, $message, $parent, 'gateway_error' );
}
/**
* Counts the number of donations made with a gateway.
*
* @since 1.0
*
* @param string $gateway_id
* @param array|string $status
*
* @return int
*/
function give_count_sales_by_gateway( $gateway_id = 'paypal', $status = 'publish' ) {
$ret = 0;
$args = [
'meta_key' => '_give_payment_gateway',
'meta_value' => $gateway_id,
'nopaging' => true,
'post_type' => 'give_payment',
'post_status' => $status,
'fields' => 'ids',
];
$payments = new WP_Query( $args );
if ( $payments ) {
$ret = $payments->post_count;
}
return $ret;
}
/**
* Returns a ordered list of all available gateways.
*
* @since 3.0.2 add $version param
* @since 1.4.5
*
* @param array $gateways List of payment gateways
* @param int|null $version
* @return array $gateways All the available gateways
*/
function give_get_ordered_payment_gateways($gateways, $version = null)
{
// Get gateways setting.
$gateways_setting = [];
if (!$version || $version === 2) {
$gatewaysFromPostRequest = isset($_POST['gateways']) ? (array)$_POST['gateways'] : null;
$gateways_setting = array_merge(
$gateways_setting,
$gatewaysFromPostRequest ?? (array)give_get_option('gateways', [])
);
}
if (!$version || $version === 3) {
$gatewaysFromPostRequest = isset($_POST['gateways_v3']) ? (array)$_POST['gateways_v3'] : null;
$gateways_setting = array_merge(
$gateways_setting,
$gatewaysFromPostRequest ?? (array)give_get_option('gateways_v3', [])
);
}
// Return from here if we do not have gateways setting.
if ( empty( $gateways_setting ) ) {
return $gateways;
}
// Reverse array to order payment gateways.
$gateways_setting = array_reverse( $gateways_setting );
// Reorder gateways array
foreach ( $gateways_setting as $gateway_key => $value ) {
$new_gateway_value = $gateways[$gateway_key] ?? '';
unset( $gateways[ $gateway_key ] );
if ( ! empty( $new_gateway_value ) ) {
$gateways = array_merge( [ $gateway_key => $new_gateway_value ], $gateways );
}
}
/**
* Filter payment gateways order.
*
* @since 3.0.2 add $version param
* @since 1.7
*
* @param array $gateways All the available gateways
*/
return apply_filters('give_payment_gateways_order', $gateways, $version);
}