abilities
3 weeks ago
admin
3 months ago
ai-form-builder
1 month ago
blocks
2 months ago
compatibility
3 weeks ago
database
3 weeks ago
email
3 weeks ago
fields
3 weeks ago
global-settings
1 month ago
lib
1 month ago
migrator
2 months ago
page-builders
3 weeks ago
payments
3 weeks ago
single-form-settings
2 months ago
traits
2 months ago
activator.php
1 year ago
admin-ajax.php
2 months ago
background-process.php
9 months ago
create-new-form.php
3 months ago
duplicate-form.php
3 months ago
entries.php
3 weeks ago
events-scheduler.php
2 years ago
export.php
3 months ago
field-validation.php
3 weeks ago
form-restriction.php
2 months ago
form-styling.php
1 month ago
form-submit.php
3 weeks ago
forms-data.php
5 months ago
frontend-assets.php
1 month ago
generate-form-markup.php
3 weeks ago
gutenberg-hooks.php
3 weeks ago
helper.php
3 weeks ago
learn.php
4 months ago
onboarding.php
2 months ago
post-types.php
1 month ago
rest-api.php
3 weeks ago
smart-tags.php
4 months ago
submit-token.php
4 months ago
translatable.php
1 month ago
updater-callbacks.php
3 weeks ago
updater.php
3 weeks ago
gutenberg-hooks.php
350 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Gutenberg Hooks Manager Class. |
| 4 | * |
| 5 | * @package sureforms. |
| 6 | */ |
| 7 | |
| 8 | namespace SRFM\Inc; |
| 9 | |
| 10 | use SRFM\Inc\Traits\Get_Instance; |
| 11 | |
| 12 | if ( ! defined( 'ABSPATH' ) ) { |
| 13 | exit; // Exit if accessed directly. |
| 14 | } |
| 15 | |
| 16 | /** |
| 17 | * Gutenberg hooks handler class. |
| 18 | * |
| 19 | * @since 0.0.1 |
| 20 | */ |
| 21 | class Gutenberg_Hooks { |
| 22 | use Get_Instance; |
| 23 | /** |
| 24 | * Block patterns to register. |
| 25 | * |
| 26 | * @var array<mixed> |
| 27 | */ |
| 28 | protected $patterns = []; |
| 29 | |
| 30 | /** |
| 31 | * Class constructor. |
| 32 | * |
| 33 | * @return void |
| 34 | * @since 0.0.1 |
| 35 | */ |
| 36 | public function __construct() { |
| 37 | // Setting Form default patterns. |
| 38 | $this->patterns = [ |
| 39 | 'blank-form', |
| 40 | 'contact-form', |
| 41 | 'newsletter-form', |
| 42 | 'support-form', |
| 43 | 'feedback-form', |
| 44 | 'event-rsvp-form', |
| 45 | 'subscription-form', |
| 46 | ]; |
| 47 | |
| 48 | // Initializing hooks. |
| 49 | add_action( 'enqueue_block_editor_assets', [ $this, 'form_editor_screen_assets' ] ); |
| 50 | add_action( 'enqueue_block_editor_assets', [ $this, 'block_editor_assets' ] ); |
| 51 | add_filter( 'block_categories_all', [ $this, 'register_block_categories' ], 10, 2 ); |
| 52 | add_filter( 'allowed_block_types_all', [ $this, 'disable_forms_wrapper_block' ], 10, 2 ); |
| 53 | add_action( 'save_post_sureforms_form', [ $this, 'update_field_slug' ], 10, 2 ); |
| 54 | add_action( 'load-post.php', [ $this, 'maybe_migrate_form_stylings' ] ); |
| 55 | } |
| 56 | |
| 57 | /** |
| 58 | * Disable Sureforms_Form Block and allowed only sureforms block inside Sureform CPT editor. |
| 59 | * |
| 60 | * @param bool|array<string> $allowed_block_types Array of block types. |
| 61 | * @param \WP_Block_Editor_Context $editor_context The current block editor context. |
| 62 | * @return array<mixed>|bool |
| 63 | * @since 0.0.1 |
| 64 | */ |
| 65 | public function disable_forms_wrapper_block( $allowed_block_types, $editor_context ) { |
| 66 | if ( ! empty( $editor_context->post->post_type ) && 'sureforms_form' === $editor_context->post->post_type ) { |
| 67 | $allow_block_types = [ |
| 68 | 'srfm/input', |
| 69 | 'srfm/email', |
| 70 | 'srfm/textarea', |
| 71 | 'srfm/number', |
| 72 | 'srfm/checkbox', |
| 73 | 'srfm/gdpr', |
| 74 | 'srfm/phone', |
| 75 | 'srfm/address', |
| 76 | 'srfm/dropdown', |
| 77 | 'srfm/multi-choice', |
| 78 | 'srfm/url', |
| 79 | 'srfm/separator', |
| 80 | 'srfm/icon', |
| 81 | 'srfm/image', |
| 82 | 'srfm/advanced-heading', |
| 83 | 'srfm/inline-button', |
| 84 | 'srfm/payment', |
| 85 | ]; |
| 86 | // Apply a filter to the $allow_block_types types array. |
| 87 | return apply_filters( 'srfm_allowed_block_types', $allow_block_types, $editor_context ); |
| 88 | } |
| 89 | |
| 90 | // Return the default $allowed_block_types value. |
| 91 | return $allowed_block_types; |
| 92 | } |
| 93 | |
| 94 | /** |
| 95 | * Register our custom block category. |
| 96 | * |
| 97 | * @param array<mixed> $categories Array of categories. |
| 98 | * @param \WP_Block_Editor_Context $block_editor_context The current block editor context. |
| 99 | * @return array<mixed> |
| 100 | * @since 0.0.1 |
| 101 | */ |
| 102 | public function register_block_categories( $categories, $block_editor_context ) { |
| 103 | |
| 104 | $post_type = $block_editor_context->post->post_type ?? ''; |
| 105 | |
| 106 | if ( $post_type && SRFM_FORMS_POST_TYPE === $post_type ) { |
| 107 | $title = esc_html__( 'General Fields', 'sureforms' ); |
| 108 | } else { |
| 109 | $title = esc_html__( 'SureForms', 'sureforms' ); |
| 110 | } |
| 111 | |
| 112 | $custom_categories = [ |
| 113 | [ |
| 114 | 'slug' => 'sureforms', |
| 115 | 'title' => $title, |
| 116 | ], |
| 117 | [ |
| 118 | 'slug' => 'sureforms-pro', |
| 119 | 'title' => esc_html__( 'Advanced Fields', 'sureforms' ), |
| 120 | ], |
| 121 | ]; |
| 122 | |
| 123 | return array_merge( $custom_categories, $categories ); |
| 124 | } |
| 125 | |
| 126 | /** |
| 127 | * Add Form Editor Scripts. |
| 128 | * |
| 129 | * @return void |
| 130 | * @since 0.0.1 |
| 131 | */ |
| 132 | public function form_editor_screen_assets() { |
| 133 | $form_editor_script = '-formEditor'; |
| 134 | |
| 135 | $screen = get_current_screen(); |
| 136 | $post_types = [ SRFM_FORMS_POST_TYPE ]; |
| 137 | |
| 138 | if ( is_null( $screen ) || ! in_array( $screen->post_type, $post_types, true ) ) { |
| 139 | return; |
| 140 | } |
| 141 | |
| 142 | $script_asset_path = SRFM_DIR . 'assets/build/formEditor.asset.php'; |
| 143 | $script_info = file_exists( $script_asset_path ) |
| 144 | ? include $script_asset_path |
| 145 | : [ |
| 146 | 'dependencies' => [], |
| 147 | 'version' => SRFM_VER, |
| 148 | ]; |
| 149 | |
| 150 | wp_enqueue_script( SRFM_SLUG . $form_editor_script, SRFM_URL . 'assets/build/formEditor.js', $script_info['dependencies'], $script_info['version'], true ); |
| 151 | wp_localize_script( SRFM_SLUG . $form_editor_script, 'scIcons', [ 'path' => SRFM_URL . 'assets/build/icon-assets' ] ); |
| 152 | |
| 153 | // Enqueue the code editor for the Custom CSS Editor in SureForms. |
| 154 | wp_enqueue_code_editor( [ 'type' => 'text/css' ] ); |
| 155 | wp_enqueue_script( 'wp-theme-plugin-editor' ); |
| 156 | wp_enqueue_style( 'wp-codemirror' ); |
| 157 | |
| 158 | wp_localize_script( |
| 159 | SRFM_SLUG . $form_editor_script, |
| 160 | SRFM_SLUG . '_block_data', |
| 161 | [ |
| 162 | 'plugin_url' => SRFM_URL, |
| 163 | 'admin_email' => get_option( 'admin_email' ), |
| 164 | 'pro_plugin_name' => defined( 'SRFM_PRO_VER' ) && defined( 'SRFM_PRO_PRODUCT' ) ? SRFM_PRO_PRODUCT : 'free', |
| 165 | ] |
| 166 | ); |
| 167 | |
| 168 | Helper::register_script_translations( SRFM_SLUG . $form_editor_script ); |
| 169 | } |
| 170 | |
| 171 | /** |
| 172 | * Register all editor scripts. |
| 173 | * |
| 174 | * @return void |
| 175 | * @since 0.0.1 |
| 176 | */ |
| 177 | public function block_editor_assets() { |
| 178 | $all_screen_blocks = '-blocks'; |
| 179 | $screen = get_current_screen(); |
| 180 | |
| 181 | $blocks_asset_path = SRFM_DIR . 'assets/build/blocks.asset.php'; |
| 182 | $blocks_info = file_exists( $blocks_asset_path ) |
| 183 | ? include $blocks_asset_path |
| 184 | : [ |
| 185 | 'dependencies' => [], |
| 186 | 'version' => SRFM_VER, |
| 187 | ]; |
| 188 | wp_enqueue_script( SRFM_SLUG . $all_screen_blocks, SRFM_URL . 'assets/build/blocks.js', $blocks_info['dependencies'], SRFM_VER, true ); |
| 189 | |
| 190 | Helper::register_script_translations( SRFM_SLUG . $all_screen_blocks ); |
| 191 | |
| 192 | $site_url = Helper::get_string_value( wp_parse_url( esc_url( get_site_url() ), PHP_URL_HOST ) ); |
| 193 | $site_url = preg_replace( '/^www\./', '', $site_url ); |
| 194 | |
| 195 | wp_localize_script( |
| 196 | SRFM_SLUG . $all_screen_blocks, |
| 197 | SRFM_SLUG . '_block_data', |
| 198 | [ |
| 199 | 'template_picker_url' => admin_url( '/admin.php?page=add-new-form' ), |
| 200 | 'plugin_url' => SRFM_URL, |
| 201 | 'admin_email' => get_option( 'admin_email' ), |
| 202 | 'post_url' => admin_url( 'post.php' ), |
| 203 | 'current_screen' => $screen, |
| 204 | 'smart_tags_array' => Smart_Tags::smart_tag_list(), |
| 205 | 'smart_tags_array_email' => Smart_Tags::email_smart_tag_list(), |
| 206 | // No srfm_form_markup nonce: the generate-form-markup route is gated by a |
| 207 | // capability check, not by holding a nonce. It used to be minted here for |
| 208 | // every editor user and read from the query string, which is precisely how |
| 209 | // that route ended up with no real authorization (#2995). |
| 210 | 'get_form_markup_url' => 'sureforms/v1/generate-form-markup', |
| 211 | 'is_pro_active' => Helper::has_pro(), |
| 212 | 'srfm_default_dynamic_block_option' => wp_parse_args( Helper::get_array_value( get_option( 'srfm_default_dynamic_block_option', [] ) ), Helper::default_dynamic_block_option() ), |
| 213 | 'form_selector_nonce' => Helper::current_user_can( 'edit_posts' ) ? wp_create_nonce( 'wp_rest' ) : '', |
| 214 | 'is_admin_user' => Helper::current_user_can(), |
| 215 | 'site_url' => $site_url, |
| 216 | 'is_suremails_active' => is_plugin_active( 'suremails/suremails.php' ), |
| 217 | 'upgrade_url' => add_query_arg( |
| 218 | [ 'utm_medium' => 'embed_styling_upgrade' ], |
| 219 | Helper::get_sureforms_website_url( 'pricing' ) |
| 220 | ), |
| 221 | 'default_translations' => [ |
| 222 | 'gdpr_label' => __( 'I consent to have this website store my submitted information so they can respond to my inquiry.', 'sureforms' ), |
| 223 | 'dropdown_placeholder' => __( 'Select an option', 'sureforms' ), |
| 224 | ], |
| 225 | ] |
| 226 | ); |
| 227 | |
| 228 | // Localizing the field preview image links. |
| 229 | wp_localize_script( |
| 230 | SRFM_SLUG . $all_screen_blocks, |
| 231 | SRFM_SLUG . '_fields_preview', |
| 232 | apply_filters( |
| 233 | 'srfm_block_preview_images', |
| 234 | [ |
| 235 | 'input_preview' => SRFM_URL . 'images/field-previews/input.svg', |
| 236 | 'email_preview' => SRFM_URL . 'images/field-previews/email.svg', |
| 237 | 'url_preview' => SRFM_URL . 'images/field-previews/url.svg', |
| 238 | 'textarea_preview' => SRFM_URL . 'images/field-previews/textarea.svg', |
| 239 | 'multi_choice_preview' => SRFM_URL . 'images/field-previews/multi-choice.svg', |
| 240 | 'checkbox_preview' => SRFM_URL . 'images/field-previews/checkbox.svg', |
| 241 | 'number_preview' => SRFM_URL . 'images/field-previews/number.svg', |
| 242 | 'phone_preview' => SRFM_URL . 'images/field-previews/phone.svg', |
| 243 | 'dropdown_preview' => SRFM_URL . 'images/field-previews/dropdown.svg', |
| 244 | 'address_preview' => SRFM_URL . 'images/field-previews/address.svg', |
| 245 | 'sureforms_preview' => SRFM_URL . 'images/field-previews/sureforms.svg', |
| 246 | 'payment_preview' => SRFM_URL . 'images/field-previews/payment.svg', |
| 247 | ] |
| 248 | ) |
| 249 | ); |
| 250 | |
| 251 | wp_localize_script( |
| 252 | SRFM_SLUG . $all_screen_blocks, |
| 253 | SRFM_SLUG . '_blocks_info', |
| 254 | [ |
| 255 | 'font_awesome_5_polyfill' => [], |
| 256 | 'collapse_panels' => 'enabled', |
| 257 | 'is_site_editor' => $screen ? $screen->id : null, |
| 258 | ] |
| 259 | ); |
| 260 | } |
| 261 | |
| 262 | /** |
| 263 | * This function generates slug for sureforms blocks. |
| 264 | * Generates slug only if slug attribute of block is empty. |
| 265 | * Ensures that all sureforms blocks have unique slugs. |
| 266 | * |
| 267 | * @param int $post_id current sureforms form post id. |
| 268 | * @param \WP_Post $post SureForms post object. |
| 269 | * @since 0.0.2 |
| 270 | * @return void |
| 271 | */ |
| 272 | public function update_field_slug( $post_id, $post ) { |
| 273 | $blocks = parse_blocks( $post->post_content ); |
| 274 | |
| 275 | if ( empty( $blocks ) ) { |
| 276 | return; |
| 277 | } |
| 278 | |
| 279 | $updated = false; |
| 280 | |
| 281 | /** |
| 282 | * List of slugs already taken by processed blocks. |
| 283 | * used to maintain uniqueness of slugs. |
| 284 | */ |
| 285 | $slugs = []; |
| 286 | |
| 287 | [ $blocks, $slugs, $updated ] = Helper::process_blocks( $blocks, $slugs, $updated ); |
| 288 | |
| 289 | // Process and store block configurations for form fields. |
| 290 | Field_Validation::add_block_config( $blocks, $post_id ); |
| 291 | |
| 292 | if ( ! $updated ) { |
| 293 | return; |
| 294 | } |
| 295 | |
| 296 | $post_content = serialize_blocks( $blocks ); |
| 297 | |
| 298 | // Use wp_slash() to preserve unicode escapes (like \u003c for <) in block attributes. |
| 299 | // Without this, wp_update_post() calls wp_unslash() which corrupts these escapes. |
| 300 | wp_update_post( |
| 301 | [ |
| 302 | 'ID' => $post_id, |
| 303 | 'post_content' => wp_slash( $post_content ), |
| 304 | ] |
| 305 | ); |
| 306 | } |
| 307 | |
| 308 | /** |
| 309 | * Migrate the background type and associated values from |
| 310 | * instant form settings to form styling meta. |
| 311 | * |
| 312 | * @since 1.4.4 |
| 313 | * @return void |
| 314 | */ |
| 315 | public function maybe_migrate_form_stylings() { |
| 316 | $post_id = isset( $_GET['post'] ) ? Helper::get_integer_value( sanitize_text_field( wp_unslash( $_GET['post'] ) ) ) : ''; // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- $_GET['post'] does not provide nonce. |
| 317 | if ( empty( $post_id ) || ! Helper::current_user_can() ) { |
| 318 | return; |
| 319 | } |
| 320 | |
| 321 | $post_type = get_post_type( $post_id ); |
| 322 | if ( SRFM_FORMS_POST_TYPE !== $post_type ) { |
| 323 | return; |
| 324 | } |
| 325 | |
| 326 | $instant_form_settings = get_post_meta( $post_id, '_srfm_instant_form_settings', true ); |
| 327 | if ( ! is_array( $instant_form_settings ) ) { |
| 328 | return; |
| 329 | } |
| 330 | |
| 331 | $form_styling = get_post_meta( $post_id, '_srfm_forms_styling', true ); |
| 332 | if ( ! is_array( $form_styling ) ) { |
| 333 | $form_styling = []; |
| 334 | } |
| 335 | |
| 336 | $migrated = false; |
| 337 | $keys = [ 'bg_type', 'bg_color', 'bg_image', 'bg_image_id' ]; |
| 338 | |
| 339 | foreach ( $keys as $key ) { |
| 340 | if ( ! isset( $form_styling[ $key ] ) && isset( $instant_form_settings[ $key ] ) ) { |
| 341 | $form_styling[ $key ] = $instant_form_settings[ $key ]; |
| 342 | $migrated = true; |
| 343 | } |
| 344 | } |
| 345 | if ( $migrated ) { |
| 346 | update_post_meta( $post_id, '_srfm_forms_styling', $form_styling ); |
| 347 | } |
| 348 | } |
| 349 | } |
| 350 |