PluginProbe
Elementor Website Builder – more than just a page builder / 3.32.2
Elementor Website Builder – more than just a page builder v3.32.2
4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 4.0.7 All 451 releases
← All changes | includes/template-library/manager.php +221 -169 4.2.13.32.2 View file →
@@ -2,12 +2,15 @@
2 2 namespace Elementor\TemplateLibrary;
3 3
4 4 use Elementor\Api;
5 5 use Elementor\Core\Common\Modules\Ajax\Module as Ajax;
6 +use Elementor\Core\Isolation\Wordpress_Adapter;
7 +use Elementor\Core\Isolation\Wordpress_Adapter_Interface;
8 +use Elementor\Core\Isolation\Elementor_Adapter;
9 +use Elementor\Core\Isolation\Elementor_Adapter_Interface;
6 10 use Elementor\Core\Settings\Manager as SettingsManager;
7 11 use Elementor\Includes\TemplateLibrary\Data\Controller;
8 12 use Elementor\TemplateLibrary\Classes\Import_Images;
9 -use Elementor\Core\Utils\Template_Library_Import_Export_Utils;
10 13 use Elementor\Plugin;
11 14 use Elementor\User;
12 15 use Elementor\Utils;
13 16
@@ -24,12 +27,8 @@
24 27 * @since 1.0.0
25 28 */
26 29 class Manager {
27 30
28 - const ERROR_TEMPLATE_SOURCE_NOT_FOUND = 'Template source not found.';
29 - const ERROR_TEMPLATE_IDS_MISSING = 'Template IDs are missing.';
30 - const ERROR_JSON_UPLOAD_NOT_ALLOWED = 'Uploading JSON files is not allowed for this user.';
31 -
32 31 /**
33 32 * Registered template sources.
34 33 *
35 34 * Holds a list of all the supported sources with their instances.
@@ -51,8 +50,18 @@
51 50 */
52 51 private $_import_images = null; // phpcs:ignore PSR2.Classes.PropertyDeclaration.Underscore
53 52
54 53 /**
54 + * @var Wordpress_Adapter_Interface
55 + */
56 + protected $wordpress_adapter = null;
57 +
58 + /**
59 + * @var Elementor_Adapter_Interface
60 + */
61 + protected $elementor_adapter = null;
62 +
63 + /**
55 64 * Template library manager constructor.
56 65 *
57 66 * Initializing the template library manager by registering default template
58 67 * sources and initializing ajax calls.
@@ -94,8 +103,16 @@
94 103
95 104 return $this->_import_images;
96 105 }
97 106
107 + public function set_wordpress_adapter( Wordpress_Adapter_Interface $wordpress_adapter ) {
108 + $this->wordpress_adapter = $wordpress_adapter;
109 + }
110 +
111 + public function set_elementor_adapter( Elementor_Adapter_Interface $elementor_adapter ): void {
112 + $this->elementor_adapter = $elementor_adapter;
113 + }
114 +
98 115 /**
99 116 * Register template source.
100 117 *
101 118 * Used to register new template sources displayed in the template library.
@@ -283,9 +300,9 @@
283 300 private function save_template_item( array $args ) {
284 301 $source = $this->get_source( $args['source'] );
285 302
286 303 if ( ! $source ) {
287 - return new \WP_Error( 'template_error', self::ERROR_TEMPLATE_SOURCE_NOT_FOUND );
304 + return new \WP_Error( 'template_error', 'Template source not found.' );
288 305 }
289 306
290 307 $args['content'] = json_decode( $args['content'], true );
291 308
@@ -332,9 +349,9 @@
332 349
333 350 $source = $this->get_source( $args['source'] );
334 351
335 352 if ( ! $source ) {
336 - return new \WP_Error( 'template_error', self::ERROR_TEMPLATE_SOURCE_NOT_FOUND );
353 + return new \WP_Error( 'template_error', 'Template source not found.' );
337 354 }
338 355
339 356 if ( $this->is_action_to_same_source( $args ) ) {
340 357 return $source->move_template_to_folder( $args );
@@ -339,16 +356,16 @@
339 356 if ( $this->is_action_to_same_source( $args ) ) {
340 357 return $source->move_template_to_folder( $args );
341 358 }
342 359
343 - $from_source = $this->get_source( $args['from_source'] );
360 + if ( 'local' === $args['from_source'] ) {
361 + $args = $this->format_args_for_single_action_from_local_to_cloud( $args );
362 + }
344 363
345 - if ( ! $from_source ) {
346 - return new \WP_Error( 'template_error', self::ERROR_TEMPLATE_SOURCE_NOT_FOUND );
364 + if ( 'cloud' === $args['from_source'] ) {
365 + $args = $this->format_args_for_single_action_from_cloud_to_local( $args );
347 366 }
348 367
349 - $args = $from_source->format_args_for_single_action( $args );
350 -
351 368 $template_id = $source->save_item( $args );
352 369
353 370 if ( is_wp_error( $template_id ) ) {
354 371 return $template_id;
@@ -366,19 +383,19 @@
366 383
367 384 $source = $this->get_source( $args['source'][0] );
368 385
369 386 if ( ! $source ) {
370 - return new \WP_Error( 'template_error', self::ERROR_TEMPLATE_SOURCE_NOT_FOUND );
387 + return new \WP_Error( 'template_error', 'Template source not found.' );
371 388 }
372 389
373 - $from_source = $this->get_source( $args['from_source'] );
390 + if ( 'local' === $args['from_source'] ) {
391 + $args = $this->format_args_for_single_action_from_local_to_cloud( $args );
392 + }
374 393
375 - if ( ! $from_source ) {
376 - return new \WP_Error( 'template_error', self::ERROR_TEMPLATE_SOURCE_NOT_FOUND );
394 + if ( 'cloud' === $args['from_source'] ) {
395 + $args = $this->format_args_for_single_action_from_cloud_to_local( $args );
377 396 }
378 397
379 - $args = $from_source->format_args_for_single_action( $args );
380 -
381 398 $template_id = $source->save_item( $args );
382 399
383 400 if ( is_wp_error( $template_id ) ) {
384 401 return $template_id;
@@ -390,8 +407,53 @@
390 407 private function is_action_to_same_source( $args ) {
391 408 return $args['source'] === $args['from_source'];
392 409 }
393 410
411 + private function format_args_for_single_action_from_local_to_cloud( $args ) {
412 + if ( ! $this->is_allowed_to_read_template( [
413 + 'source' => $args['from_source'],
414 + 'template_id' => $args['from_template_id'],
415 + ] ) ) {
416 + return new \WP_Error(
417 + 'template_error',
418 + esc_html__( 'You do not have permission to access this template.', 'elementor' )
419 + );
420 + }
421 +
422 + $document = Plugin::$instance->documents->get( $args['from_template_id'] );
423 +
424 + if ( ! $document ) {
425 + return new \WP_Error( 'template_error', 'Document not found.' );
426 + }
427 +
428 + $args['content'] = $document->get_elements_data();
429 +
430 + $page = SettingsManager::get_settings_managers( 'page' )->get_model( $args['from_template_id'] );
431 + $args['page_settings'] = $page->get_data( 'settings' );
432 +
433 + return $args;
434 + }
435 +
436 + private function format_args_for_single_action_from_cloud_to_local( $args ) {
437 + $from_source = $this->get_source( $args['from_source'] );
438 +
439 + if ( ! $from_source ) {
440 + return new \WP_Error( 'template_error', 'Template source not found.' );
441 + }
442 +
443 + $data = $from_source->get_item( $args['from_template_id'] );
444 +
445 + if ( is_wp_error( $data ) || empty( $data['content'] ) ) {
446 + return new \WP_Error( 'template_error', 'Unable to format template args.' );
447 + }
448 +
449 + $decoded_data = json_decode( $data['content'], true );
450 + $args['content'] = $decoded_data['content'];
451 + $args['page_settings'] = $decoded_data['page_settings'];
452 +
453 + return $args;
454 + }
455 +
394 456 /**
395 457 * Update template.
396 458 *
397 459 * Update template on the database.
@@ -413,9 +475,9 @@
413 475
414 476 $source = $this->get_source( $template_data['source'] );
415 477
416 478 if ( ! $source ) {
417 - return new \WP_Error( 'template_error', self::ERROR_TEMPLATE_SOURCE_NOT_FOUND );
479 + return new \WP_Error( 'template_error', 'Template source not found.' );
418 480 }
419 481
420 482 $template_data['content'] = json_decode( $template_data['content'], true );
421 483
@@ -437,9 +499,9 @@
437 499
438 500 $source = $this->get_source( $template_data['source'] );
439 501
440 502 if ( ! $source ) {
441 - return new \WP_Error( 'template_error', self::ERROR_TEMPLATE_SOURCE_NOT_FOUND );
503 + return new \WP_Error( 'template_error', 'Template source not found.' );
442 504 }
443 505
444 506 $update = $source->update_item( $template_data );
445 507
@@ -492,15 +554,9 @@
492 554 if ( is_wp_error( $validate_args ) ) {
493 555 return $validate_args;
494 556 }
495 557
496 - $source = $this->get_source( $args['source'] );
497 -
498 - if ( ! $source ) {
499 - return new \WP_Error( 'template_error', self::ERROR_TEMPLATE_SOURCE_NOT_FOUND );
500 - }
501 -
502 - if ( method_exists( $source, 'is_allowed_to_read_template' ) && ! $source->is_allowed_to_read_template( $args ) ) {
558 + if ( ! $this->is_allowed_to_read_template( $args ) ) {
503 559 return new \WP_Error(
504 560 'template_error',
505 561 esc_html__( 'You do not have permission to access this template.', 'elementor' )
506 562 );
@@ -509,8 +565,14 @@
509 565 if ( isset( $args['edit_mode'] ) ) {
510 566 Plugin::$instance->editor->set_edit_mode( $args['edit_mode'] );
511 567 }
512 568
569 + $source = $this->get_source( $args['source'] );
570 +
571 + if ( ! $source ) {
572 + return new \WP_Error( 'template_error', 'Template source not found.' );
573 + }
574 +
513 575 do_action( 'elementor/template-library/before_get_source_data', $args, $source );
514 576
515 577 $data = $source->get_data( $args );
516 578
@@ -541,9 +603,9 @@
541 603
542 604 $source = $this->get_source( $args['source'] );
543 605
544 606 if ( ! $source ) {
545 - return new \WP_Error( 'template_error', self::ERROR_TEMPLATE_SOURCE_NOT_FOUND );
607 + return new \WP_Error( 'template_error', 'Template source not found.' );
546 608 }
547 609
548 610 return $source->delete_template( $args['template_id'] );
549 611 }
@@ -570,9 +632,9 @@
570 632
571 633 $source = $this->get_source( $args['source'] );
572 634
573 635 if ( ! $source ) {
574 - return new \WP_Error( 'template_error', self::ERROR_TEMPLATE_SOURCE_NOT_FOUND );
636 + return new \WP_Error( 'template_error', 'Template source not found' );
575 637 }
576 638
577 639 return $source->export_template( $args['template_id'] );
578 640 }
@@ -600,12 +662,8 @@
600 662 *
601 663 * @return mixed Whether the export succeeded or failed.
602 664 */
603 665 public function import_template( array $data ) {
604 - if ( ! User::is_current_user_can_upload_json() ) {
605 - return new \WP_Error( 'template_error', self::ERROR_JSON_UPLOAD_NOT_ALLOWED );
606 - }
607 -
608 666 // If the template is a JSON file, allow uploading it.
609 667 add_filter( 'elementor/files/allow-file-type/json', [ $this, 'enable_json_template_upload' ] );
610 668 add_filter( 'elementor/files/allow_unfiltered_upload', [ $this, 'enable_json_template_upload' ] );
611 669
@@ -615,15 +673,16 @@
615 673 remove_filter( 'elementor/files/allow-file-type/json', [ $this, 'enable_json_template_upload' ] );
616 674 remove_filter( 'elementor/files/allow_unfiltered_upload', [ $this, 'enable_json_template_upload' ] );
617 675
618 676 if ( is_wp_error( $upload_result ) ) {
677 + Plugin::$instance->uploads_manager->remove_file_or_dir( dirname( $upload_result['tmp_name'] ) );
678 +
619 679 return $upload_result;
620 680 }
621 681
622 682 $source = $this->get_source( $data['source'] ?? 'local' );
623 683
624 - $import_mode = $data['import_mode'] ?? 'match_site';
625 - $import_result = $source->import_template( $upload_result['name'], $upload_result['tmp_name'], $import_mode );
684 + $import_result = $source->import_template( $upload_result['name'], $upload_result['tmp_name'] );
626 685
627 686 // Remove the temporary directory generated for the stream-uploaded file.
628 687 Plugin::$instance->uploads_manager->remove_file_or_dir( dirname( $upload_result['tmp_name'] ) );
629 688
@@ -683,103 +742,11 @@
683 742 }
684 743
685 744 $import_data = $document->get_import_data( [ 'content' => $elements ] );
686 745
687 - $content = $document::on_import_update_dynamic_content(
688 - $import_data['content'],
689 - [ 'post_ids' => [] ]
690 - );
691 -
692 - return Plugin::$instance->db->iterate_data( $content, function( $element_data ) {
693 - unset( $element_data['htmlCache'] );
694 - return $element_data;
695 - } );
746 + return $import_data['content'];
696 747 }
697 748
698 - public function process_global_styles( array $args ) {
699 - $validate_args = $this->ensure_args( [ 'content', 'import_mode' ], $args );
700 -
701 - if ( is_wp_error( $validate_args ) ) {
702 - return $validate_args;
703 - }
704 -
705 - $import_mode = Template_Library_Import_Export_Utils::sanitize_import_mode( $args['import_mode'] );
706 -
707 - $content = $this->get_validated_json_arg( $args, 'content' );
708 - if ( is_wp_error( $content ) ) {
709 - return $content;
710 - }
711 -
712 - $global_classes = $this->get_validated_json_arg( $args, 'global_classes', true );
713 - if ( is_wp_error( $global_classes ) ) {
714 - return $global_classes;
715 - }
716 -
717 - $global_variables = $this->get_validated_json_arg( $args, 'global_variables', true );
718 - if ( is_wp_error( $global_variables ) ) {
719 - return $global_variables;
720 - }
721 -
722 - $data = [
723 - 'global_classes' => $global_classes,
724 - 'global_variables' => $global_variables,
725 - ];
726 -
727 - $result = apply_filters(
728 - 'elementor/template_library/import/process_content',
729 - [ 'content' => $content ],
730 - $import_mode,
731 - $data,
732 - null
733 - );
734 -
735 - $response = [
736 - 'content' => $result['content'],
737 - ];
738 -
739 - if ( ! empty( $result['updated_global_classes'] ) ) {
740 - $response['updated_global_classes'] = $result['updated_global_classes'];
741 - }
742 -
743 - if ( ! empty( $result['updated_global_variables'] ) ) {
744 - $response['updated_global_variables'] = $result['updated_global_variables'];
745 - }
746 -
747 - $classes_to_flatten = $result['classes_to_flatten'] ?? [];
748 - $variables_to_flatten = $result['variables_to_flatten'] ?? [];
749 -
750 - if ( ! empty( $classes_to_flatten ) ) {
751 - $response['flattened_classes_count'] = count( $classes_to_flatten );
752 - }
753 -
754 - if ( ! empty( $variables_to_flatten ) ) {
755 - $response['flattened_variables_count'] = count( $variables_to_flatten );
756 - }
757 -
758 - return $response;
759 - }
760 -
761 - private function get_validated_json_arg( array $args, string $key, bool $is_optional = false ) {
762 - if ( ! array_key_exists( $key, $args ) || null === $args[ $key ] || '' === $args[ $key ] ) {
763 - return $is_optional ? null : new \WP_Error( "invalid_$key", "Invalid $key." );
764 - }
765 -
766 - $value = $args[ $key ];
767 - if ( is_string( $value ) ) {
768 - $decoded = json_decode( $value, true );
769 - if ( JSON_ERROR_NONE !== json_last_error() ) {
770 - return new \WP_Error( "invalid_$key", "Invalid JSON $key." );
771 - }
772 - return $decoded;
773 - }
774 -
775 - if ( ! is_array( $value ) ) {
776 - return new \WP_Error( "invalid_$key", "Invalid $key format." );
777 - }
778 -
779 - return $value;
780 - }
781 -
782 749 public function get_item_children( array $args ) {
783 750 $validate_args = $this->ensure_args( [ 'source', 'template_id' ], $args );
784 751
785 752 if ( is_wp_error( $validate_args ) ) {
@@ -788,9 +755,9 @@
788 755
789 756 $source = $this->get_source( $args['source'] );
790 757
791 758 if ( ! $source ) {
792 - return new \WP_Error( 'template_error', self::ERROR_TEMPLATE_SOURCE_NOT_FOUND );
759 + return new \WP_Error( 'template_error', 'Template source not found.' );
793 760 }
794 761
795 762 return $source->get_item_children( $args );
796 763 }
@@ -804,9 +771,9 @@
804 771
805 772 $source = $this->get_source( $args['source'] );
806 773
807 774 if ( ! $source ) {
808 - return new \WP_Error( 'template_error', self::ERROR_TEMPLATE_SOURCE_NOT_FOUND );
775 + return new \WP_Error( 'template_error', 'Template source not found.' );
809 776 }
810 777
811 778 return $source->search_templates( $args );
812 779 }
@@ -820,9 +787,9 @@
820 787
821 788 $source = $this->get_source( $args['source'] );
822 789
823 790 if ( ! $source ) {
824 - return new \WP_Error( 'template_error', self::ERROR_TEMPLATE_SOURCE_NOT_FOUND );
791 + return new \WP_Error( 'template_error', 'Template source not found.' );
825 792 }
826 793
827 794 return $source->get_items( $args );
828 795 }
@@ -836,9 +803,9 @@
836 803
837 804 $source = $this->get_source( $args['source'] );
838 805
839 806 if ( ! $source ) {
840 - return new \WP_Error( 'template_error', self::ERROR_TEMPLATE_SOURCE_NOT_FOUND );
807 + return new \WP_Error( 'template_error', 'Template source not found.' );
841 808 }
842 809
843 810 return $source->save_folder( $args );
844 811 }
@@ -897,9 +864,9 @@
897 864 *
898 865 * @param array $data
899 866 *
900 867 * @return mixed
901 - * @throws \Exception If current user has no permission or the post is not found.
868 + * @throws \Exception If the user has no permission or the post is not found.
902 869 */
903 870 private function handle_ajax_request( $ajax_request, array $data ) {
904 871 if ( ! User::is_current_user_can_edit_post_type( Source_Local::CPT ) ) {
905 872 throw new \Exception( 'Access denied.' );
@@ -904,12 +871,8 @@
904 871 if ( ! User::is_current_user_can_edit_post_type( Source_Local::CPT ) ) {
905 872 throw new \Exception( 'Access denied.' );
906 873 }
907 874
908 - if ( 'import_template' === $ajax_request && ! User::is_current_user_can_upload_json() ) {
909 - throw new \Exception( 'Access denied.' );
910 - }
911 -
912 875 if ( ! empty( $data['editor_post_id'] ) ) {
913 876 $editor_post_id = absint( $data['editor_post_id'] );
914 877
915 878 if ( ! get_post( $editor_post_id ) ) {
@@ -924,13 +887,13 @@
924 887 if ( is_wp_error( $result ) ) {
925 888 throw new \Exception( esc_html( $result->get_error_message() ) );
926 889 }
927 890
928 - return $result;
891 + return $result; // phpcs:ignore WordPress.Security.EscapeOutput.ExceptionNotEscaped
929 892 }
930 893
931 894 /**
932 - * @throws \Exception If template import fails, file validation errors occur, or processing encounters issues.
895 + * @throws \Exception
933 896 */
934 897 public function save_template_screenshot( $data ): string {
935 898 $validate_args = $this->ensure_args( [ 'template_id', 'screenshot' ], $data );
936 899
@@ -943,9 +906,9 @@
943 906 return $this->get_source( 'cloud' )->save_item_preview( $data['template_id'], $raw_binary );
944 907 }
945 908
946 909 /**
947 - * @throws \Exception If template processing fails or data validation errors occur.
910 + * @throws \Exception
948 911 */
949 912 public function template_screenshot_failed( $data ): string {
950 913 $validate_args = $this->ensure_args( [ 'template_id' ], $data );
951 914
@@ -965,13 +928,13 @@
965 928
966 929 $source = $this->get_source( $data['source'] );
967 930
968 931 if ( ! $source ) {
969 - return new \WP_Error( 'template_error', self::ERROR_TEMPLATE_SOURCE_NOT_FOUND );
932 + return new \WP_Error( 'template_error', 'Template source not found.' );
970 933 }
971 934
972 935 if ( empty( $data['template_ids'] ) || ! is_array( $data['template_ids'] ) ) {
973 - return new \WP_Error( 'template_error', self::ERROR_TEMPLATE_IDS_MISSING );
936 + return new \WP_Error( 'template_error', 'Template IDs are missing.' );
974 937 }
975 938
976 939 return $source->bulk_delete_items( $data['template_ids'] );
977 940 }
@@ -985,13 +948,13 @@
985 948
986 949 $source = $this->get_source( $data['source'] );
987 950
988 951 if ( ! $source ) {
989 - return new \WP_Error( 'template_error', self::ERROR_TEMPLATE_SOURCE_NOT_FOUND );
952 + return new \WP_Error( 'template_error', 'Template source not found.' );
990 953 }
991 954
992 955 if ( empty( $data['template_ids'] ) || ! is_array( $data['template_ids'] ) ) {
993 - return new \WP_Error( 'template_error', self::ERROR_TEMPLATE_IDS_MISSING );
956 + return new \WP_Error( 'template_error', 'Template IDs are missing.' );
994 957 }
995 958
996 959 return $source->bulk_undo_delete_items( $data['template_ids'] );
997 960 }
@@ -1030,9 +993,8 @@
1030 993 'bulk_copy_templates',
1031 994 'bulk_undo_delete_items',
1032 995 'get_templates_quota',
1033 996 'template_screenshot_failed',
1034 - 'process_global_styles',
1035 997 ];
1036 998
1037 999 foreach ( $library_ajax_requests as $ajax_request ) {
1038 1000 $ajax->register_ajax_action( $ajax_request, function( $data ) use ( $ajax_request ) {
@@ -1133,8 +1095,46 @@
1133 1095
1134 1096 return true;
1135 1097 }
1136 1098
1099 + private function is_allowed_to_read_template( array $args ): bool {
1100 + if ( 'remote' === $args['source'] || 'cloud' === $args['source'] ) {
1101 + return true;
1102 + }
1103 +
1104 + if ( null === $this->wordpress_adapter ) {
1105 + $this->set_wordpress_adapter( new WordPress_Adapter() );
1106 + }
1107 +
1108 + if ( ! $this->should_check_permissions( $args ) ) {
1109 + return true;
1110 + }
1111 +
1112 + $post_id = intval( $args['template_id'] );
1113 + $post_status = $this->wordpress_adapter->get_post_status( $post_id );
1114 + $is_private_or_non_published = ( 'private' === $post_status && ! $this->wordpress_adapter->current_user_can( 'read_private_posts', $post_id ) ) || ( 'publish' !== $post_status );
1115 +
1116 + $can_read_template = $is_private_or_non_published || $this->wordpress_adapter->current_user_can( 'edit_post', $post_id );
1117 +
1118 + return apply_filters( 'elementor/template-library/is_allowed_to_read_template', $can_read_template, $args );
1119 + }
1120 +
1121 + private function should_check_permissions( array $args ): bool {
1122 + if ( null === $this->elementor_adapter ) {
1123 + $this->set_elementor_adapter( new Elementor_Adapter() );
1124 + }
1125 +
1126 + // TODO: Remove $isWidgetTemplate in 3.28.0 as there is a Pro dependency
1127 + $check_permissions = isset( $args['check_permissions'] ) && false === $args['check_permissions'];
1128 + $is_widget_template = 'widget' === $this->elementor_adapter->get_template_type( $args['template_id'] );
1129 +
1130 + if ( $check_permissions || $is_widget_template ) {
1131 + return false;
1132 + }
1133 +
1134 + return true;
1135 + }
1136 +
1137 1137 public function bulk_move_templates( array $args ) {
1138 1138 $validate_args = $this->ensure_args( [ 'source', 'from_source', 'from_template_id' ], $args );
1139 1139
1140 1140 if ( is_wp_error( $validate_args ) ) {
@@ -1149,9 +1149,9 @@
1149 1149 private function bulk_move_template_items( array $args ) {
1150 1150 $source = $this->get_source( $args['source'] );
1151 1151
1152 1152 if ( ! $source ) {
1153 - return new \WP_Error( 'template_error', self::ERROR_TEMPLATE_SOURCE_NOT_FOUND );
1153 + return new \WP_Error( 'template_error', 'Template source not found.' );
1154 1154 }
1155 1155
1156 1156 if ( $this->is_action_to_same_source( $args ) ) {
1157 1157 return $source->move_bulk_templates_to_folder( $args );
@@ -1156,24 +1156,20 @@
1156 1156 if ( $this->is_action_to_same_source( $args ) ) {
1157 1157 return $source->move_bulk_templates_to_folder( $args );
1158 1158 }
1159 1159
1160 - $from_source = $this->get_source( $args['from_source'] );
1160 + $bulk_args = 'local' === $args['from_source']
1161 + ? $this->format_args_for_bulk_action_from_local( $args )
1162 + : $this->format_args_for_bulk_action_from_cloud( $args );
1161 1163
1162 - if ( ! $from_source ) {
1163 - return new \WP_Error( 'template_error', self::ERROR_TEMPLATE_SOURCE_NOT_FOUND );
1164 - }
1165 -
1166 - $bulk_args = $from_source->format_args_for_bulk_action( $args );
1167 -
1168 1164 if ( $source->supports_quota() && ! $this->is_action_to_same_source( $args ) ) {
1169 - $quota_validation = $source->validate_quota( $bulk_args );
1165 + $is_quota_valid = $source->validate_quota( $bulk_args );
1170 1166
1171 - if ( is_wp_error( $quota_validation ) ) {
1172 - return $quota_validation;
1167 + if ( is_wp_error( $is_quota_valid ) ) {
1168 + return $is_quota_valid;
1173 1169 }
1174 1170
1175 - if ( false === $quota_validation ) {
1171 + if ( ! $is_quota_valid ) {
1176 1172 return new \WP_Error( 'quota_error', 'The moving failed because it will pass the maximum templates you can save.' );
1177 1173 }
1178 1174 }
1179 1175
@@ -1188,8 +1184,68 @@
1188 1184
1189 1185 return $bulk_save;
1190 1186 }
1191 1187
1188 + private function format_args_for_bulk_action_from_local( $args ) {
1189 + $bulk_args = [];
1190 +
1191 + foreach ( $args['from_template_id'] as $from_template_id ) {
1192 + if ( ! $this->is_allowed_to_read_template( [
1193 + 'source' => $args['from_source'],
1194 + 'template_id' => $from_template_id,
1195 + ] ) ) {
1196 + continue;
1197 + }
1198 +
1199 + $document = Plugin::$instance->documents->get( $from_template_id );
1200 +
1201 + if ( ! $document ) {
1202 + continue;
1203 + }
1204 +
1205 + $page = SettingsManager::get_settings_managers( 'page' )->get_model( $from_template_id );
1206 +
1207 + $bulk_args[] = array_merge(
1208 + $args,
1209 + [
1210 + 'title' => $document->get_post()->post_title,
1211 + 'type' => $document::get_type(),
1212 + 'content' => $document->get_elements_data(),
1213 + 'page_settings' => $page->get_data( 'settings' ),
1214 + ]
1215 + );
1216 + }
1217 +
1218 + return $bulk_args;
1219 + }
1220 +
1221 + private function format_args_for_bulk_action_from_cloud( $args ) {
1222 + $from_source = $this->get_source( $args['from_source'] );
1223 +
1224 + if ( ! $from_source ) {
1225 + return new \WP_Error( 'template_error', 'Template source not found.' );
1226 + }
1227 +
1228 + $templates = $from_source->get_bulk_items( $args );
1229 + $bulk_args = [];
1230 +
1231 + foreach ( $templates as $template ) {
1232 + $content = json_decode( $template['content'], true );
1233 +
1234 + $bulk_args[] = array_merge(
1235 + $args,
1236 + [
1237 + 'title' => $template['title'],
1238 + 'type' => $template['type'],
1239 + 'content' => $content['content'],
1240 + 'page_settings' => $content['page_settings'],
1241 + ]
1242 + );
1243 + }
1244 +
1245 + return $bulk_args;
1246 + }
1247 +
1192 1248 public function bulk_copy_templates( array $args ) {
1193 1249 $validate_args = $this->ensure_args( [ 'source', 'from_source', 'from_template_id' ], $args );
1194 1250
1195 1251 if ( is_wp_error( $validate_args ) ) {
@@ -1204,27 +1260,23 @@
1204 1260 private function bulk_copy_template_items( array $args ) {
1205 1261 $source = $this->get_source( $args['source'] );
1206 1262
1207 1263 if ( ! $source ) {
1208 - return new \WP_Error( 'template_error', self::ERROR_TEMPLATE_SOURCE_NOT_FOUND );
1264 + return new \WP_Error( 'template_error', 'Template source not found.' );
1209 1265 }
1210 1266
1211 - $from_source = $this->get_source( $args['from_source'] );
1267 + $bulk_args = 'local' === $args['from_source']
1268 + ? $this->format_args_for_bulk_action_from_local( $args )
1269 + : $this->format_args_for_bulk_action_from_cloud( $args );
1212 1270
1213 - if ( ! $from_source ) {
1214 - return new \WP_Error( 'template_error', self::ERROR_TEMPLATE_SOURCE_NOT_FOUND );
1215 - }
1216 -
1217 - $bulk_args = $from_source->format_args_for_bulk_action( $args );
1218 -
1219 1271 if ( $source->supports_quota() && ! $this->is_action_to_same_source( $args ) ) {
1220 - $quota_validation = $source->validate_quota( $bulk_args );
1272 + $is_quota_valid = $source->validate_quota( $bulk_args );
1221 1273
1222 - if ( is_wp_error( $quota_validation ) ) {
1223 - return $quota_validation;
1274 + if ( is_wp_error( $is_quota_valid ) ) {
1275 + return $is_quota_valid;
1224 1276 }
1225 1277
1226 - if ( false === $quota_validation ) {
1278 + if ( ! $is_quota_valid ) {
1227 1279 return new \WP_Error( 'quota_error', 'The copying failed because it will pass the maximum templates you can save.' );
1228 1280 }
1229 1281 }
1230 1282