PATH:
home
/
lab2454c
/
dansact.com
/
wp-content
/
plugins
/
wp-webhooks
/
core
/
includes
/
integrations
/
edd
/
triggers
<?php // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) exit; if ( ! class_exists( 'WP_Webhooks_Integrations_edd_Triggers_edd_license_status' ) ) : /** * Load the edd_license_status trigger * * @since 4.2.0 * @author Ironikus <info@ironikus.com> */ class WP_Webhooks_Integrations_edd_Triggers_edd_license_status { public function is_active(){ $is_active = class_exists( 'EDD_Software_Licensing' ); //Backwards compatibility for the "Easy Digital Downloads" integration if( defined( 'WPWH_EDD_NAME' ) ){ $is_active = false; } return $is_active; } /** * Register the actual functionality of the webhook * * @param mixed $response * @param string $action * @param string $response_ident_value * @param string $response_api_key * @return mixed The response data for the webhook caller */ public function get_callbacks(){ return array( array( 'type' => 'action', 'hook' => 'edd_sl_post_set_status', 'callback' => array( $this, 'wpwh_trigger_edd_license_status' ), 'priority' => 10, 'arguments' => 2, 'delayed' => true, ), ); } public function get_details(){ $translation_ident = "action-edd_license_status-description"; $choices = apply_filters( 'wpwhpro/settings/edd_license_status', array( 'active' => WPWHPRO()->helpers->translate( 'Activated', $translation_ident ), 'inactive' => WPWHPRO()->helpers->translate( 'Deactivated', $translation_ident ), 'expired' => WPWHPRO()->helpers->translate( 'Expired', $translation_ident ), 'disabled' => WPWHPRO()->helpers->translate( 'Disabled', $translation_ident ), ) ); $parameter = array( 'ID' => array( 'short_description' => WPWHPRO()->helpers->translate( '(Integer) The license id.', $translation_ident ) ), 'key' => array( 'short_description' => WPWHPRO()->helpers->translate( '(String) The license key.', $translation_ident ) ), 'customer_email' => array( 'short_description' => WPWHPRO()->helpers->translate( '(String) The email of the customer.', $translation_ident ) ), 'customer_name' => array( 'short_description' => WPWHPRO()->helpers->translate( '(String) The full customer name.', $translation_ident ) ), 'product_id' => array( 'short_description' => WPWHPRO()->helpers->translate( '(String) The id of the product.', $translation_ident ) ), 'product_name' => array( 'short_description' => WPWHPRO()->helpers->translate( '(String) The full product name.', $translation_ident ) ), 'activation_limit' => array( 'short_description' => WPWHPRO()->helpers->translate( '(Integer) The activation limit.', $translation_ident ) ), 'activation_count' => array( 'short_description' => WPWHPRO()->helpers->translate( '(Integer) The number of total activations.', $translation_ident ) ), 'activated_urls' => array( 'short_description' => WPWHPRO()->helpers->translate( '(String) A list of activated URLs.', $translation_ident ) ), 'expiration' => array( 'short_description' => WPWHPRO()->helpers->translate( '(String) The expiration date in SQL format.', $translation_ident ) ), 'is_lifetime' => array( 'short_description' => WPWHPRO()->helpers->translate( '(Integer) The number 1 or 0 if it is a lifetime.', $translation_ident ) ), 'status' => array( 'short_description' => WPWHPRO()->helpers->translate( '(String) The current license status.', $translation_ident ) ), ); $description = WPWHPRO()->webhook->get_endpoint_description( 'trigger', array( 'webhook_name' => 'License status updated', 'webhook_slug' => 'edd_license_status', 'post_delay' => true, 'tipps' => array( WPWHPRO()->helpers->translate( "In case you only want to fire the webhook on specific license statuses, you can select them within the single webhook URL settings. Simply select the license statuses you want to fire the webhook on and all others are ignored.", $translation_ident ) ), 'trigger_hooks' => array( array( 'hook' => 'edd_sl_post_set_status', ), ) ) ); $settings = array( 'data' => array( 'wpwhpro_trigger_edd_license_status_whitelist_status' => array( 'id' => 'wpwhpro_trigger_edd_license_status_whitelist_status', 'type' => 'select', 'multiple' => true, 'choices' => $choices, 'label' => WPWHPRO()->helpers->translate('Trigger on selected license status changes', $translation_ident), 'placeholder' => '', 'required' => false, 'description' => WPWHPRO()->helpers->translate('Select only the license statuses you want to fire the trigger on. You can choose multiple ones. If none is selected, all are triggered.', $translation_ident) ), ) ); return array( 'trigger' => 'edd_license_status', 'name' => WPWHPRO()->helpers->translate( 'License status updated', $translation_ident ), 'sentence' => WPWHPRO()->helpers->translate( 'a license status was updated', $translation_ident ), 'parameter' => $parameter, 'settings' => $settings, 'returns_code' => $this->get_demo( array() ), 'short_description' => WPWHPRO()->helpers->translate( 'This webhook fires on certain status changes of licenses within Easy Digital Downloads.', $translation_ident ), 'description' => $description, 'callback' => 'test_edd_license_status', 'integration' => 'edd', ); } /** * Triggers once a new EDD payment was changed * * @param integer $customer_id Customer ID. * @param array $args Customer data. */ public function wpwh_trigger_edd_license_status( $license_id = 0, $new_status = '' ){ $edd_helpers = WPWHPRO()->integrations->get_helper( 'edd', 'edd_helpers' ); $webhooks = WPWHPRO()->webhook->get_hooks( 'trigger', 'edd_license_status' ); $response_data_array = array(); foreach( $webhooks as $webhook ){ $is_valid = true; if( isset( $webhook['settings'] ) ){ foreach( $webhook['settings'] as $settings_name => $settings_data ){ if( $settings_name === 'wpwhpro_trigger_edd_license_status_whitelist_status' && ! empty( $settings_data ) ){ if( ! in_array( $new_status, $settings_data ) ){ $is_valid = false; } } } } if( $is_valid ) { $license_data = $edd_helpers->edd_get_license_data( $license_id ); $webhook_url_name = ( is_array($webhook) && isset( $webhook['webhook_url_name'] ) ) ? $webhook['webhook_url_name'] : null; if( $webhook_url_name !== null ){ $response_data_array[ $webhook_url_name ] = WPWHPRO()->webhook->post_to_webhook( $webhook, $license_data ); } else { $response_data_array[] = WPWHPRO()->webhook->post_to_webhook( $webhook, $license_data ); } do_action( 'wpwhpro/webhooks/trigger_edd_license_status', $license_id, $new_status, $license_data, $response_data_array ); } } } public function get_demo( $options = array() ) { $data = array( 'ID' => 1234, 'key' => '736b31fec1ecb01c28b51a577bb9c2b3', 'customer_name' => 'Jane Doe', 'customer_email' => 'jane@test.com', 'product_id' => 4321, 'product_name' => 'Sample Product', 'activation_limit' => 1, 'activation_count' => 1, 'activated_urls' => 'sample.com', 'expiration' => date( 'Y-n-d H:i:s', current_time( 'timestamp' ) ), 'is_lifetime' => 0, 'status' => 'active', ); return $data; } } endif; // End if class_exists check.
[-] edd_payments.php
[edit]
[-] edd_subscriptions.php
[edit]
[-] index.php
[edit]
[+]
..
[-] edd_subscription_payment.php
[edit]
[-] edd_license_deactivate.php
[edit]
[-] edd_update_customer.php
[edit]
[-] edd_license_creation.php
[edit]
[-] edd_license_status.php
[edit]
[-] edd_new_customer.php
[edit]
[-] edd_license_activation.php
[edit]
[-] edd_file_downloaded.php
[edit]