|
| 1 | +<?php |
| 2 | + |
| 3 | +/** |
| 4 | + * Gravity Perks // File Upload Pro // Update Filename Markup |
| 5 | + * http://gravitywiz.com/documentation/gravity-forms-file-upload-pro |
| 6 | + * |
| 7 | + * This snippet allows you to update the filename markup to include the file URL. This snippet also works with the |
| 8 | + * GP Easy Passthrough plugin when multiple files are uploaded using GP File Upload Pro. |
| 9 | + * |
| 10 | + * Installation instructions: |
| 11 | + * 1. https://gravitywiz.com/documentation/managing-snippets/#where-do-i-put-snippets |
| 12 | + * 2. See usage instructions at the bottom of the file |
| 13 | + */ |
| 14 | +class GPFUP_Update_Filename_Markup { |
| 15 | + |
| 16 | + private $_args = array(); |
| 17 | + |
| 18 | + public function __construct( $args = array() ) { |
| 19 | + // Set our default arguments, parse against the provided arguments, and store for use throughout the class. |
| 20 | + $this->_args = wp_parse_args( $args, array( |
| 21 | + 'form_id' => false, |
| 22 | + 'field_id' => false, |
| 23 | + ) ); |
| 24 | + |
| 25 | + // Do not proceed if Gravity Forms is not installed & activated. |
| 26 | + if ( ! class_exists( 'GFCommon' ) ) { |
| 27 | + return; |
| 28 | + } |
| 29 | + |
| 30 | + add_action( 'init', array( $this, 'init' ) ); |
| 31 | + } |
| 32 | + |
| 33 | + public function init() { |
| 34 | + $form_id = $this->_args['form_id']; |
| 35 | + $field_id = $this->_args['field_id']; |
| 36 | + |
| 37 | + // Time for hooks. |
| 38 | + add_filter( 'gform_pre_render', array( $this, 'load_form_script' ), 10, 2 ); |
| 39 | + add_action( 'gform_register_init_scripts', array( $this, 'add_init_script' ), 10, 2 ); |
| 40 | + |
| 41 | + $args = array( 'gpeb_post_file_population' ); |
| 42 | + |
| 43 | + // If a form ID is provided, add it to the args. |
| 44 | + if ( $form_id ) { |
| 45 | + $args[] = $form_id; |
| 46 | + |
| 47 | + // If a field ID is provided, add it to the args. |
| 48 | + if ( $field_id ) { |
| 49 | + $args[] = $field_id; |
| 50 | + } |
| 51 | + } |
| 52 | + |
| 53 | + add_action( implode( '_', $args ), array( |
| 54 | + $this, |
| 55 | + 'populate_file_data', |
| 56 | + ), 10, 3 ); |
| 57 | + } |
| 58 | + |
| 59 | + /** |
| 60 | + * Populate file data. |
| 61 | + * |
| 62 | + * @param $file_upload_data |
| 63 | + * @param $form |
| 64 | + * @param $field |
| 65 | + * |
| 66 | + * @return void |
| 67 | + */ |
| 68 | + public function populate_file_data( $file_upload_data, $form, $field ) { |
| 69 | + add_action( 'wp_print_footer_scripts', function () use ( $file_upload_data, $form, $field ) { |
| 70 | + $form_id = rgar( $form, 'id' ); |
| 71 | + $field_id = rgar( $field, 'id' ); |
| 72 | + |
| 73 | + echo '<script> |
| 74 | + jQuery(document).ready(function($) { |
| 75 | + var fileData = ' . wp_json_encode( $file_upload_data ) . '; |
| 76 | + var formId = ' . absint( $form_id ) . '; |
| 77 | + var fieldId = ' . absint( $field_id ) . "; |
| 78 | + |
| 79 | + sessionStorage.setItem('gpep_filedata_' + formId + '_' + fieldId, JSON.stringify(fileData)); |
| 80 | + }); |
| 81 | + </script>"; |
| 82 | + } ); |
| 83 | + } |
| 84 | + |
| 85 | + public function load_form_script( $form, $is_ajax_enabled ) { |
| 86 | + if ( ! $this->is_applicable_form( $form ) ) { |
| 87 | + return $form; |
| 88 | + } |
| 89 | + |
| 90 | + if ( ! has_action( 'wp_footer', array( $this, 'output_script' ) ) ) { |
| 91 | + add_action( 'wp_footer', array( $this, 'output_script' ) ); |
| 92 | + } |
| 93 | + |
| 94 | + if ( ! has_action( 'gform_preview_footer', array( $this, 'output_script' ) ) ) { |
| 95 | + add_action( 'gform_preview_footer', array( $this, 'output_script' ) ); |
| 96 | + } |
| 97 | + |
| 98 | + return $form; |
| 99 | + } |
| 100 | + |
| 101 | + public function output_script() { |
| 102 | + ?> |
| 103 | + |
| 104 | + <script type="text/javascript"> |
| 105 | + |
| 106 | + (function ($) { |
| 107 | + |
| 108 | + window.<?php echo __CLASS__; ?> = function (args) { |
| 109 | + self.init = function () { |
| 110 | + /** |
| 111 | + * Filter the file name markup to include the file URL. |
| 112 | + */ |
| 113 | + window.gform.addFilter('gpfup_filename_markup', function (fileName, formId, fieldId, file) { |
| 114 | + var fileUrl = file.url || null; |
| 115 | + var fileData = JSON.parse(sessionStorage.getItem('gpep_filedata_' + formId + '_' + fieldId)) || []; |
| 116 | + |
| 117 | + if ( !fileUrl) { |
| 118 | + if (typeof file.getNative === 'function') { |
| 119 | + var nativeFile = file.getNative(); |
| 120 | + if (nativeFile instanceof File) { |
| 121 | + fileUrl = URL.createObjectURL(nativeFile); |
| 122 | + } |
| 123 | + } else if (Array.isArray(fileData)) { // Find the file URL from `fileData` based on the uploaded file name. |
| 124 | + var matchedFile = fileData.find(item => item.uploaded_filename === file.name); |
| 125 | + if (matchedFile) { |
| 126 | + fileUrl = matchedFile.url; |
| 127 | + } |
| 128 | + } |
| 129 | + } |
| 130 | + |
| 131 | + const sanitizedFileUrl = encodeURI(fileUrl || ''); |
| 132 | + const sanitizedFileName = fileName.replace(/[<>&"']/g, (c) => { |
| 133 | + const escapes = {'<': '<', '>': '>', '&': '&', '"': '"', "'": '''}; |
| 134 | + return escapes[c]; |
| 135 | + }); |
| 136 | + |
| 137 | + return fileUrl |
| 138 | + ? `<a href="${sanitizedFileUrl}" target="_blank" rel="noopener noreferrer">${sanitizedFileName}</a>` |
| 139 | + + : sanitizedFileName; |
| 140 | + }); |
| 141 | + }; |
| 142 | + |
| 143 | + self.init(); |
| 144 | + } |
| 145 | + |
| 146 | + })(jQuery); |
| 147 | + |
| 148 | + </script> |
| 149 | + |
| 150 | + <?php |
| 151 | + } |
| 152 | + |
| 153 | + public function add_init_script( $form ) { |
| 154 | + if ( ! $this->is_applicable_form( $form ) ) { |
| 155 | + return; |
| 156 | + } |
| 157 | + |
| 158 | + $args = array( |
| 159 | + 'formId' => $this->_args['form_id'], |
| 160 | + 'fieldId' => $this->_args['field_id'], |
| 161 | + ); |
| 162 | + |
| 163 | + $script = 'new ' . __CLASS__ . '( ' . wp_json_encode( $args ) . ' );'; |
| 164 | + $slug = implode( '_', array( strtolower( __CLASS__ ), $this->_args['form_id'], $this->_args['field_id'] ) ); |
| 165 | + |
| 166 | + GFFormDisplay::add_init_script( $form['id'], $slug, GFFormDisplay::ON_PAGE_RENDER, $script ); |
| 167 | + } |
| 168 | + |
| 169 | + public function is_applicable_form( $form ) { |
| 170 | + $form_id = isset( $form['id'] ) ? $form['id'] : $form; |
| 171 | + |
| 172 | + return empty( $this->_args['form_id'] ) || (int) $form_id === (int) $this->_args['form_id']; |
| 173 | + } |
| 174 | +} |
| 175 | + |
| 176 | +// Usage instructions. |
| 177 | + |
| 178 | +/* |
| 179 | + * Example Usage (for demonstration purposes only): |
| 180 | + * |
| 181 | + * - Update 'form_id' and 'field_id' to match your specific requirements. |
| 182 | + */ |
| 183 | +new GPFUP_Update_Filename_Markup( |
| 184 | + array( |
| 185 | + 'form_id' => 33, |
| 186 | + 'field_id' => 4, // Update to your file upload field ID. |
| 187 | + ) |
| 188 | +); |
0 commit comments