PluginProbe
WP Data Access – App Builder for Tables, Forms, Charts, Maps & Dashboards / 5.5.84
WP Data Access – App Builder for Tables, Forms, Charts, Maps & Dashboards v5.5.84
5.5.84 5.5.83 5.5.82 5.5.81 5.5.80 5.5.79 5.5.77 5.5.76 5.5.75 5.5.73 5.5.72 5.5.22 5.5.23 5.5.29 5.5.3 5.5.31 5.5.32 5.5.34 5.5.35 5.5.36 5.5.37 5.5.4 5.5.40 5.5.41 5.5.42 All 160 releases
← All changes | WPDataAccess/API/WPDA_Apps.php +584 -155 5.5.375.5.84 View file →
@@ -8,8 +8,9 @@
8 8 use WPDataAccess\Plugin_Table_Models\WPDA_App_Container_Model;
9 9 use WPDataAccess\Plugin_Table_Models\WPDA_App_Apps_Model;
10 10 use WPDataAccess\Plugin_Table_Models\WPDA_App_Model;
11 11 use WPDataAccess\Plugin_Table_Models\WPDA_Table_Settings_Model;
12 +use WPDataAccess\Utilities\WPDA_App_Localization;
12 13 use WPDataAccess\WPDA;
13 14 class WPDA_Apps extends WPDA_API_Core {
14 15 const METHODS = array('httpGet', 'httpPost', 'httpRequest');
15 16
@@ -26,8 +27,9 @@
26 27 $value->{$property_name} = $this->sanitize_settings( $property_value );
27 28 }
28 29 } else {
29 30 // Allow HTML and onclick for computed fields
31 + // phpcs:disable WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound
30 32 $value = apply_filters(
31 33 'wp_kses_post',
32 34 $value,
33 35 "",
@@ -32,8 +34,9 @@
32 34 $value,
33 35 "",
34 36 ["onclick"]
35 37 );
38 + // phpcs:enable WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound
36 39 }
37 40 return $value;
38 41 }
39 42
@@ -273,8 +276,19 @@
273 276 return json_encode( $sanitized_settings );
274 277 },
275 278 'validate_callback' => 'rest_validate_request_arg',
276 279 ),
280 + 'map' => array(
281 + 'required' => false,
282 + 'type' => 'string',
283 + 'description' => __( 'Map settings - JSON string', 'wp-data-access' ),
284 + 'sanitize_callback' => function ( $param ) {
285 + $sanitized_settings = $this->sanitize_settings( json_decode( (string) $param, true ) );
286 + // Save sanitized JSON as string
287 + return json_encode( $sanitized_settings );
288 + },
289 + 'validate_callback' => 'rest_validate_request_arg',
290 + ),
277 291 'chart' => array(
278 292 'required' => false,
279 293 'type' => 'string',
280 294 'description' => __( 'Chart settings - JSON string', 'wp-data-access' ),
@@ -449,8 +463,9 @@
449 463 'search_params' => $this->get_param( 'search_params' ),
450 464 'shortcode_params' => $this->get_param( 'search_params' ),
451 465 'md' => $this->get_param( 'md' ),
452 466 'cascade' => $this->get_param( 'cascade' ),
467 + 'values' => $this->get_param( 'md' ),
453 468 ),
454 469 ) );
455 470 register_rest_route( WPDA_API::WPDA_NAMESPACE, 'app/lookup/dbs', array(
456 471 'methods' => array('POST'),
@@ -491,9 +506,11 @@
491 506 'methods' => array('POST'),
492 507 'callback' => array($this, 'app_chart_data'),
493 508 'permission_callback' => '__return_true',
494 509 'args' => array(
495 - 'app_id' => $this->get_param( 'app_id' ),
510 + 'app_id' => $this->get_param( 'app_id' ),
511 + 'search_custom' => $this->get_param( 'search_custom' ),
512 + 'shortcode_params' => $this->get_param( 'search_params' ),
496 513 ),
497 514 ) );
498 515 register_rest_route( WPDA_API::WPDA_NAMESPACE, 'app/dbs/rename', array(
499 516 'methods' => array('POST'),
@@ -501,12 +518,195 @@
501 518 'permission_callback' => '__return_true',
502 519 'args' => array(
503 520 'dbs_source' => $this->get_param( 'dbs' ),
504 521 'dbs_destination' => $this->get_param( 'dbs' ),
522 + 'appDbId' => array(
523 + 'required' => false,
524 + 'type' => 'integer',
525 + 'description' => __( 'App Id', 'wp-data-access' ),
526 + 'sanitize_callback' => 'absint',
527 + 'validate_callback' => 'rest_validate_request_arg',
528 + ),
505 529 ),
506 530 ) );
531 + register_rest_route( WPDA_API::WPDA_NAMESPACE, 'app/lang/get', array(
532 + 'methods' => array('POST'),
533 + 'callback' => array($this, 'app_lang_get'),
534 + 'permission_callback' => '__return_true',
535 + ) );
536 + register_rest_route( WPDA_API::WPDA_NAMESPACE, 'app/lang/set', array(
537 + 'methods' => array('POST'),
538 + 'callback' => array($this, 'app_lang_set'),
539 + 'permission_callback' => '__return_true',
540 + 'args' => array(
541 + 'localizations' => array(
542 + 'required' => true,
543 + 'type' => 'mixed',
544 + 'description' => __( 'Custom side translations (JSON as string)', 'wp-data-access' ),
545 + 'sanitize_callback' => 'sanitize_text_field',
546 + 'validate_callback' => 'rest_validate_request_arg',
547 + ),
548 + ),
549 + ) );
550 + register_rest_route( WPDA_API::WPDA_NAMESPACE, 'app/call', array(
551 + 'methods' => array('POST'),
552 + 'callback' => array($this, 'app_call'),
553 + 'permission_callback' => '__return_true',
554 + 'args' => array(
555 + 'app_id' => $this->get_param( 'app_id' ),
556 + 'cls' => array(
557 + 'required' => true,
558 + 'type' => 'string',
559 + 'description' => __( 'Class name', 'wp-data-access' ),
560 + 'sanitize_callback' => 'sanitize_text_field',
561 + 'validate_callback' => 'rest_validate_request_arg',
562 + ),
563 + 'fnc' => array(
564 + 'required' => true,
565 + 'type' => 'string',
566 + 'description' => __( 'Function name', 'wp-data-access' ),
567 + 'sanitize_callback' => 'sanitize_text_field',
568 + 'validate_callback' => 'rest_validate_request_arg',
569 + ),
570 + 'arg' => array(
571 + 'required' => true,
572 + 'type' => 'mixed',
573 + 'description' => __( 'Arguments', 'wp-data-access' ),
574 + 'sanitize_callback' => 'sanitize_text_field',
575 + 'validate_callback' => 'rest_validate_request_arg',
576 + ),
577 + ),
578 + ) );
579 + // PWA
580 + register_rest_route( WPDA_API::WPDA_NAMESPACE, 'app/pwa/get', array(
581 + 'methods' => array('POST'),
582 + 'callback' => array($this, 'app_wpa_get'),
583 + 'permission_callback' => '__return_true',
584 + 'args' => array(
585 + 'app_id' => $this->get_param( 'app_id' ),
586 + ),
587 + ) );
588 + register_rest_route( WPDA_API::WPDA_NAMESPACE, 'app/pwa/activate', array(
589 + 'methods' => array('POST'),
590 + 'callback' => array($this, 'app_wpa_activate'),
591 + 'permission_callback' => '__return_true',
592 + 'args' => array(
593 + 'app_id' => $this->get_param( 'app_id' ),
594 + ),
595 + ) );
596 + register_rest_route( WPDA_API::WPDA_NAMESPACE, 'app/pwa/deactivate', array(
597 + 'methods' => array('POST'),
598 + 'callback' => array($this, 'app_wpa_deactivate'),
599 + 'permission_callback' => '__return_true',
600 + 'args' => array(
601 + 'app_id' => $this->get_param( 'app_id' ),
602 + ),
603 + ) );
604 + register_rest_route( WPDA_API::WPDA_NAMESPACE, 'app/upload', array(
605 + 'methods' => array('POST'),
606 + 'callback' => array($this, 'app_upload'),
607 + 'permission_callback' => '__return_true',
608 + 'args' => array(
609 + 'app_id' => $this->get_param( 'app_id' ),
610 + 'cnt_id' => $this->get_param( 'cnt_id' ),
611 + 'pk' => array(
612 + 'required' => true,
613 + 'type' => 'string',
614 + 'description' => __( 'Primary key in JSON format', 'wp-data-access' ),
615 + 'sanitize_callback' => 'sanitize_text_field',
616 + 'validate_callback' => 'rest_validate_request_arg',
617 + ),
618 + 'col' => $this->get_param( 'col' ),
619 + ),
620 + ) );
621 + register_rest_route( WPDA_API::WPDA_NAMESPACE, 'app/download', array(
622 + 'methods' => array('POST'),
623 + 'callback' => array($this, 'app_download'),
624 + 'permission_callback' => '__return_true',
625 + 'args' => array(
626 + 'app_id' => $this->get_param( 'app_id' ),
627 + 'cnt_id' => $this->get_param( 'cnt_id' ),
628 + 'pk' => array(
629 + 'required' => true,
630 + 'type' => 'string',
631 + 'description' => __( 'Primary key in JSON format', 'wp-data-access' ),
632 + 'sanitize_callback' => 'sanitize_text_field',
633 + 'validate_callback' => 'rest_validate_request_arg',
634 + ),
635 + 'col' => $this->get_param( 'col' ),
636 + ),
637 + ) );
507 638 }
508 639
640 + public function app_download( $request ) {
641 + return $this->WPDA_Rest_Response( 'OK' );
642 + }
643 +
644 + public function app_upload( $request ) {
645 + return $this->WPDA_Rest_Response( 'OK' );
646 + }
647 +
648 + public function app_wpa_deactivate( $request ) {
649 + if ( !$this->current_user_can_access() ) {
650 + // Only admins
651 + return $this->unauthorized();
652 + }
653 + if ( !$this->current_user_token_valid( $request ) ) {
654 + return $this->invalid_nonce();
655 + }
656 + return $this->WPDA_Rest_Response( 'OK' );
657 + }
658 +
659 + public function app_wpa_activate( $request ) {
660 + if ( !$this->current_user_can_access() ) {
661 + // Only admins
662 + return $this->unauthorized();
663 + }
664 + if ( !$this->current_user_token_valid( $request ) ) {
665 + return $this->invalid_nonce();
666 + }
667 + return $this->WPDA_Rest_Response( 'OK' );
668 + }
669 +
670 + public function app_wpa_get( $request ) {
671 + if ( !$this->current_user_can_access() ) {
672 + // Only admins
673 + return $this->unauthorized();
674 + }
675 + if ( !$this->current_user_token_valid( $request ) ) {
676 + return $this->invalid_nonce();
677 + }
678 + return $this->WPDA_Rest_Response( 'NOT FOUND' );
679 + }
680 +
681 + public function app_call( $request ) {
682 + return $this->bad_request();
683 + }
684 +
685 + public function app_lang_get( $request ) {
686 + if ( !$this->current_user_can_access() ) {
687 + // Only admins
688 + return $this->unauthorized();
689 + }
690 + if ( !$this->current_user_token_valid( $request ) ) {
691 + return $this->invalid_nonce();
692 + }
693 + return $this->WPDA_Rest_Response( '', WPDA_App_Localization::get() );
694 + }
695 +
696 + public function app_lang_set( $request ) {
697 + if ( !$this->current_user_can_access() ) {
698 + // Only admins
699 + return $this->unauthorized();
700 + }
701 + if ( !$this->current_user_token_valid( $request ) ) {
702 + return $this->invalid_nonce();
703 + }
704 + $localizations = $request->get_param( 'localizations' );
705 + WPDA_App_Localization::set( $localizations );
706 + return $this->WPDA_Rest_Response( 'Translation successfully saved' );
707 + }
708 +
509 709 private function get_app_columns( $columns ) {
510 710 if ( !is_array( $columns ) ) {
511 711 return false;
512 712 }
@@ -621,9 +821,9 @@
621 821 $tbl,
622 822 $msg,
623 823 $settings
624 824 ) ) {
625 - $container = WPDA_App_Container_Model::get_container( $cnt_id );
825 + $container = WPDA_App_Container_Model::get_container( $app_id, $cnt_id );
626 826 if ( !isset( $container[0] ) ) {
627 827 return $this->bad_request();
628 828 }
629 829 return $this->get_app_container_meta( $app_id, $container, $rel_tab );
@@ -650,17 +850,17 @@
650 850 $tbl,
651 851 $msg,
652 852 $settings
653 853 ) ) {
654 - $container = WPDA_App_Container_Model::get_container( $cnt_id_from );
854 + $container = WPDA_App_Container_Model::get_container( $app_id, $cnt_id_from );
655 855 if ( !isset( $container[0] ) ) {
656 856 return $this->bad_request();
657 857 }
658 - $container = WPDA_App_Container_Model::get_container( $cnt_id_to );
858 + $container = WPDA_App_Container_Model::get_container( $app_id, $cnt_id_to );
659 859 if ( !isset( $container[0] ) ) {
660 860 return $this->bad_request();
661 861 }
662 - return $this->reorder_details( $cnt_id_from, $cnt_id_to );
862 + return $this->reorder_details( $app_id, $cnt_id_from, $cnt_id_to );
663 863 } else {
664 864 if ( 'rest_cookie_invalid_nonce' === $msg ) {
665 865 return $this->invalid_nonce();
666 866 } else {
@@ -740,8 +940,9 @@
740 940 $search_column_fns,
741 941 &$default_where,
742 942 &$lookups
743 943 ) {
944 + return $this->bad_request();
744 945 }
745 946
746 947 private function build_relationships(
747 948 $container,
@@ -748,8 +949,9 @@
748 949 &$m2m_relationship,
749 950 $tbl,
750 951 &$default_where
751 952 ) {
953 + return $this->bad_request();
752 954 }
753 955
754 956 public function app_select( $request ) {
755 957 $app_id = $request->get_param( 'app_id' );
@@ -772,12 +974,18 @@
772 974 $media = $request->get_param( 'media' );
773 975 $rel_tab = $request->get_param( 'rel_tab' );
774 976 $client_side = '1' === $request->get_param( 'client_side' );
775 977 $geo_radius = $request->get_param( 'geo_radius' );
978 + $docs = array();
776 979 $default_where = '';
777 980 $default_orderby = '';
778 981 $lookups = array();
779 982 $m2m_relationship = array();
983 + if ( $client_side ) {
984 + // Delete search values on refresh
985 + $search = '';
986 + $search_columns = array();
987 + }
780 988 if ( $this->check_app_access(
781 989 $app_id,
782 990 $cnt_id,
783 991 'select',
@@ -785,27 +993,57 @@
785 993 $tbl,
786 994 $msg,
787 995 $settings
788 996 ) ) {
789 - $container = WPDA_App_Container_Model::get_container( $cnt_id );
790 - if ( '1' === $rel_tab ) {
997 + $container = WPDA_App_Container_Model::get_container( $app_id, $cnt_id );
998 + $app = WPDA_App_Model::get_by_id( $app_id );
999 + if ( isset( $app[0]['app_type'], $container[0]['cnt_map'] ) && '2' == $app[0]['app_type'] && null !== $container[0]['cnt_map'] ) {
1000 + // App = Map
1001 + // Get default where map
1002 + $map_json = json_decode( (string) $container[0]['cnt_map'], true );
1003 + if ( isset( $map_json['setup']['defaultWhere'] ) && null !== $map_json['setup']['defaultWhere'] && '' !== trim( $map_json['setup']['defaultWhere'] ) ) {
1004 + $default_where = $map_json['setup']['defaultWhere'];
1005 + }
791 1006 } else {
792 - $table_settings = $settings['table'] ?? array();
793 - // Get default where clause
794 - if ( isset( $table_settings['table']['defaultWhere'] ) ) {
795 - $default_where = $table_settings['table']['defaultWhere'];
1007 + // All other apps (not being a map)
1008 + if ( '1' === $rel_tab ) {
1009 + } else {
1010 + $table_settings = $settings['table'] ?? array();
1011 + // Get default where clause
1012 + if ( isset( $table_settings['table']['defaultWhere'] ) ) {
1013 + $default_where = $table_settings['table']['defaultWhere'];
1014 + }
1015 + // Get default order by
1016 + if ( isset( $table_settings['table']['defaultOrderBy'] ) ) {
1017 + $default_orderby_db = $table_settings['table']['defaultOrderBy'];
1018 + if ( is_array( $default_orderby_db ) ) {
1019 + foreach ( $default_orderby_db as $orderby ) {
1020 + if ( isset( $orderby['columnName'], $orderby['order'] ) && '' !== trim( $orderby['columnName'] ) ) {
1021 + $default_orderby .= (( '' === $default_orderby ? 'order by ' : ',' )) . '`' . WPDA::remove_backticks( $orderby['columnName'] ) . '` ' . (( 'desc' === $orderby['order'] ? 'desc' : 'asc' ));
1022 + }
1023 + }
1024 + }
1025 + }
796 1026 }
797 - // Get default order by
798 - if ( isset( $table_settings['table']['defaultOrderBy'] ) ) {
799 - $default_orderby_db = $table_settings['table']['defaultOrderBy'];
800 - if ( is_array( $default_orderby_db ) ) {
801 - foreach ( $default_orderby_db as $orderby ) {
802 - if ( isset( $orderby['columnName'], $orderby['order'] ) && '' !== trim( $orderby['columnName'] ) ) {
803 - $default_orderby .= (( '' === $default_orderby ? 'order by ' : ',' )) . '`' . WPDA::remove_backticks( $orderby['columnName'] ) . '` ' . (( 'desc' === $orderby['order'] ? 'desc' : 'asc' ));
804 - }
1027 + }
1028 + if ( isset( $settings['columns'] ) && is_array( $settings['columns'] ) && '1' !== $rel_tab ) {
1029 + $queryable_columns = array();
1030 + if ( isset( $settings['table']['columns'] ) && is_array( $settings['table']['columns'] ) ) {
1031 + foreach ( $settings['table']['columns'] as $column ) {
1032 + if ( isset( $column['queryable'] ) && $column['queryable'] ) {
1033 + $queryable_columns[] = $column['columnName'];
805 1034 }
806 1035 }
807 1036 }
1037 + $app_columns = array();
1038 + foreach ( $settings['columns'] as $column ) {
1039 + if ( isset( $column['columnName'], $column['isSelected'] ) && $column['isSelected'] ) {
1040 + $app_columns[$column['columnName']] = in_array( $column['columnName'], $queryable_columns );
1041 + }
1042 + }
1043 + if ( 0 < count( $app_columns ) ) {
1044 + $col = $app_columns;
1045 + }
808 1046 }
809 1047 $table_api = new WPDA_Table();
810 1048 return $table_api->select(
811 1049 $dbs,
@@ -831,9 +1069,10 @@
831 1069 $md,
832 1070 $m2m_relationship,
833 1071 $search_data_types,
834 1072 $client_side,
835 - $geo_radius
1073 + $geo_radius,
1074 + $docs
836 1075 );
837 1076 } else {
838 1077 if ( 'rest_cookie_invalid_nonce' === $msg ) {
839 1078 return $this->invalid_nonce();
@@ -857,8 +1096,9 @@
857 1096 return array_map( function ( $value ) {
858 1097 if ( true === $value['isSelected'] ) {
859 1098 return $value['columnName'];
860 1099 }
1100 + return null;
861 1101 }, $columns );
862 1102 }
863 1103
864 1104 public function app_get( $request ) {
@@ -866,8 +1106,9 @@
866 1106 $cnt_id = $request->get_param( 'cnt_id' );
867 1107 $key = $request->get_param( 'key' );
868 1108 $media = $request->get_param( 'media' );
869 1109 $rel_tab = $request->get_param( 'rel_tab' );
1110 + $docs = array();
870 1111 if ( $this->check_app_access(
871 1112 $app_id,
872 1113 $cnt_id,
873 1114 'select',
@@ -887,9 +1128,10 @@
887 1128 $tbl,
888 1129 $key,
889 1130 $media,
890 1131 $column_names,
891 - $default_where
1132 + $default_where,
1133 + $docs
892 1134 );
893 1135 } else {
894 1136 if ( 'rest_cookie_invalid_nonce' === $msg ) {
895 1137 return $this->invalid_nonce();
@@ -978,53 +1220,9 @@
978 1220 }
979 1221 }
980 1222
981 1223 public function app_update_inline( $request ) {
982 - $app_id = $request->get_param( 'app_id' );
983 - $cnt_id = $request->get_param( 'cnt_id' );
984 - $key = $request->get_param( 'key' );
985 - $val = $request->get_param( 'val' );
986 - if ( $this->check_app_access(
987 - $app_id,
988 - $cnt_id,
989 - 'select',
990 - $dbs,
991 - $tbl,
992 - $msg,
993 - $settings
994 - ) ) {
995 - foreach ( $val as $column_name => $column ) {
996 - $found = false;
997 - if ( isset( $settings['table']['columns'] ) ) {
998 - foreach ( $settings['table']['columns'] as $settings_column ) {
999 - if ( isset( $settings_column['columnName'] ) && $column_name === $settings_column['columnName'] ) {
1000 - $found = true;
1001 - }
1002 - }
1003 - if ( !$found ) {
1004 - return $this->unauthorized();
1005 - }
1006 - }
1007 - }
1008 - $column_names = $this->get_app_form_columns( $settings );
1009 - if ( false === $column_names ) {
1010 - $column_names = array();
1011 - }
1012 - $table_api = new WPDA_Table();
1013 - return $table_api->update(
1014 - $dbs,
1015 - $tbl,
1016 - $key,
1017 - $val,
1018 - $column_names
1019 - );
1020 - } else {
1021 - if ( 'rest_cookie_invalid_nonce' === $msg ) {
1022 - return $this->invalid_nonce();
1023 - } else {
1024 - return $this->unauthorized();
1025 - }
1026 - }
1224 + return $this->bad_request();
1027 1225 }
1028 1226
1029 1227 public function app_delete( $request ) {
1030 1228 $app_id = $request->get_param( 'app_id' );
@@ -1073,8 +1271,9 @@
1073 1271 $search_params = $request->get_param( 'search_params' );
1074 1272 $shortcode_params = $request->get_param( 'shortcode_params' );
1075 1273 $md = $request->get_param( 'md' );
1076 1274 $cascade = $request->get_param( 'cascade' );
1275 + $values = $request->get_param( 'values' );
1077 1276 $default_where = '';
1078 1277 $default_where_lookup = '';
1079 1278 $lookups = array();
1080 1279 $m2m_relationship = array();
@@ -1086,9 +1285,9 @@
1086 1285 $tbl,
1087 1286 $msg,
1088 1287 $settings
1089 1288 ) ) {
1090 - $container = WPDA_App_Container_Model::get_container( $cnt_id );
1289 + $container = WPDA_App_Container_Model::get_container( $app_id, $cnt_id );
1091 1290 if ( !isset( $container[0] ) ) {
1092 1291 return $this->bad_request();
1093 1292 }
1094 1293 $lookup = array();
@@ -1139,9 +1338,10 @@
1139 1338 $this->process_params(
1140 1339 $default_where_lookup,
1141 1340 $search_custom,
1142 1341 $search_params,
1143 - $shortcode_params
1342 + $shortcode_params,
1343 + $values
1144 1344 ),
1145 1345 '1' === $cascade,
1146 1346 $tbl,
1147 1347 $col,
@@ -1148,9 +1348,10 @@
1148 1348 $this->process_params(
1149 1349 $default_where,
1150 1350 $search_custom,
1151 1351 $search_params,
1152 - $shortcode_params
1352 + $shortcode_params,
1353 + $values
1153 1354 ),
1154 1355 $search,
1155 1356 $cols,
1156 1357 $search_columns,
@@ -1171,8 +1372,12 @@
1171 1372 }
1172 1373 }
1173 1374
1174 1375 public function app_lookup_dbs( $request ) {
1376 + // Only admins are allowed to configre lookups
1377 + if ( !$this->current_user_can_access() ) {
1378 + return $this->unauthorized();
1379 + }
1175 1380 $app_id = $request->get_param( 'app_id' );
1176 1381 $cnt_id = $request->get_param( 'cnt_id' );
1177 1382 if ( $this->check_app_access(
1178 1383 $app_id,
@@ -1195,8 +1400,12 @@
1195 1400 }
1196 1401 }
1197 1402
1198 1403 public function app_lookup_tbl( $request ) {
1404 + // Only admins are allowed to configre lookups
1405 + if ( !$this->current_user_can_access() ) {
1406 + return $this->unauthorized();
1407 + }
1199 1408 $app_id = $request->get_param( 'app_id' );
1200 1409 $cnt_id = $request->get_param( 'cnt_id' );
1201 1410 $dbs = $request->get_param( 'dbs' );
1202 1411 if ( $this->check_app_access(
@@ -1220,8 +1429,12 @@
1220 1429 }
1221 1430 }
1222 1431
1223 1432 public function app_lookup_cls( $request ) {
1433 + // Only admins are allowed to configre lookups
1434 + if ( !$this->current_user_can_access() ) {
1435 + return $this->unauthorized();
1436 + }
1224 1437 $app_id = $request->get_param( 'app_id' );
1225 1438 $cnt_id = $request->get_param( 'cnt_id' );
1226 1439 $dbs = $request->get_param( 'dbs' );
1227 1440 $tbl = $request->get_param( 'tbl' );
@@ -1246,23 +1459,14 @@
1246 1459 }
1247 1460 }
1248 1461
1249 1462 public function app_qb_list( $request ) {
1250 - if ( !$this->current_user_can_access() ) {
1251 - return $this->unauthorized();
1252 - }
1253 - if ( !$this->current_user_token_valid( $request ) ) {
1254 - return $this->invalid_nonce();
1255 - }
1256 - $queries = get_user_meta( WPDA::get_current_user_id(), 'wpda_query_builder' );
1257 - if ( false === $queries ) {
1258 - $queries = array();
1259 - }
1260 - return $this->WPDA_Rest_Response( '', $queries );
1463 + $qb = new WPDA_QB();
1464 + return $qb->open( $request );
1261 1465 }
1262 1466
1263 1467 public function app_dbs_rename( $request ) {
1264 - if ( !$this->current_user_can_access( true ) ) {
1468 + if ( !$this->current_user_can_access() ) {
1265 1469 // Only admins
1266 1470 return $this->unauthorized();
1267 1471 }
1268 1472 if ( !$this->current_user_token_valid( $request ) ) {
@@ -1276,8 +1480,71 @@
1276 1480 ));
1277 1481 }
1278 1482 global $wpdb;
1279 1483 $renamed = 0;
1484 + $debug_mode = 'on' === WPDA::get_option( WPDA::OPTION_PLUGIN_DEBUG );
1485 + $debug = array();
1486 + $errors = array();
1487 + if ( $request->get_param( 'appDbId' ) ) {
1488 + // Update app only
1489 + $appDbId = $request->get_param( 'appDbId' );
1490 + // phpcs:disable WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching, WordPress.DB.PreparedSQL.NotPrepared -- plugin table
1491 + $sql = $wpdb->prepare( "update `{$wpdb->prefix}wpda_app_container` set `cnt_dbs` = %s where `cnt_dbs` = %s and app_id = %d", array($dbs_destination, $dbs_source, $appDbId) );
1492 + $result = $wpdb->query( $sql );
1493 + // phpcs:enable WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching, WordPress.DB.PreparedSQL.NotPrepared
1494 + $renamed += $result;
1495 + if ( $debug_mode ) {
1496 + $debug[] = array(
1497 + 'sql' => $sql,
1498 + 'result' => $result,
1499 + );
1500 + }
1501 + if ( '' !== $wpdb->last_error ) {
1502 + $errors[] = array(
1503 + 'sql' => $sql,
1504 + 'error' => $wpdb->last_error,
1505 + );
1506 + }
1507 + $sql_content = array("update `{$wpdb->prefix}wpda_app_container` set `cnt_table` = replace(`cnt_table`, '\"dbs\":\"%1s\"', '\"dbs\":\"%1s\"') where `cnt_table` like '%\"dbs\":\"%1s\"%' and app_id = %d", "update `{$wpdb->prefix}wpda_app_container` set `cnt_form` = replace(`cnt_form`, '\"dbs\":\"%1s\"', '\"dbs\":\"%1s\"') where `cnt_form` like '%\"dbs\":\"%1s\"%' and app_id = %d");
1508 + foreach ( $sql_content as $sql ) {
1509 + // phpcs:disable WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching, WordPress.DB.PreparedSQL.NotPrepared -- plugin table
1510 + $result = $wpdb->query( $wpdb->prepare( $sql, array(
1511 + $dbs_source,
1512 + $dbs_destination,
1513 + $dbs_source,
1514 + $appDbId
1515 + ) ) );
1516 + $renamed += $result;
1517 + if ( $debug_mode ) {
1518 + $debug[] = array(
1519 + 'sql' => $sql,
1520 + 'result' => $result,
1521 + );
1522 + }
1523 + if ( '' !== $wpdb->last_error ) {
1524 + $errors[] = array(
1525 + 'sql' => $sql,
1526 + 'error' => $wpdb->last_error,
1527 + );
1528 + }
1529 + }
1530 + $context = array();
1531 + if ( $debug_mode ) {
1532 + $context['debug'] = $debug;
1533 + }
1534 + if ( 0 < count( $errors ) ) {
1535 + $context['errors'] = $errors;
1536 + return new \WP_Error('error', 'Failed renaming database', array(
1537 + 'status' => 401,
1538 + 'context' => $context,
1539 + ));
1540 + }
1541 + return $this->WPDA_Rest_Response( sprintf(
1542 + /* translators: %s = number of database substitutions */
1543 + __( 'Successfully renamed %s database occurrences', 'wp-data-access' ),
1544 + $renamed
1545 + ), null, $context );
1546 + }
1280 1547 // Rename all occurrences in repository tables and apps
1281 1548 $sqls = array(
1282 1549 "update `{$wpdb->prefix}wpda_publisher` set `pub_schema_name` = %s where `pub_schema_name` = %s",
1283 1550 "update `{$wpdb->prefix}wpda_project_page` set `page_schema_name` = %s where `page_schema_name` = %s",
@@ -1285,22 +1552,68 @@
1285 1552 "update `{$wpdb->prefix}wpda_media` set `media_schema_name` = %s where `media_schema_name` = %s",
1286 1553 "update `{$wpdb->prefix}wpda_menus` set `menu_schema_name` = %s where `menu_schema_name` = %s",
1287 1554 "update `{$wpdb->prefix}wpda_table_design` set `wpda_schema_name` = %s where `wpda_schema_name` = %s",
1288 1555 "update `{$wpdb->prefix}wpda_table_settings` set `wpda_schema_name` = %s where `wpda_schema_name` = %s",
1289 - "update `{$wpdb->prefix}wpda_container` set `cnt_dbs` = %s where `cnt_dbs` = %s"
1556 + "update `{$wpdb->prefix}wpda_app_container` set `cnt_dbs` = %s where `cnt_dbs` = %s"
1290 1557 );
1291 1558 foreach ( $sqls as $sql ) {
1292 - $renamed += $wpdb->query( $wpdb->prepare( $sql, array($dbs_destination, $dbs_source) ) );
1559 + // phpcs:disable WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching, WordPress.DB.PreparedSQL.NotPrepared -- plugin table
1560 + $result = $wpdb->query( $wpdb->prepare( $sql, array($dbs_destination, $dbs_source) ) );
1561 + // phpcs:enable WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching, WordPress.DB.PreparedSQL.NotPrepared
1562 + $renamed += $result;
1563 + if ( $debug_mode ) {
1564 + $debug[] = array(
1565 + 'sql' => $sql,
1566 + 'result' => $result,
1567 + );
1568 + }
1569 + if ( '' !== $wpdb->last_error ) {
1570 + $errors[] = array(
1571 + 'sql' => $sql,
1572 + 'error' => $wpdb->last_error,
1573 + );
1574 + }
1293 1575 }
1294 - $sql_content = array("update `{$wpdb->prefix}wpda_container` set `cnt_table` = replace(`cnt_table`, '\"dbs\":\"%1s\"', '\"dbs\":\"%1s\"') where `cnt_table` like '%\"dbs\":\"%1s\"%'", "update `{$wpdb->prefix}wpda_container` set `cnt_form` = replace(`cnt_form`, '\"dbs\":\"%1s\"', '\"dbs\":\"%1s\"') where `cnt_form` like '%\"dbs\":\"%1s\"%'");
1576 + $sql_content = array("update `{$wpdb->prefix}wpda_app_container` set `cnt_table` = replace(`cnt_table`, '\"dbs\":\"%1s\"', '\"dbs\":\"%1s\"') where `cnt_table` like '%\"dbs\":\"%1s\"%'", "update `{$wpdb->prefix}wpda_app_container` set `cnt_form` = replace(`cnt_form`, '\"dbs\":\"%1s\"', '\"dbs\":\"%1s\"') where `cnt_form` like '%\"dbs\":\"%1s\"%'");
1295 1577 foreach ( $sql_content as $sql ) {
1296 - $renamed += $wpdb->query( $wpdb->prepare( $sql, array($dbs_source, $dbs_destination, $dbs_source) ) );
1578 + // phpcs:disable WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching, WordPress.DB.PreparedSQL.NotPrepared -- plugin table
1579 + $result = $wpdb->query( $wpdb->prepare( $sql, array($dbs_source, $dbs_destination, $dbs_source) ) );
1580 + $renamed += $result;
1581 + if ( $debug_mode ) {
1582 + $debug[] = array(
1583 + 'sql' => $sql,
1584 + 'result' => $result,
1585 + );
1586 + }
1587 + if ( '' !== $wpdb->last_error ) {
1588 + $errors[] = array(
1589 + 'sql' => $sql,
1590 + 'error' => $wpdb->last_error,
1591 + );
1592 + }
1297 1593 }
1298 - return $this->WPDA_Rest_Response( sprintf( __( 'Successfully renamed %s database occurrences', 'wp-data-access' ), $renamed ) );
1594 + $context = array();
1595 + if ( $debug_mode ) {
1596 + $context['debug'] = $debug;
1597 + }
1598 + if ( 0 < count( $errors ) ) {
1599 + $context['errors'] = $errors;
1600 + return new \WP_Error('error', 'Failed renaming database', array(
1601 + 'status' => 401,
1602 + 'context' => $context,
1603 + ));
1604 + }
1605 + return $this->WPDA_Rest_Response( sprintf(
1606 + /* translators: %s = number of database substitutions */
1607 + __( 'Successfully renamed %s database occurrences', 'wp-data-access' ),
1608 + $renamed
1609 + ), null, $context );
1299 1610 }
1300 1611
1301 1612 public function app_chart_data( $request ) {
1302 1613 $app_id = $request->get_param( 'app_id' );
1614 + $search_custom = $request->get_param( 'search_custom' );
1615 + $shortcode_params = $request->get_param( 'shortcode_params' );
1303 1616 if ( !$this->main_app_access( $app_id, $msg ) ) {
1304 1617 if ( 'rest_cookie_invalid_nonce' === $msg ) {
1305 1618 return $this->invalid_nonce();
1306 1619 }
@@ -1312,8 +1625,15 @@
1312 1625 $app_container = WPDA_App_Container_Model::select( $app_id, 0 );
1313 1626 if ( 1 === count( $app_container ) && null !== $app_container[0]['cnt_query'] && '' !== trim( (string) $app_container[0]['cnt_query'] ) ) {
1314 1627 $dbs = $app_container[0]['cnt_dbs'];
1315 1628 $query = $app_container[0]['cnt_query'];
1629 + // Process shortcode and url parameters
1630 + $query = $this->process_params(
1631 + $query,
1632 + $search_custom,
1633 + null,
1634 + $shortcode_params
1635 + );
1316 1636 $wpdadb = WPDADB::get_db_connection( $dbs );
1317 1637 if ( null === $wpdadb ) {
1318 1638 // Error connecting.
1319 1639 return new \WP_Error('error', "Error connecting to database {$dbs}", array(
@@ -1321,14 +1641,23 @@
1321 1641 ));
1322 1642 }
1323 1643 $suppress = $wpdadb->suppress_errors( true );
1324 1644 $chart_data = $wpdadb->get_results( $query, 'ARRAY_A' );
1645 + // Add an * before each label to support numeric labels
1646 + $chart_data_converted = array();
1647 + foreach ( $chart_data as $data ) {
1648 + $row = array();
1649 + foreach ( $data as $key => $value ) {
1650 + $row['*' . $key] = $value;
1651 + }
1652 + $chart_data_converted[] = $row;
1653 + }
1325 1654 $wpdadb->get_results( "create temporary table `wpda_chart_data_types` as {$query}", 'ARRAY_A' );
1326 1655 $explain = $wpdadb->get_results( "desc `wpda_chart_data_types`", 'ARRAY_A' );
1327 1656 $wpdadb->get_results( "drop temporary table `wpda_chart_data_types`", 'ARRAY_A' );
1328 1657 $wpdadb->suppress_errors( $suppress );
1329 1658 return array(
1330 - 'data' => $chart_data,
1659 + 'data' => $chart_data_converted,
1331 1660 'explain' => $explain,
1332 1661 );
1333 1662 } else {
1334 1663 return new \WP_Error('error', $msg, array(
@@ -1374,8 +1703,9 @@
1374 1703 $cnt_id = $request->get_param( 'cnt_id' );
1375 1704 $target = $request->get_param( 'target' );
1376 1705 $settings = $request->get_param( 'settings' );
1377 1706 $chart = $request->get_param( 'chart' );
1707 + $map = $request->get_param( 'map' );
1378 1708 $theme = $request->get_param( 'theme' );
1379 1709 return $this->do_app_settings(
1380 1710 $app_id,
1381 1711 $cnt_id,
@@ -1381,8 +1711,9 @@
1381 1711 $cnt_id,
1382 1712 $target,
1383 1713 $settings,
1384 1714 $chart,
1715 + $map,
1385 1716 $theme
1386 1717 );
1387 1718 }
1388 1719
@@ -1546,11 +1877,12 @@
1546 1877 $cnt_id,
1547 1878 $target,
1548 1879 $settings,
1549 1880 $chart,
1881 + $map,
1550 1882 $theme
1551 1883 ) {
1552 - if ( 1 > $app_id || 1 > $cnt_id || 'table' !== $target && 'form' !== $target && 'rform' !== $target && 'theme' !== $target && 'chart' !== $target && 'map' !== $target ) {
1884 + if ( 1 > $app_id || 1 > $cnt_id || 'table' !== $target && 'form' !== $target && 'rform' !== $target && 'theme' !== $target && 'chart' !== $target && 'map' !== $target && 'dashboard' !== $target ) {
1553 1885 return $this->bad_request();
1554 1886 }
1555 1887 if ( null === $settings || '' === $settings ) {
1556 1888 // Perform reset
@@ -1594,8 +1926,16 @@
1594 1926 'status' => 403,
1595 1927 ));
1596 1928 }
1597 1929 break;
1930 + case 'dashboard':
1931 + $error_msg = WPDA_App_Container_Model::update_dashboard_settings( $app_id, null );
1932 + if ( '' !== $error_msg ) {
1933 + return new \WP_Error('error', $error_msg, array(
1934 + 'status' => 403,
1935 + ));
1936 + }
1937 + break;
1598 1938 default:
1599 1939 return $this->bad_request();
1600 1940 }
1601 1941 return $this->WPDA_Rest_Response( __( 'Reset was successful', 'wp-data-access' ) );
@@ -1614,8 +1954,15 @@
1614 1954 return new \WP_Error('error', $error_msg, array(
1615 1955 'status' => 403,
1616 1956 ));
1617 1957 }
1958 + // Update map settings
1959 + $error_msg = WPDA_App_Container_Model::update_map_settings( $cnt_id, $map );
1960 + if ( '' !== $error_msg ) {
1961 + return new \WP_Error('error', $error_msg, array(
1962 + 'status' => 403,
1963 + ));
1964 + }
1618 1965 } else {
1619 1966 if ( 'rform' === $target ) {
1620 1967 // Update rform settings
1621 1968 $error_msg = WPDA_App_Container_Model::update_rform_settings( $cnt_id, $settings );
@@ -1650,8 +1997,17 @@
1650 1997 return new \WP_Error('error', $error_msg, array(
1651 1998 'status' => 403,
1652 1999 ));
1653 2000 }
2001 + } else {
2002 + if ( 'dashboard' === $target ) {
2003 + $error_msg = WPDA_App_Container_Model::update_dashboard_settings( $cnt_id, $settings );
2004 + if ( '' !== $error_msg ) {
2005 + return new \WP_Error('error', $error_msg, array(
2006 + 'status' => 403,
2007 + ));
2008 + }
2009 + }
1654 2010 }
1655 2011 }
1656 2012 }
1657 2013 }
@@ -1773,9 +2129,9 @@
1773 2129 private function get_relation_columns( $container ) {
1774 2130 return null;
1775 2131 }
1776 2132
1777 - private function reorder_details( $cnt_id_from, $cnt_id_to ) {
2133 + private function reorder_details( $app_id, $cnt_id_from, $cnt_id_to ) {
1778 2134 return $this->bad_request();
1779 2135 }
1780 2136
1781 2137 private function get_app_apps_meta( $app, $apps ) {
@@ -1782,8 +2138,9 @@
1782 2138 $app_id_details = array_map( function ( $e ) {
1783 2139 if ( isset( $e['app_id_detail'] ) ) {
1784 2140 return $e['app_id_detail'];
1785 2141 }
2142 + return null;
1786 2143 }, $apps );
1787 2144 $app_titles = array();
1788 2145 foreach ( $app_id_details as $app_id_detail ) {
1789 2146 $app_detail = WPDA_App_Model::get_by_id( $app_id_detail );
@@ -1818,18 +2175,46 @@
1818 2175 }
1819 2176 $settings->env = $this->get_env();
1820 2177 global $wpdb;
1821 2178 $settings->wp = [
1822 - 'roles' => $this->get_wp_roles(),
1823 - 'users' => $this->get_wp_users(),
1824 - 'home' => admin_url( 'admin.php' ),
1825 - 'tables' => array_values( $wpdb->tables() ),
1826 - 'date_format' => get_option( 'date_format' ),
1827 - 'time_format' => get_option( 'time_format' ),
2179 + 'roles' => $this->get_wp_roles(),
2180 + 'users' => $this->get_wp_users(),
2181 + 'home' => admin_url( 'admin.php' ),
2182 + 'siteurl' => site_url(),
2183 + 'tables' => array_values( $wpdb->tables() ),
2184 + 'date_format' => get_option( 'date_format' ),
2185 + 'time_format' => get_option( 'time_format' ),
2186 + 'scroll_offset' => WPDA::get_option( WPDA::OPTION_APPS_SCROLL_OFFSET ),
2187 + 'upload' => @ini_get( 'upload_max_filesize' ),
2188 + 'uploadBytes' => $this->uploadToBytes( @ini_get( 'upload_max_filesize' ) ),
2189 + 'locale' => get_locale(),
1828 2190 ];
1829 2191 return $settings;
1830 2192 }
1831 2193
2194 + /**
2195 + * Convert a PHP shorthand notation (e.g., "2M", "512K", "1G") to bytes.
2196 + *
2197 + * @param string $val The shorthand size string.
2198 + *
2199 + * @return int The size in bytes.
2200 + */
2201 + private function uploadToBytes( $val ) : int {
2202 + $val = trim( $val );
2203 + $lastChar = strtolower( $val[strlen( $val ) - 1] );
2204 + $num = (float) $val;
2205 + switch ( $lastChar ) {
2206 + case 'g':
2207 + $num *= 1024;
2208 + case 'm':
2209 + $num *= 1024;
2210 + case 'k':
2211 + $num *= 1024;
2212 + break;
2213 + }
2214 + return (int) round( $num );
2215 + }
2216 +
1832 2217 private function get_app_container_meta( $app_id, $container, $rel_tab = false ) {
1833 2218 $app = WPDA_App_Model::get_by_id( $app_id );
1834 2219 if ( false === $app ) {
1835 2220 return $this->bad_request();
@@ -1860,10 +2245,18 @@
1860 2245 'update' => array(),
1861 2246 'delete' => array(),
1862 2247 );
1863 2248 $cls = WPDA_List_Columns_Cache::get_list_columns( $dbs, $tbl );
2249 + $columns = $cls->get_table_columns();
2250 + $columns_sorted = array();
2251 + foreach ( $columns as $column ) {
2252 + if ( isset( $column['column_name'] ) ) {
2253 + $columns_sorted[$column['column_name']] = $column;
2254 + }
2255 + }
1864 2256 $media = $this->get_media( $dbs, $tbl, $cls->get_table_columns() );
1865 - $response['columns'] = $cls->get_table_columns();
2257 + $response['columns'] = $columns;
2258 + $response['columns_sorted'] = $columns_sorted;
1866 2259 $response['table_labels'] = $cls->get_table_header_labels();
1867 2260 $response['form_labels'] = $cls->get_table_column_headers();
1868 2261 $response['primary_key'] = $cls->get_table_primary_key();
1869 2262 $response['access'] = $access;
@@ -1898,8 +2291,17 @@
1898 2291 return $this->get_app_container_meta( $app_id, $container );
1899 2292 }
1900 2293 }
1901 2294
2295 + private function escapeUnicodeForExport( $str ) {
2296 + if ( empty( $str ) ) {
2297 + return $str;
2298 + }
2299 + return preg_replace_callback( '/\\\\(u[0-9a-fA-F]{4})/', function ( $matches ) {
2300 + return '\\\\' . $matches[1];
2301 + }, $str );
2302 + }
2303 +
1902 2304 private function do_app_export_app( $app_id, $main_app_id ) {
1903 2305 global $wpdb;
1904 2306 $quotes = function ( $value ) {
1905 2307 return str_replace( array(
@@ -1904,24 +2306,31 @@
1904 2306 $quotes = function ( $value ) {
1905 2307 return str_replace( array(
1906 2308 "'",
1907 2309 '\\"',
2310 + "\\\\t",
1908 2311 "\\t",
2312 + "\\\\n",
1909 2313 "\\n",
1910 2314 "\\r\\n",
1911 - "\\r"
2315 + "\\r",
2316 + "\\d"
1912 2317 ), array(
1913 2318 "''",
1914 2319 '\\\\"',
2320 + "\\\\\\t",
1915 2321 "\\\\t",
2322 + "\\\\\\n",
1916 2323 "\\\\n",
1917 2324 "\\\\r\\\\n",
1918 - "\\\\r"
2325 + "\\\\r",
2326 + "\\\\\\\\\\d"
1919 2327 ), $value );
1920 2328 };
1921 2329 $app = WPDA_App_Model::get_by_id( $app_id );
1922 2330 $app_settings = ( null === $app[0]['app_settings'] ? 'null' : "{$quotes( $app[0]['app_settings'] )}" );
1923 2331 $app_theme = ( null === $app[0]['app_theme'] ? 'null' : "{$quotes( $app[0]['app_theme'] )}" );
2332 + // phpcs:ignore PluginCheck.CodeAnalysis.Heredoc.NotAllowed
1924 2333 $app_sql = <<<SQL
1925 2334 # Import app
1926 2335 insert into `{wp_prefix}wpda_app`
1927 2336 \t(`app_name`
@@ -1951,15 +2360,23 @@
1951 2360 SQL;
1952 2361 $containers = WPDA_App_Container_Model::select_all( $app_id );
1953 2362 $containers_sql = '';
1954 2363 foreach ( $containers as $container ) {
1955 - $cnt_table = ( null === $container['cnt_table'] ? 'null' : "{$quotes( $container['cnt_table'] )}" );
1956 - $cnt_form = ( null === $container['cnt_form'] ? 'null' : "{$quotes( $container['cnt_form'] )}" );
1957 - $cnt_relation = ( null === $container['cnt_relation'] ? 'null' : "{$quotes( $container['cnt_relation'] )}" );
2364 + $cnt_table = ( null === $container['cnt_table'] ? 'null' : "'{$quotes( $container['cnt_table'] )}'" );
2365 + $cnt_form = ( null === $container['cnt_form'] ? 'null' : "'{$quotes( $container['cnt_form'] )}'" );
2366 + $cnt_relation = ( null === $container['cnt_relation'] ? 'null' : "'{$quotes( $container['cnt_relation'] )}'" );
2367 + $cnt_rform = ( null === $container['cnt_rform'] ? 'null' : "'{$quotes( $container['cnt_rform'] )}'" );
2368 + $cnt_chart = ( null === $container['cnt_chart'] ? 'null' : "'{$quotes( $container['cnt_chart'] )}'" );
2369 + $cnt_map = ( null === $container['cnt_map'] ? 'null' : "'{$quotes( $container['cnt_map'] )}'" );
2370 + $cnt_query = ( null === $container['cnt_query'] ? 'null' : "'{$quotes( $container['cnt_query'] )}'" );
1958 2371 // Replace default WordPress database with conversion string
1959 2372 $cnt_dbs = ( $wpdb->dbname === $container['cnt_dbs'] ? '{wp_schema}' : "{$quotes( $container['cnt_dbs'] )}" );
1960 2373 $cnt_table = str_replace( "\"dbs\":\"{$wpdb->dbname}\"", "\"dbs\":\"{wp_schema}\"", $cnt_table );
1961 2374 $cnt_form = str_replace( "\"dbs\":\"{$wpdb->dbname}\"", "\"dbs\":\"{wp_schema}\"", $cnt_form );
2375 + // Replace Unicode characters
2376 + $cnt_table = $this->escapeUnicodeForExport( $cnt_table );
2377 + $cnt_form = $this->escapeUnicodeForExport( $cnt_form );
2378 + // phpcs:ignore PluginCheck.CodeAnalysis.Heredoc.NotAllowed
1962 2379 $containers_sql .= <<<SQL
1963 2380 # Import app container
1964 2381 insert into `{wp_prefix}wpda_app_container`
1965 2382 \t(`cnt_dbs`
@@ -1970,8 +2387,12 @@
1970 2387 \t,`cnt_seq_nr`
1971 2388 \t,`cnt_table`
1972 2389 \t,`cnt_form`
1973 2390 \t,`cnt_relation`
2391 + ,`cnt_rform`
2392 + ,`cnt_chart`
2393 + ,`cnt_map`
2394 + ,`cnt_query`
1974 2395 \t)
1975 2396 values
1976 2397 \t('{$cnt_dbs}'
1977 2398 \t,'{$quotes( $container['cnt_tbl'] )}'
@@ -1978,11 +2399,15 @@
1978 2399 \t,'{$quotes( $container['cnt_cls'] )}'
1979 2400 \t,'{$quotes( $container['cnt_title'] )}'
1980 2401 \t,@APP_ID
1981 2402 \t,{$container['cnt_seq_nr']}
1982 -\t,'{$cnt_table}'
1983 -\t,'{$cnt_form}'
1984 -\t,'{$cnt_relation}'
2403 +\t,{$cnt_table}
2404 +\t,{$cnt_form}
2405 +\t,{$cnt_relation}
2406 +\t,{$cnt_rform}
2407 +\t,{$cnt_chart}
2408 +\t,{$cnt_map}
2409 +\t,{$cnt_query}
1985 2410 \t);
1986 2411
1987 2412 insert into `wpda_transfer_containers_{$main_app_id}`
1988 2413 values
@@ -1993,8 +2418,9 @@
1993 2418
1994 2419 SQL;
1995 2420 }
1996 2421 // Post update: update master container ids
2422 + // phpcs:ignore PluginCheck.CodeAnalysis.Heredoc.NotAllowed
1997 2423 $containers_sql .= <<<SQL
1998 2424 # Update app master container IDs
1999 2425 update `{wp_prefix}wpda_app_container` as a
2000 2426 set a.`cnt_relation` =
@@ -2017,8 +2443,9 @@
2017 2443 foreach ( $apps as $app ) {
2018 2444 $apps_sql .= $this->do_app_export_app( $app['app_id_detail'], $main_app_id );
2019 2445 }
2020 2446 foreach ( $apps as $app ) {
2447 + // phpcs:ignore PluginCheck.CodeAnalysis.Heredoc.NotAllowed
2021 2448 $apps_sql .= <<<SQL
2022 2449 # Import app relationships
2023 2450 insert into `{wp_prefix}wpda_app_apps`
2024 2451 \t(`app_id`
@@ -2039,8 +2466,9 @@
2039 2466
2040 2467 private function do_app_export( $app_id ) {
2041 2468 global $wpdb;
2042 2469 $sql = '';
2470 + // phpcs:ignore PluginCheck.CodeAnalysis.Heredoc.NotAllowed
2043 2471 $begin_sql = <<<SQL
2044 2472 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
2045 2473 /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
2046 2474 /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
@@ -2061,8 +2489,9 @@
2061 2489
2062 2490
2063 2491 SQL;
2064 2492 $sql .= $this->do_app_export_app( $app_id, $app_id );
2493 + // phpcs:ignore PluginCheck.CodeAnalysis.Heredoc.NotAllowed
2065 2494 $end_sql = <<<SQL
2066 2495 # Drop temporary table
2067 2496 DROP TABLE `wpda_transfer_containers_{$app_id}`;
2068 2497 DROP TABLE `wpda_transfer_apps_{$app_id}`;
@@ -2155,9 +2584,9 @@
2155 2584 }
2156 2585 return $this->WPDA_Rest_Response( __( 'Changes successfully saved', 'wp-data-access' ) );
2157 2586 }
2158 2587
2159 - private function main_app_access( $app_id, &$msg = '' ) {
2588 + private function main_app_access( $app_id, &$msg = '', &$app = null ) {
2160 2589 // Get app info
2161 2590 $app = WPDA_App_Model::get_by_id( $app_id );
2162 2591 if ( false === $app ) {
2163 2592 // App not found
@@ -2200,9 +2629,9 @@
2200 2629 if ( !$this->main_app_access( $app_id, $msg ) ) {
2201 2630 return false;
2202 2631 }
2203 2632 // Get container
2204 - $container = WPDA_App_Container_Model::get_container( $cnt_id );
2633 + $container = WPDA_App_Container_Model::get_container( $app_id, $cnt_id );
2205 2634 if ( !is_array( $container ) || 0 === count( $container ) ) {
2206 2635 // Container not found
2207 2636 $msg = __( 'Bad request', 'wp-data-access' );
2208 2637 return false;
@@ -2209,12 +2638,14 @@
2209 2638 }
2210 2639 if ( 'select' !== $action ) {
2211 2640 $cnt_table = json_decode( (string) $container[0]['cnt_table'], true );
2212 2641 if ( !isset( $cnt_table['table']['transactions'][$action] ) || false === $cnt_table['table']['transactions'][$action] ) {
2213 - $cnt_relation = json_decode( (string) $container[0]['cnt_relation'], true );
2214 - if ( !(isset( $cnt_relation['cnt_id_master'] ) && $this->check_master_container_access( $cnt_relation['cnt_id_master'], $action )) ) {
2215 - $msg = __( 'Unauthorized', 'wp-data-access' );
2216 - return false;
2642 + if ( !isset( $cnt_table['table']['bulkActions'][$action] ) || false === $cnt_table['table']['bulkActions'][$action] ) {
2643 + $cnt_relation = json_decode( (string) $container[0]['cnt_relation'], true );
2644 + if ( !(isset( $cnt_relation['cnt_id_master'] ) && $this->check_master_container_access( $app_id, $cnt_relation['cnt_id_master'], $action )) ) {
2645 + $msg = __( 'Unauthorized', 'wp-data-access' );
2646 + return false;
2647 + }
2217 2648 }
2218 2649 }
2219 2650 }
2220 2651 // Return database name, table name and columns
@@ -2227,10 +2658,10 @@
2227 2658 );
2228 2659 return true;
2229 2660 }
2230 2661
2231 - private function check_master_container_access( $cnt_id, $action ) {
2232 - $container = WPDA_App_Container_Model::get_container( $cnt_id );
2662 + private function check_master_container_access( $app_id, $cnt_id, $action ) {
2663 + $container = WPDA_App_Container_Model::get_container( $app_id, $cnt_id );
2233 2664 if ( !is_array( $container ) || 0 === count( $container ) ) {
2234 2665 // Container not found
2235 2666 return false;
2236 2667 }
@@ -2236,9 +2667,9 @@
2236 2667 }
2237 2668 $cnt_table = json_decode( (string) $container[0]['cnt_table'], true );
2238 2669 if ( !isset( $cnt_table['table']['transactions'][$action] ) || false === $cnt_table['table']['transactions'][$action] ) {
2239 2670 $cnt_relation = json_decode( (string) $container[0]['cnt_relation'], true );
2240 - if ( !(isset( $cnt_relation['cnt_id_master'] ) && $this->check_master_container_access( $cnt_relation['cnt_id_master'], $action )) ) {
2671 + if ( !(isset( $cnt_relation['cnt_id_master'] ) && $this->check_master_container_access( $app_id, $cnt_relation['cnt_id_master'], $action )) ) {
2241 2672 return false;
2242 2673 }
2243 2674 }
2244 2675 return true;
@@ -2247,18 +2678,21 @@
2247 2678 private function process_params(
2248 2679 $where,
2249 2680 $search_custom,
2250 2681 $search_params,
2251 - $shortcode_params
2682 + $shortcode_params,
2683 + $dynamic_params = array()
2252 2684 ) {
2253 2685 // Process $search_custom > URL parameters
2254 2686 global $wpdb;
2687 + $replacements = array();
2688 + $nonce = bin2hex( random_bytes( 8 ) );
2255 2689 foreach ( self::METHODS as $method ) {
2256 2690 $offset = 0;
2257 2691 $search = $method . '[';
2692 + // Get filter
2258 2693 while ( ($pos_start = stripos( $where, $search, $offset )) !== false ) {
2259 2694 if ( ($pos_end = stripos( $where, ']', $pos_start )) !== false ) {
2260 - // Get filter
2261 2695 $filter = substr( $where, $pos_start, $pos_end - $pos_start + 1 );
2262 2696 // Get name
2263 2697 $arg_name = substr( $where, $pos_start + strlen( $search ), $pos_end - $pos_start - strlen( $search ) );
2264 2698 // Remove quotes from name
@@ -2264,44 +2698,36 @@
2264 2698 // Remove quotes from name
2265 2699 if ( substr( $arg_name, 0, 1 ) === "'" && substr( $arg_name, -1 ) === "'" ) {
2266 2700 $arg_name = substr( $arg_name, 1, -1 );
2267 2701 }
2268 - // Remove double quotes from name
2702 + // Remove quotes from name
2269 2703 if ( substr( $arg_name, 0, 1 ) === '"' && substr( $arg_name, -1 ) === '"' ) {
2270 2704 $arg_name = substr( $arg_name, 1, -1 );
2271 2705 }
2706 + $arg_value = null;
2272 2707 // Handle GET args
2273 - if ( $method === self::METHODS[0] || $method === self::METHODS[2] ) {
2708 + if ( $method === self::METHODS[0] && isset( $search_custom['get'][$arg_name] ) ) {
2709 + $arg_value = sanitize_text_field( wp_unslash( $search_custom['get'][$arg_name] ) );
2710 + } elseif ( $method === self::METHODS[1] && isset( $search_custom['post'][$arg_name] ) ) {
2711 + $arg_value = sanitize_text_field( wp_unslash( $search_custom['post'][$arg_name] ) );
2712 + } elseif ( $method === self::METHODS[2] ) {
2274 2713 if ( isset( $search_custom['get'][$arg_name] ) ) {
2275 2714 $arg_value = sanitize_text_field( wp_unslash( $search_custom['get'][$arg_name] ) );
2276 - $where = $wpdb->prepare( substr_replace(
2277 - $where,
2278 - '%s',
2279 - $pos_start,
2280 - $pos_end - $pos_start + 1
2281 - ), $arg_value );
2282 - } else {
2283 - if ( $method === self::METHODS[0] ) {
2284 - $where = str_replace( $filter, 'null', $where );
2285 - }
2715 + } elseif ( isset( $search_custom['post'][$arg_name] ) ) {
2716 + $arg_value = sanitize_text_field( wp_unslash( $search_custom['post'][$arg_name] ) );
2286 2717 }
2287 2718 }
2288 2719 // Handle POST args
2289 - if ( $method === self::METHODS[1] || $method === self::METHODS[2] ) {
2290 - if ( isset( $search_custom['post'][$arg_name] ) ) {
2291 - $arg_value = sanitize_text_field( wp_unslash( $search_custom['post'][$arg_name] ) );
2292 - $where = $wpdb->prepare( substr_replace(
2293 - $where,
2294 - '%s',
2295 - $pos_start,
2296 - $pos_end - $pos_start + 1
2297 - ), $arg_value );
2298 - } else {
2299 - $where = str_replace( $filter, 'null', $where );
2300 - }
2720 + $placeholder = '###URL_PLACEHOLDER_' . $nonce . '_' . md5( $filter ) . '###';
2721 + $where = str_replace( $filter, $placeholder, $where );
2722 + // Handle REQUEST args
2723 + if ( $arg_value !== null ) {
2724 + $replacements[$placeholder] = $wpdb->prepare( '%s', $arg_value );
2725 + } else {
2726 + $replacements[$placeholder] = 'null';
2301 2727 }
2302 2728 }
2303 - $offset = $pos_start + 6;
2729 + $offset = $pos_start + 1;
2304 2730 if ( $offset > strlen( $where ) ) {
2305 2731 $offset = strlen( $where ) - 1;
2306 2732 }
2307 2733 }
@@ -2310,21 +2736,16 @@
2310 2736 if ( is_array( $search_params ) && 1 === count( $search_params ) ) {
2311 2737 $filter_field_name = $this->sanitize_db_identifier( array_keys( $search_params )[0] );
2312 2738 $filter_field_value = sanitize_text_field( $search_params[$filter_field_name] );
2313 2739 $filter_field_name_array = array_map( 'trim', explode( ',', $filter_field_name ) );
2314 - //phpcs:ignore - 8.1 proof
2315 2740 $filter_field_value_array = array_map( 'trim', explode( ',', $filter_field_value ) );
2316 - //phpcs:ignore - 8.1 proof
2317 2741 if ( count( $filter_field_name_array ) === count( $filter_field_value_array ) ) {
2318 - //phpcs:ignore - 8.1 proof
2319 2742 // Add filter to where clause.
2320 2743 for ($i = 0; $i < count( $filter_field_name_array ); $i++) {
2321 - // phpcs:ignore Generic.CodeAnalysis.ForLoopWithTestFunctionCall, Squiz.PHP.DisallowSizeFunctionsInLoops
2322 - $where .= (( '' === $where ? '' : ' and ' )) . $wpdb->prepare(
2323 - ' `%1s` like %s ',
2324 - // phpcs:ignore WordPress.DB.PreparedSQLPlaceholders
2325 - array($filter_field_name_array[$i], $filter_field_value_array[$i])
2326 - );
2744 + $where .= ( '' === $where ? '' : ' and ' );
2745 + $placeholder = '###SHORTCODE_PARAM_' . $nonce . '_' . md5( $filter_field_name_array[$i] ) . '###';
2746 + $where .= ' `' . $filter_field_name_array[$i] . '` like ' . $placeholder;
2747 + $replacements[$placeholder] = $wpdb->prepare( '%s', $filter_field_value_array[$i] );
2327 2748 }
2328 2749 }
2329 2750 }
2330 2751 // Substitute all shortcode parameters
@@ -2331,13 +2752,11 @@
2331 2752 if ( is_array( $shortcode_params ) ) {
2332 2753 foreach ( $shortcode_params as $column_name => $column_value ) {
2333 2754 $occurences = substr_count( strtolower( $where ), strtolower( "shortcodeParam['{$column_name}']" ) );
2334 2755 if ( 0 < $occurences ) {
2335 - $column_values = array();
2336 - for ($i = 0; $i < $occurences; $i++) {
2337 - $column_values[] = sanitize_text_field( $column_value );
2338 - }
2339 - $where = $wpdb->prepare( str_ireplace( "shortcodeParam['{$column_name}']", '%s', $where ), $column_values );
2756 + $placeholder = '###SHORTCODE_PARAM_' . $nonce . '_' . md5( $column_name ) . '###';
2757 + $where = str_ireplace( "shortcodeParam['{$column_name}']", $placeholder, $where );
2758 + $replacements[$placeholder] = $wpdb->prepare( '%s', sanitize_text_field( $column_value ) );
2340 2759 }
2341 2760 }
2342 2761 }
2343 2762 // Substitute all unused shortcode parameter calls with null
@@ -2352,8 +2771,18 @@
2352 2771 if ( $offset > strlen( $where ) ) {
2353 2772 $offset = strlen( $where ) - 1;
2354 2773 }
2355 2774 }
2356 - return $where;
2775 + // Substitute all dynamic parameters
2776 + if ( is_array( $dynamic_params ) && 0 < count( $dynamic_params ) ) {
2777 + foreach ( $dynamic_params as $column_name => $column_value ) {
2778 + if ( stripos( $where, "{:{$column_name}}" ) !== false ) {
2779 + $placeholder = '###DYNAMIC_PARAM_' . $nonce . '_' . md5( $column_name ) . '###';
2780 + $where = str_ireplace( "{:{$column_name}}", $placeholder, $where );
2781 + $replacements[$placeholder] = $wpdb->prepare( '%s', $column_value );
2782 + }
2783 + }
2784 + }
2785 + return strtr( $where, $replacements );
2357 2786 }
2358 2787
2359 2788 }