HEX
Server: nginx/1.26.1
System: Linux main-vm 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
User: root (0)
PHP: 8.2.19
Disabled: NONE
Upload Files
File: /var/www/bellecouture/wp-content/plugins/easy-digital-downloads/src/Telemetry/Licenses.php
<?php
/**
 * Gets the licensing data to send to our telemetry server.
 *
 * @package   easy-digital-downloads
 * @copyright Copyright (c) 2023, Easy Digital Downloads
 * @license   GPL2+
 * @since     3.1.1
 */

namespace EDD\Telemetry;

// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;

use EDD\Licensing\License;

/**
 * Class Licenses
 *
 * @since 3.1.1
 */
class Licenses {

	/**
	 * Gets the gateway data.
	 *
	 * @since 3.1.1
	 * @return array
	 */
	public function get() {
		$data        = $this->get_extensions();
		$pro_license = $this->get_pro_license();
		if ( $pro_license ) {
			$data[] = $pro_license;
		}

		return $data;
	}

	/**
	 * Gets the pro license status.
	 *
	 * @since 3.1.1
	 * @return array
	 */
	private function get_pro_license() {
		if ( ! edd_is_pro() ) {
			return false;
		}
		$pro_license = new License( 'pro' );

		return array(
			'extension' => 'edd_pro',
			'status'    => $this->get_license_status( $pro_license ),
		);
	}

	/**
	 * Gets licensed extensions' statuses.
	 *
	 * @since 3.1.1
	 * @return array
	 */
	private function get_extensions() {
		$data       = array();
		$extensions = \EDD\Extensions\get_licensed_extension_slugs();
		foreach ( $extensions as $slug ) {
			$shortname = str_replace( 'edd_', '', $slug );
			$license   = new License( $shortname );
			$data[]    = array(
				'extension' => $slug,
				'status'    => $this->get_license_status( $license ),
			);
		}

		return $data;
	}

	/**
	 * Gets the license status.
	 *
	 * @since 3.1.2
	 * @param \EDD\Licensing\License $license The license object.
	 * @return string
	 */
	private function get_license_status( $license ) {
		if ( ! empty( $license->license ) ) {
			return $license->license;
		}
		if ( ! empty( $license->error ) ) {
			return $license->error;
		}

		return 'missing';
	}
}