PluginProbe
Visualizer – Tables & Charts Manager with Built-in AI Generator / 3.4.4
Visualizer – Tables & Charts Manager with Built-in AI Generator v3.4.4
4.0.8 4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.10.0 3.10.1 3.10.10 3.10.11 3.10.12 3.10.13 3.10.14 3.10.15 3.10.2 3.10.3 All 149 releases
← All changes | classes/Visualizer/Module.php +211 -16 3.1.33.4.4 View file →
@@ -65,12 +65,28 @@
65 65 $this->_plugin = $plugin;
66 66
67 67 $this->_addFilter( Visualizer_Plugin::FILTER_UNDO_REVISIONS, 'undoRevisions', 10, 2 );
68 68 $this->_addFilter( Visualizer_Plugin::FILTER_HANDLE_REVISIONS, 'handleExistingRevisions', 10, 2 );
69 + $this->_addFilter( Visualizer_Plugin::FILTER_GET_CHART_DATA_AS, 'getDataAs', 10, 3 );
70 + register_shutdown_function( array($this, 'onShutdown') );
69 71
70 72 }
71 73
72 74 /**
75 + * Register a shutdown hook to catch fatal errors.
76 + *
77 + * @since ?
78 + *
79 + * @access public
80 + */
81 + public function onShutdown() {
82 + $error = error_get_last();
83 + if ( $error['type'] === E_ERROR && false !== strpos( $error['file'], 'Visualizer/' ) ) {
84 + do_action( 'themeisle_log_event', Visualizer_Plugin::NAME, sprintf( 'Critical error %s', print_r( $error, true ) ), 'error', __FILE__, __LINE__ );
85 + }
86 + }
87 +
88 + /**
73 89 * Registers an action hook.
74 90 *
75 91 * @since 1.0.0
76 92 * @uses add_action() To register action hook.
@@ -147,8 +163,17 @@
147 163 return $this;
148 164 }
149 165
150 166 /**
167 + * A wrapper around the actual function _getDataAs. This function is invoked as a filter.
168 + *
169 + * @since 3.2.0
170 + */
171 + public function getDataAs( $final, $chart_id, $type ) {
172 + return $this->_getDataAs( $chart_id, $type );
173 + }
174 +
175 + /**
151 176 * Extracts the data for a chart and prepares it for the given type.
152 177 *
153 178 * @access public
154 179 * @param int $chart_id The chart id.
@@ -158,15 +183,15 @@
158 183 $final = null;
159 184 $success = false;
160 185 if ( $chart_id ) {
161 186 $chart = get_post( $chart_id );
162 - $success = $chart && $chart->post_type == Visualizer_Plugin::CPT_VISUALIZER;
187 + $success = $chart && $chart->post_type === Visualizer_Plugin::CPT_VISUALIZER;
163 188 }
164 189 if ( $success ) {
165 190 $settings = get_post_meta( $chart_id, Visualizer_Plugin::CF_SETTINGS, true );
166 191 $rows = array();
167 192 $series = get_post_meta( $chart_id, Visualizer_Plugin::CF_SERIES, true );
168 - $data = unserialize( $chart->post_content );
193 + $data = self::get_chart_data( $chart, $type, false );
169 194 if ( ! empty( $series ) ) {
170 195 $row = array();
171 196 foreach ( $series as $array ) {
172 197 $row[] = $array['label'];
@@ -195,14 +220,29 @@
195 220 }
196 221 }
197 222 }
198 223
199 - $filename = isset( $settings['title'] ) && ! empty( $settings['title'] ) ? $settings['title'] : 'visualizer#' . $chart_id;
224 + $title = 'visualizer#' . $chart_id;
225 + if ( ! empty( $settings['title'] ) ) {
226 + $title = $settings['title'];
227 + }
228 + // for ChartJS, title is an array.
229 + if ( is_array( $title ) && isset( $title['text'] ) ) {
230 + $title = $title['text'];
231 + }
232 + if ( empty( $title ) ) {
233 + $title = 'visualizer#' . $chart_id;
234 + }
200 235
236 + $filename = $title;
237 +
201 238 switch ( $type ) {
202 239 case 'csv':
203 - $final = $this->_getCSV( $rows, $filename );
240 + $final = $this->_getCSV( $rows, $filename, false );
204 241 break;
242 + case 'csv-display':
243 + $final = $this->_getCSV( $rows, $filename, true );
244 + break;
205 245 case 'xls':
206 246 $final = $this->_getExcel( $rows, $filename );
207 247 break;
208 248 case 'print':
@@ -218,24 +258,39 @@
218 258 *
219 259 * @access private
220 260 * @param array $rows The array of data.
221 261 * @param string $filename The name of the file to use.
262 + * @param bool $enclose Enclose strings that have commas in them in double quotes.
222 263 */
223 - private function _getCSV( $rows, $filename ) {
264 + private function _getCSV( $rows, $filename, $enclose ) {
224 265 $filename .= '.csv';
225 266
267 + $bom = chr( 0xEF ) . chr( 0xBB ) . chr( 0xBF );
226 268 $fp = tmpfile();
227 269 // support for MS Excel
228 - fprintf( $fp, $bom = ( chr( 0xEF ) . chr( 0xBB ) . chr( 0xBF ) ) );
270 + fprintf( $fp, $bom );
229 271 foreach ( $rows as $row ) {
230 272 fputcsv( $fp, $row );
231 273 }
232 274 rewind( $fp );
233 275 $csv = '';
276 + // phpcs:ignore WordPress.CodeAnalysis.AssignmentInCondition.FoundInWhileCondition
234 277 while ( ( $array = fgetcsv( $fp ) ) !== false ) {
235 278 if ( strlen( $csv ) > 0 ) {
236 279 $csv .= PHP_EOL;
237 280 }
281 + // if enclosure is required, check every item of this line
282 + // if a comma exists in the item, add enclosure.
283 + if ( $enclose ) {
284 + $temp_array = array();
285 + foreach ( $array as $item ) {
286 + if ( strpos( $item, ',' ) !== false ) {
287 + $item = VISUALIZER_CSV_ENCLOSURE . $item . VISUALIZER_CSV_ENCLOSURE;
288 + }
289 + $temp_array[] = $item;
290 + }
291 + $array = $temp_array;
292 + }
238 293 $csv .= implode( ',', $array );
239 294 }
240 295 fclose( $fp );
241 296
@@ -241,8 +296,9 @@
241 296
242 297 return array(
243 298 'csv' => $csv,
244 299 'name' => $filename,
300 + 'string' => str_replace( $bom, '', $csv ),
245 301 );
246 302 }
247 303
248 304 /**
@@ -279,8 +335,9 @@
279 335 }
280 336 return array(
281 337 'csv' => 'data:application/vnd.ms-excel;base64,' . base64_encode( $xlsData ),
282 338 'name' => $filename,
339 + 'raw' => base64_encode( $xlsData ),
283 340 );
284 341 }
285 342
286 343 /**
@@ -310,8 +367,14 @@
310 367
311 368 $table = '<table class="visualizer-print">';
312 369 $index = 0;
313 370 foreach ( $rows as $row ) {
371 + // skip the data type row.
372 + if ( 1 === $index ) {
373 + $index++;
374 + continue;
375 + }
376 +
314 377 $table .= '<tr>';
315 378 foreach ( $row as $col ) {
316 379 if ( $index === 0 ) {
317 380 $table .= '<th>' . $col . '</th>';
@@ -332,8 +395,22 @@
332 395 );
333 396 }
334 397
335 398 /**
399 + * Disable revisions temporarily for visualizer post type.
400 + */
401 + protected final function disableRevisionsTemporarily() {
402 + add_filter(
403 + 'wp_revisions_to_keep', function( $num, $post ) {
404 + if ( $post->post_type === Visualizer_Plugin::CPT_VISUALIZER ) {
405 + return 0;
406 + }
407 + return $num;
408 + }, 10, 2
409 + );
410 + }
411 +
412 + /**
336 413 * Undo revisions for the chart, and if necessary, restore the earliest version.
337 414 *
338 415 * @return bool If any revisions were found.
339 416 */
@@ -338,9 +415,11 @@
338 415 * @return bool If any revisions were found.
339 416 */
340 417 public final function undoRevisions( $chart_id, $restore = false ) {
341 418 do_action( 'themeisle_log_event', Visualizer_Plugin::NAME, sprintf( 'undoRevisions for %d with%s restore', $chart_id, ( $restore ? '' : 'out' ) ), 'debug', __FILE__, __LINE__ );
342 -
419 + if ( get_post_type( $chart_id ) !== Visualizer_Plugin::CPT_VISUALIZER ) {
420 + return false;
421 + }
343 422 $revisions = wp_get_post_revisions( $chart_id, array( 'order' => 'ASC' ) );
344 423 if ( count( $revisions ) > 1 ) {
345 424 $revision_ids = array_keys( $revisions );
346 425
@@ -346,9 +425,9 @@
346 425
347 426 do_action( 'themeisle_log_event', Visualizer_Plugin::NAME, sprintf( 'found %d revisions = %s', count( $revisions ), print_r( $revision_ids, true ) ), 'debug', __FILE__, __LINE__ );
348 427
349 428 // when we restore, a new revision is likely to be created. so, let's disable revisions for the time being.
350 - add_filter( 'wp_revisions_to_keep', '__return_false' );
429 + $this->disableRevisionsTemporarily();
351 430
352 431 if ( $restore ) {
353 432 // restore to the oldest one i.e. the first one.
354 433 wp_restore_post_revision( array_shift( $revision_ids ) );
@@ -367,10 +446,13 @@
367 446 /**
368 447 * If existing revisions exist for the chart, restore the earliest version and then create a new revision to initiate editing.
369 448 */
370 449 public final function handleExistingRevisions( $chart_id, $chart ) {
450 +
371 451 do_action( 'themeisle_log_event', Visualizer_Plugin::NAME, sprintf( 'handleExistingRevisions for %d', $chart_id ), 'debug', __FILE__, __LINE__ );
372 -
452 + if ( get_post_type( $chart_id ) !== Visualizer_Plugin::CPT_VISUALIZER ) {
453 + return $chart_id;
454 + }
373 455 // undo revisions.
374 456 $revisions_found = $this->undoRevisions( $chart_id, true );
375 457
376 458 // create revision for the edit action.
@@ -418,11 +500,16 @@
418 500 require_once( ABSPATH . 'wp-admin/includes/file.php' );
419 501 WP_Filesystem();
420 502 global $wp_filesystem;
421 503
422 - $dir = $wp_filesystem->wp_content_dir() . 'uploads/visualizer';
423 - $file = $wp_filesystem->wp_content_dir() . 'uploads/visualizer/customization.js';
504 + $multisite_arg = '/';
505 + if ( is_multisite() && ! is_main_site() ) {
506 + $multisite_arg = '/sites/' . get_current_blog_id() . '/';
507 + }
424 508
509 + $dir = $wp_filesystem->wp_content_dir() . 'uploads' . $multisite_arg . 'visualizer';
510 + $file = $wp_filesystem->wp_content_dir() . 'uploads' . $multisite_arg . 'visualizer/customization.js';
511 +
425 512 if ( $wp_filesystem->is_readable( $file ) ) {
426 513 return $specific;
427 514 }
428 515
@@ -431,8 +518,9 @@
431 518 return $default;
432 519 }
433 520
434 521 if ( ! $wp_filesystem->exists( $dir ) ) {
522 + // phpcs:ignore WordPress.CodeAnalysis.AssignmentInCondition.Found
435 523 if ( ( $done = $wp_filesystem->mkdir( $dir ) ) === false ) {
436 524 do_action( 'themeisle_log_event', Visualizer_Plugin::NAME, sprintf( 'Unable to create directory %s', $dir ), 'error', __FILE__, __LINE__ );
437 525 return $default;
438 526 }
@@ -440,8 +528,9 @@
440 528
441 529 // if file does not exist, copy.
442 530 if ( ! $wp_filesystem->exists( $file ) ) {
443 531 $src = str_replace( ABSPATH, $wp_filesystem->abspath(), VISUALIZER_ABSPATH . '/js/customization.js' );
532 + // phpcs:ignore WordPress.CodeAnalysis.AssignmentInCondition.Found
444 533 if ( ( $done = $wp_filesystem->copy( $src, $file ) ) === false ) {
445 534 do_action( 'themeisle_log_event', Visualizer_Plugin::NAME, sprintf( 'Unable to copy file %s to %s', $src, $file ), 'error', __FILE__, __LINE__ );
446 535 return $default;
447 536 }
@@ -453,18 +542,18 @@
453 542 /**
454 543 * Load the class for the given chart's chart type so that its assets can be loaded.
455 544 */
456 545 protected function load_chart_type( $chart_id ) {
457 - $type = get_post_meta( $chart_id, Visualizer_Plugin::CF_CHART_TYPE, true );
458 - $name = 'Visualizer_Render_Sidebar_Type_' . ucwords( $type );
546 + $name = $this->load_chart_class_name( $chart_id );
459 547 $class = null;
460 548 if ( class_exists( $name ) || true === apply_filters( 'visualizer_load_chart', false, $name ) ) {
461 549 $class = new $name;
462 550 }
463 551
464 - if ( is_null( $class ) && VISUALIZER_PRO ) {
552 + if ( is_null( $class ) && Visualizer_Module::is_pro() ) {
465 553 // lets see if this type exists in pro. New Lite(3.1.0+) & old Pro(1.8.0-).
466 - $class = apply_filters( 'visualizer_pro_chart_type_sidebar', null, array( 'type' => $type, 'settings' => get_post_meta( $chart_id, Visualizer_Plugin::CF_SETTINGS, true ) ) );
554 + $type = get_post_meta( $chart_id, Visualizer_Plugin::CF_CHART_TYPE, true );
555 + $class = apply_filters( 'visualizer_pro_chart_type_sidebar', null, array( 'id' => $chart_id, 'type' => $type, 'settings' => get_post_meta( $chart_id, Visualizer_Plugin::CF_SETTINGS, true ) ) );
467 556 }
468 557
469 558 return is_null( $class ) ? null : $class->getLibrary();
470 559 }
@@ -469,8 +558,26 @@
469 558 return is_null( $class ) ? null : $class->getLibrary();
470 559 }
471 560
472 561 /**
562 + * Returns the class name for the given chart's chart type.
563 + */
564 + protected function load_chart_class_name( $chart_id ) {
565 + $type = get_post_meta( $chart_id, Visualizer_Plugin::CF_CHART_TYPE, true );
566 + $lib = get_post_meta( $chart_id, Visualizer_Plugin::CF_CHART_LIBRARY, true );
567 +
568 + // backward compatibility.
569 + if ( empty( $lib ) ) {
570 + $lib = 'GoogleCharts';
571 + if ( 'dataTable' === $type ) {
572 + $lib = 'DataTable';
573 + }
574 + }
575 + $name = 'Visualizer_Render_Sidebar_Type_' . $lib . '_' . ucwords( $type );
576 + return $name;
577 + }
578 +
579 + /**
473 580 * Generates the inline CSS to apply to the chart and adds these classes to the settings.
474 581 *
475 582 * @access public
476 583 * @param int $id The id of the chart.
@@ -491,9 +598,9 @@
491 598 foreach ( $element as $property => $value ) {
492 599 $attributes[] = $this->handle_css_property( $property, $value );
493 600 }
494 601 $class_name = $id . $name;
495 - $properties = implode( '; ', array_filter( $attributes ) );
602 + $properties = implode( ' !important; ', array_filter( $attributes ) );
496 603 if ( ! empty( $properties ) ) {
497 604 $css .= '.' . $class_name . ' {' . $properties . ' !important;}';
498 605 $classes[ $name ] = $class_name;
499 606 }
@@ -547,5 +654,93 @@
547 654 $q = new WP_Query( $args );
548 655 return $q->found_posts > 0;
549 656 }
550 657
658 + /**
659 + * Determines how many charts have been created.
660 + */
661 + protected static function numberOfCharts() {
662 + $args = array(
663 + 'post_type' => Visualizer_Plugin::CPT_VISUALIZER,
664 + 'fields' => 'ids',
665 + 'post_status' => 'publish',
666 + 'posts_per_page' => 300,
667 + );
668 +
669 + $q = new WP_Query( $args );
670 + return $q->found_posts;
671 + }
672 +
673 + /**
674 + * Checks if the PRO version is active.
675 + *
676 + * @since 3.3.0
677 + */
678 + public static function is_pro() {
679 + // versions of pro before 1.9.0 will use the constant VISUALIZER_PRO
680 + // versions of pro 1.9.0 onwards will use the filter
681 + return apply_filters( 'visualizer_is_pro', VISUALIZER_PRO );
682 + }
683 +
684 + /**
685 + * Checks if the PRO version is older than a particular version.
686 + *
687 + * @since 3.3.0
688 + */
689 + public static function is_pro_older_than( $version ) {
690 + return version_compare( VISUALIZER_PRO_VERSION, $version, '<' );
691 + }
692 +
693 + /**
694 + * Should we show some specific feature on the basis of the version?
695 + *
696 + * @since 3.4.0
697 + */
698 + public static function can_show_feature( $feature ) {
699 + switch ( $feature ) {
700 + case 'simple-editor':
701 + // if user has pro but an older version, then don't load the simple editor functionality
702 + // as the select box will not behave as expected because the pro editor's functionality will supercede.
703 + return ! Visualizer_Module::is_pro() || ! Visualizer_Module::is_pro_older_than( '1.9.2' );
704 + }
705 + return false;
706 + }
707 +
708 + /**
709 + * Gets the features for the provided license type.
710 + */
711 + public static final function get_features_for_license( $plan ) {
712 + switch ( $plan ) {
713 + case 1:
714 + return array( 'import-wp', 'db-query' );
715 + case 2:
716 + return array( 'schedule-chart', 'chart-permissions' );
717 + }
718 + }
719 +
720 + /**
721 + * Gets the chart content after common manipulations.
722 + */
723 + public static function get_chart_data( $chart, $type, $run_filter = true ) {
724 + // change HTML entities
725 + $data = unserialize( html_entity_decode( $chart->post_content ) );
726 + $altered = array();
727 + foreach ( $data as $index => $array ) {
728 + if ( ! is_array( $index ) && is_array( $array ) ) {
729 + foreach ( $array as &$datum ) {
730 + if ( is_string( $datum ) ) {
731 + $datum = stripslashes( $datum );
732 + }
733 + }
734 + $altered[ $index ] = $array;
735 + }
736 + }
737 + // if something goes wrong and the end result is empty, be safe and use the original data
738 + if ( empty( $altered ) ) {
739 + $altered = $data;
740 + }
741 + if ( $run_filter ) {
742 + return apply_filters( Visualizer_Plugin::FILTER_GET_CHART_DATA, $altered, $chart->ID, $type );
743 + }
744 + return $altered;
745 + }
551 746 }