HEX
Server: Apache
System: Linux webm004.cluster121.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
User: grainesdfo (155059)
PHP: 5.4.45
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/grainesdfo/www/wp-content/plugins/raven/includes/modules/forms/actions/download.php
<?php
/**
 * Add form Download action.
 *
 * @package Raven
 * @since 1.2.0
 */

namespace Raven\Modules\Forms\Actions;

use Elementor\Controls_Manager;

defined( 'ABSPATH' ) || die();

/**
 * Download Action.
 *
 * Initializing the Download action by extending action base.
 *
 * @since 1.2.0
 */
class Download extends Action_Base {

	/**
	 * Update controls.
	 *
	 * Add Redirect section.
	 *
	 * @since 1.2.0
	 * @access public
	 *
	 * @param object $widget Widget instance.
	 */
	public function update_controls( $widget ) {
		$widget->start_controls_section(
			'section_download',
			[
				'label' => __( 'Download', 'raven' ),
				'condition' => [
					'actions' => 'download',
				],
			]
		);

		$widget->add_control(
			'download_resource',
			[
				'label' => __( 'Download Resource', 'raven' ),
				'type' => Controls_Manager::SELECT,
				'default' => '',
				'options' => [
					'file' => __( 'File', 'raven' ),
					'url' => __( 'URL', 'raven' ),
				],
			]
		);

		$widget->add_control(
			'download_url',
			[
				'label' => __( 'Download URL', 'raven' ),
				'type' => Controls_Manager::URL,
				'placeholder' => __( 'https://your-link.com', 'raven' ),
				'show_external' => false,
				'default' => [
					'url' => '',
				],
				'condition' => [
					'download_resource' => 'url',
				],
			]
		);

		$widget->add_control(
			'download_file',
			[
				'label' => __( 'Download File', 'raven' ),
				'type' => 'raven_file_uploader',
				'condition' => [
					'download_resource' => 'file',
				],
			]
		);

		$widget->end_controls_section();
	}

	/**
	 * Run action.
	 *
	 * Download File/URL.
	 *
	 * @since 1.2.0
	 * @access public
	 * @static
	 *
	 * @param object $ajax_handler Ajax handler instance.
	 */
	public static function run( $ajax_handler ) {
		if (
			! empty( $ajax_handler->response['errors'] ) ||
			! empty( $ajax_handler->response['admin_errors'] )
		) {
			return;
		}

		$download_resource = $ajax_handler->form['settings']['download_resource'];

		if ( 'file' === $download_resource ) {

			self::download_file( $ajax_handler );

		} elseif ( 'url' === $download_resource ) {

			self::download_url( $ajax_handler );

		}
	}

	/**
	 * Download URL.
	 *
	 * @since 1.2.0
	 * @access private
	 * @static
	 *
	 * @param object $ajax_handler Ajax handler instance.
	 */
	private static function download_url( $ajax_handler ) {
		$value = $ajax_handler->form['settings']['download_url'];

		if ( empty( $value ) || empty( $value['url'] ) ) {
			return;
		}

		if ( ! filter_var( $value['url'], FILTER_VALIDATE_URL ) ) {
			$admin_error = __( 'Download Action: The "Download URL" value is not a valid URL.', 'raven' );
		}

		if ( empty( $admin_error ) ) {
			return $ajax_handler->add_response( 'download_url', $value['url'] );
		}

		$ajax_handler->add_response( 'admin_errors', $admin_error );
	}

	/**
	 * Download File.
	 *
	 * @since 1.2.0
	 * @access private
	 * @static
	 *
	 * @param object $ajax_handler Ajax handler instance.
	 */
	private static function download_file( $ajax_handler ) {
		$value = $ajax_handler->form['settings']['download_file'];

		if ( empty( $value['files'] ) || count( $value['files'] ) === 0 ) {
			return;
		}

		$value = $value['files'][0];

		if ( ! file_exists( $value['path'] ) ) {
			$admin_error = __( 'Download Action: The "Download File" doesn\'t exist anymore.', 'raven' );
		}

		if ( empty( $admin_error ) ) {
			$url = admin_url( 'admin-post.php?action=raven_download_file&file=' . base64_encode( $value['path'] ) . '&_wpnonce=' . wp_create_nonce() ); // phpcs:ignore
			return $ajax_handler->add_response( 'download_url', $url );
		}

		$ajax_handler->add_response( 'admin_errors', $admin_error );
	}
}