ime that
* the property is accessed. For all other inaccessible properties, a `null`
* value is returned.
*
* @since 5.5.0
*
* @param string $name Property name.
* @return array|null Prepared attributes, or null.
*/
public function __get( $name ) {
if ( 'attributes' === $name ) {
$this->attributes = isset( $this->parsed_block['attrs'] ) ?
$this->parsed_block['attrs'] :
array();
if ( ! is_null( $this->block_type ) ) {
$this->attributes = $this->block_type->prepare_attributes_for_render( $this->attributes );
}
return $this->attributes;
}
return null;
}
/**
* Processes the block bindings and updates the block attributes with the values from the sources.
*
* A block might contain bindings in its attributes. Bindings are mappings
* between an attribute of the block and a source. A "source" is a function
* registered with `register_block_bindings_source()` that defines how to
* retrieve a value from outside the block, e.g. from post meta.
*
* This function will process those bindings and update the block's attributes
* with the values coming from the bindings.
*
* ### Example
*
* The "bindings" property for an Image block might look like this:
*
* ```json
* {
* "metadata": {
* "bindings": {
* "title": {
* "source": "core/post-meta",
* "args": { "key": "text_custom_field" }
* },
* "url": {
* "source": "core/post-meta",
* "args": { "key": "url_custom_field" }
* }
* }
* }
* }
* ```
*
* The above example will replace the `title` and `url` attributes of the Image
* block with the values of the `text_custom_field` and `url_custom_field` post meta.
*
* @since 6.5.0
*
* @return array The computed block attributes for the provided block bindings.
*/
private function process_block_bindings() {
$parsed_block = $this->parsed_block;
$computed_attributes = array();
$supported_block_attributes = array(
'core/paragraph' => array( 'content' ),
'core/heading' => array( 'content' ),
'core/image' => array( 'id', 'url', 'title', 'alt' ),
'core/button' => array( 'url', 'text', 'linkTarget', 'rel' ),
);
// If the block doesn't have the bindings property, isn't one of the supported
// block types, or the bindings property is not an array, return the block content.
if (
! isset( $supported_block_attributes[ $this->name ] ) ||
empty( $parsed_block['attrs']['metadata']['bindings'] ) ||
! is_array( $parsed_block['attrs']['metadata']['bindings'] )
) {
return $computed_attributes;
}
foreach ( $parsed_block['attrs']['metadata']['bindings'] as $attribute_name => $block_binding ) {
// If the attribute is not in the supported list, process next attribute.
if ( ! in_array( $attribute_name, $supported_block_attributes[ $this->name ], true ) ) {
continue;
}
// If no source is provided, or that source is not registered, process next attribute.
if ( ! isset( $block_binding['source'] ) || ! is_string( $block_binding['source'] ) ) {
continue;
}
$block_binding_source = get_block_bindings_source( $block_binding['source'] );
if ( null === $block_binding_source ) {
continue;
}
$source_args = ! empty( $block_binding['args'] ) && is_array( $block_binding['args'] ) ? $block_binding['args'] : array();
$source_value = $block_binding_source->get_value( $source_args, $this, $attribute_name );
// If the value is not null, process the HTML based on the block and the attribute.
if ( ! is_null( $source_value ) ) {
$computed_attributes[ $attribute_name ] = $source_value;
}
}
return $computed_attributes;
}
/**
* Depending on the block attribute name, replace its value in the HTML based on the value provided.
*
* @since 6.5.0
*
* @param string $block_content Block content.
* @param string $attribute_name The attribute name to replace.
* @param mixed $source_value The value used to replace in the HTML.
* @return string The modified block content.
*/
private function replace_html( string $block_content, string $attribute_name, $source_value ) {
$block_type = $this->block_type;
if ( ! isset( $block_type->attributes[ $attribute_name ]['source'] ) ) {
return $block_content;
}
// Depending on the attribute source, the processing will be different.
switch ( $block_type->attributes[ $attribute_name ]['source'] ) {
case 'html':
case 'rich-text':
$block_reader = new WP_HTML_Tag_Processor( $block_content );
// TODO: Support for CSS selectors whenever they are ready in the HTML API.
// In the meantime, support comma-separated selectors by exploding them into an array.
$selectors = explode( ',', $block_type->attributes[ $attribute_name ]['selector'] );
// Add a bookmark to the first tag to be able to iterate over the selectors.
$block_reader->next_tag();
$block_reader->set_bookmark( 'iterate-selectors' );
// TODO: This shouldn't be needed when the `set_inner_html` function is ready.
// Store the parent tag and its attributes to be able to restore them later in the button.
// The button block has a wrapper while the paragraph and heading blocks don't.
if ( 'core/button' === $this->name ) {
$button_wrapper = $block_reader->get_tag();
$button_wrapper_attribute_names = $block_reader->get_attribute_names_with_prefix( '' );
$button_wrapper_attrs = array();
foreach ( $button_wrapper_attribute_names as $name ) {
$button_wrapper_attrs[ $name ] = $block_reader->get_attribute( $name );
}
}
foreach ( $selectors as $selector ) {
// If the parent tag, or any of its children, matches the selector, replace the HTML.
if ( strcasecmp( $block_reader->get_tag( $selector ), $selector ) === 0 || $block_reader->next_tag(
array(
'tag_name' => $selector,
)
) ) {
$block_reader->release_bookmark( 'iterate-selectors' );
// TODO: Use `set_inner_html` method whenever it's ready in the HTML API.
// Until then, it is hardcoded for the paragraph, heading, and button blocks.
// Store the tag and its attributes to be able to restore them later.
$selector_attribute_names = $block_reader->get_attribute_names_with_prefix( '' );
$selector_attrs = array();
foreach ( $selector_attribute_names as $name ) {
$selector_attrs[ $name ] = $block_reader->get_attribute( $name );
}
$selector_markup = "<$selector>" . wp_kses_post( $source_value ) . "$selector>";
$amended_content = new WP_HTML_Tag_Processor( $selector_markup );
$amended_content->next_tag();
foreach ( $selector_attrs as $attribute_key => $attribute_value ) {
$amended_content->set_attribute( $attribute_key, $attribute_value );
}
if ( 'core/paragraph' === $this->name || 'core/heading' === $this->name ) {
return $amended_content->get_updated_html();
}
if ( 'core/button' === $this->name ) {
$button_markup = "<$button_wrapper>{$amended_content->get_updated_html()}$button_wrapper>";
$amended_button = new WP_HTML_Tag_Processor( $button_markup );
$amended_button->next_tag();
foreach ( $button_wrapper_attrs as $attribute_key => $attribute_value ) {
$amended_button->set_attribute( $attribute_key, $attribute_value );
}
return $amended_button->get_updated_html();
}
} else {
$block_reader->seek( 'iterate-selectors' );
}
}
$block_reader->release_bookmark( 'iterate-selectors' );
return $block_content;
case 'attribute':
$amended_content = new WP_HTML_Tag_Processor( $block_content );
if ( ! $amended_content->next_tag(
array(
// TODO: build the query from CSS selector.
'tag_name' => $block_type->attributes[ $attribute_name ]['selector'],
)
) ) {
return $block_content;
}
$amended_content->set_attribute( $block_type->attributes[ $attribute_name ]['attribute'], $source_value );
return $amended_content->get_updated_html();
break;
default:
return $block_content;
break;
}
return;
}
/**
* Generates the render output for the block.
*
* @since 5.5.0
* @since 6.5.0 Added block bindings processing.
*
* @global WP_Post $post Global post object.
*
* @param array $options {
* Optional options object.
*
* @type bool $dynamic Defaults to 'true'. Optionally set to false to avoid using the block's render_callback.
* }
* @return string Rendered block output.
*/
public function render( $options = array() ) {
global $post;
$options = wp_parse_args(
$options,
array(
'dynamic' => true,
)
);
// Process the block bindings and get attributes updated with the values from the sources.
$computed_attributes = $this->process_block_bindings();
if ( ! empty( $computed_attributes ) ) {
// Merge the computed attributes with the original attributes.
$this->attributes = array_merge( $this->attributes, $computed_attributes );
}
$is_dynamic = $options['dynamic'] && $this->name && null !== $this->block_type && $this->block_type->is_dynamic();
$block_content = '';
if ( ! $options['dynamic'] || empty( $this->block_type->skip_inner_blocks ) ) {
$index = 0;
foreach ( $this->inner_content as $chunk ) {
if ( is_string( $chunk ) ) {
$block_content .= $chunk;
} else {
$inner_block = $this->inner_blocks[ $index ];
$parent_block = $this;
/** This filter is documented in wp-includes/blocks.php */
$pre_render = apply_filters( 'pre_render_block', null, $inner_block->parsed_block, $parent_block );
if ( ! is_null( $pre_render ) ) {
$block_content .= $pre_render;
} else {
$source_block = $inner_block->parsed_block;
/** This filter is documented in wp-includes/blocks.php */
$inner_block->parsed_block = apply_filters( 'render_block_data', $inner_block->parsed_block, $source_block, $parent_block );
/** This filter is documented in wp-includes/blocks.php */
$inner_block->context = apply_filters( 'render_block_context', $inner_block->context, $inner_block->parsed_block, $parent_block );
$block_content .= $inner_block->render();
}
++$index;
}
}
}
if ( ! empty( $computed_attributes ) && ! empty( $block_content ) ) {
foreach ( $computed_attributes as $attribute_name => $source_value ) {
$block_content = $this->replace_html( $block_content, $attribute_name, $source_value );
}
}
if ( $is_dynamic ) {
$global_post = $post;
$parent = WP_Block_Supports::$block_to_render;
WP_Block_Supports::$block_to_render = $this->parsed_block;
$block_content = (string) call_user_func( $this->block_type->render_callback, $this->attributes, $block_content, $this );
WP_Block_Supports::$block_to_render = $parent;
$post = $global_post;
}
if ( ( ! empty( $this->block_type->script_handles ) ) ) {
foreach ( $this->block_type->script_handles as $script_handle ) {
wp_enqueue_script( $script_handle );
}
}
if ( ! empty( $this->block_type->view_script_handles ) ) {
foreach ( $this->block_type->view_script_handles as $view_script_handle ) {
wp_enqueue_script( $view_script_handle );
}
}
if ( ! empty( $this->block_type->view_script_module_ids ) ) {
foreach ( $this->block_type->view_script_module_ids as $view_script_module_id ) {
wp_enqueue_script_module( $view_script_module_id );
}
}
if ( ( ! empty( $this->block_type->style_handles ) ) ) {
foreach ( $this->block_type->style_handles as $style_handle ) {
wp_enqueue_style( $style_handle );
}
}
if ( ( ! empty( $this->block_type->view_style_handles ) ) ) {
foreach ( $this->block_type->view_style_handles as $view_style_handle ) {
wp_enqueue_style( $view_style_handle );
}
}
/**
* Filters the content of a single block.
*
* @since 5.0.0
* @since 5.9.0 The `$instance` parameter was added.
*
* @param string $block_content The block content.
* @param array $block The full block, including name and attributes.
* @param WP_Block $instance The block instance.
*/
$block_content = apply_filters( 'render_block', $block_content, $this->parsed_block, $this );
/**
* Filters the content of a single block.
*
* The dynamic portion of the hook name, `$name`, refers to
* the block name, e.g. "core/paragraph".
*
* @since 5.7.0
* @since 5.9.0 The `$instance` parameter was added.
*
* @param string $block_content The block content.
* @param array $block The full block, including name and attributes.
* @param WP_Block $instance The block instance.
*/
$block_content = apply_filters( "render_block_{$this->name}", $block_content, $this->parsed_block, $this );
return $block_content;
}
}
m string $category Category slug.
* @return array
*/
public function get_cookies( $category = '' ) {
$data = array();
$items = \CookieYes\Lite\Admin\Modules\Cookies\Includes\Cookie_Controller::get_instance()->get_items_by_category( $category );
foreach ( $items as $item ) {
$object = new \CookieYes\Lite\Admin\Modules\Cookies\Includes\Cookie( $item );
$data[] = array(
'cookie_id' => $object->get_name(),
'type' => $object->get_type(),
'domain' => $object->get_domain(),
'duration' => $object->get_duration(),
'description' => $object->get_description(),
'website_id' => $this->get_website_id(),
'provider' => $object->get_url_pattern(),
);
}
return $data;
}
/**
* Prepare and format banners prior to sync.
*
* @return array
*/
public function prepare_banners() {
$items = \CookieYes\Lite\Admin\Modules\Banners\Includes\Controller::get_instance()->get_items();
$banners = array();
foreach ( $items as $item ) {
$object = new \CookieYes\Lite\Admin\Modules\Banners\Includes\Banner( $item );
$banner = array(
'id' => $object->get_id(),
'name' => $object->get_name(),
'slug' => $object->get_slug(),
'default' => $object->get_default(),
'status' => ( true === $object->get_status() ? 'active' : 'inactive' ),
);
$data = array_merge( $banner, array_merge( $object->get_settings(), array( 'content' => $object->get_contents() ) ) );
$data['settings']['languages']['selected'] = cky_selected_languages();
$data['settings']['languages']['default'] = cky_default_language();
$data['settings']['ruleSet'] = array(
array(
'code' => 'ALL',
'regions' => array(),
),
);
$banners[] = $data;
}
return $banners;
}
/**
* Fetch site info from either locally or from API.
*
* @param array $args Array of arguments.
* @return array
*/
public function get_info( $args = array() ) {
$data = array();
if ( false === cky_is_cloud_request() ) {
$data = $this->get_site_info( $args );
} else {
$data = $this->get_app_info( $args );
}
return $data;
}
/**
* Get the current plan details and features list from a local DB.
*
* @param array $args Array of arguments.
* @return array
*/
public function get_site_info( $args = array() ) {
return $this->get_default();
}
/**
* Get default site info.
*
* @return array
*/
public function get_default() {
$settings = new Settings();
$scan = \CookieYes\Lite\Admin\Modules\Scanner\Includes\Controller::get_instance()->get_info();
return array(
'id' => '',
'url' => get_site_url(),
'plan' => array(
'id' => '',
'slug' => 'free',
'name' => __( 'Free', 'cookie-law-info' ),
'description' => __( 'Free Plan', 'cookie-law-info' ),
'scan_limit' => '100',
'log_limit' => 5000,
'features' => array(
'multi_law' => false,
'custom_css' => false,
'custom_branding' => false,
'config_geo_rules' => false,
'max_free_websites' => 1,
'remove_powered_by' => false,
'popup_layout' => false,
),
),
'banners' => array(
'status' => \CookieYes\Lite\Admin\Modules\Banners\Includes\Controller::get_instance()->check_status(),
),
'consent_logs' => array(
'status' => $settings->get_consent_log_status(),
),
'scans' => array(
'date' => isset( $scan['date'] ) ? $scan['date'] : '',
'status' => isset( $scan['status'] ) ? $scan['status'] : false,
),
'languages' => array(
'default' => $settings->get_default_language(),
),
'tables_missing' => count( cky_missing_tables() ) > 0 ? true : false,
);
}
/**
* Check API before initializing the plugin.
*
* @return void
*/
public function check_api() {
if ( ! cky_is_cloud_request() ) {
return;
}
$response = $this->get_app_info();
if ( is_wp_error( $response ) ) {
return;
}
$this->maybe_update_settings( $response );
}
/**
* Maybe update the plugin settings if required.
*
* @param array $response Response from the web app.
* @return void
*/
public function maybe_update_settings( $response ) {
$settings = new Settings();
$data = $settings->get();
$data['consent_logs'] = isset( $response['consent_logs'] ) ? $response['consent_logs'] : array();
$data['languages'] = isset( $response['languages'] ) ? $response['languages'] : array();
update_option( 'cky_settings', $data );
}
/**
* Load site info from the web app.
*
* @param array $args Array of arguments.
* @return array
*/
public function get_app_info( $args = array() ) {
$data = array();
if ( ! $this->get_website_id() ) {
return new WP_Error(
'cky_invalid_website_id',
__( 'Invalid Website ID', 'cookie-law-info' ),
array( 'status' => 404 )
);
}
$response = $this->get(
'websites/' . $this->get_website_id()
);
$response_code = wp_remote_retrieve_response_code( $response );
if ( 200 === $response_code ) {
$response = json_decode( wp_remote_retrieve_body( $response ), true );
$user = isset( $response['user'] ) ? $response['user'] : array();
$plan = isset( $response['websiteplan'] ) ? $response['websiteplan'] : array();
$features = isset( $plan['features'] ) ? $plan['features'] : array();
$scan_timestamp = isset( $response['last_scan_at'] ) ? strtotime( sanitize_text_field( $response['last_scan_at'] ) ) : false;
$scan_success_timestamp = isset( $response['last_successful_scan_at'] ) ? strtotime( sanitize_text_field( $response['last_successful_scan_at'] ) ) : false;
$date = isset( $scan_timestamp ) && is_int( $scan_timestamp ) ? gmdate( 'd M Y', $scan_timestamp ) : '';
$time = isset( $scan_timestamp ) && is_int( $scan_timestamp ) ? gmdate( 'H:i:s', $scan_timestamp ) : '';
$success_date = isset( $scan_success_timestamp ) && is_int( $scan_success_timestamp ) ? gmdate( 'd M Y', $scan_success_timestamp ) : '';
$success_time = isset( $scan_success_timestamp ) && is_int( $scan_success_timestamp ) ? gmdate( 'H:i:s', $scan_success_timestamp ) : '';
$applicable_laws = isset( $response['applicableLaws'] ) ? $response['applicableLaws'] : array( 'gdpr' );
$applicable_laws = implode( ' & ', $applicable_laws );
$grace_period = isset( $response['grace_period_ends_at'] ) ? strtotime( sanitize_text_field( $response['grace_period_ends_at'] ) ) : false;
$grace_period_ends = isset( $grace_period ) && is_int( $grace_period ) ? gmdate( 'F d, Y', $grace_period ) : '';
$data = array(
'id' => $this->get_website_id(),
'url' => isset( $response['url'] ) ? esc_url_raw( $response['url'] ) : esc_url_raw( get_site_url() ),
'status' => isset( $response['status'] ) ? sanitize_text_field( $response['status'] ) : '',
'banner_disabled_manually' => isset($response['banner_disabled_manually']) && true == $response['banner_disabled_manually'],
'user' => array(
'name' => isset( $user['name'] ) ? sanitize_text_field( $user['name'] ) : '',
'email' => isset( $user['email'] ) ? sanitize_email( $user['email'] ) : '',
),
'plan' => array(
'id' => isset( $plan['id'] ) ? sanitize_text_field( $plan['id'] ) : '',
'slug' => isset( $plan['slug'] ) ? sanitize_text_field( $plan['slug'] ) : '',
'name' => isset( $plan['name'] ) ? sanitize_text_field( $plan['name'] ) : '',
'description' => isset( $plan['description'] ) ? sanitize_text_field( $plan['description'] ) : '',
'scan_limit' => isset( $plan['scan_limit'] ) ? absint( $plan['scan_limit'] ) : 100,
'log_limit' => isset( $plan['log_limit'] ) ? absint( $plan['log_limit'] ) : 5000,
'log_limit' => isset( $plan['log_limit'] ) ? absint( $plan['log_limit'] ) : 5000,
'features' => array(
'multi_law' => isset( $features['multi_law'] ) && true === $features['multi_law'] ? true : false,
'custom_css' => isset( $features['custom_css'] ) && true === $features['custom_css'] ? true : false,
'custom_branding' => isset( $features['custom_branding'] ) && true === $features['custom_branding'] ? true : false,
'config_geo_rules' => isset( $features['config_geo_rules'] ) && true === $features['config_geo_rules'] ? true : false,
'max_free_websites' => isset( $plan['max_free_websites'] ) ? absint( $plan['max_free_websites'] ) : 1,
'remove_powered_by' => isset( $features['remove_powered_by'] ) && true === $features['remove_powered_by'] ? true : false,
'popup_layout' => isset( $features['popup_layout'] ) && true === $features['popup_layout'] ? true : false,
),
),
'banners' => array(
'status' => isset( $response['banner_status'] ) && 1 === $response['banner_status'] ? true : false,
'laws' => $applicable_laws,
'is_iab_enabled' => isset( $response['isIABEnabled'] ) && true === $response['isIABEnabled'],
'targetedLocation' => isset( $response['targetedLocation'] ) ? $response['targetedLocation'] : 'worldwide',
),
'consent_logs' => array(
'status' => isset( $response['visitor_log'] ) && true === $response['visitor_log'] ? true : false,
),
'scans' => array(
'date' => array(
'date' => $date,
'time' => $time,
),
'status' => isset( $response['last_scan_at'] ) && '' !== $response['last_scan_at'] ? true : false,
),
'success_scan' => array(
'date' => array(
'date' => $success_date,
'time' => $success_time,
),
'status' => isset( $response['last_successful_scan_at'] ) && '' !== $response['last_successful_scan_at'],
),
'languages' => array(
'selected' => isset( $response['language']['preferred'] ) ? cky_sanitize_text( $response['language']['preferred'] ) : array(),
'default' => isset( $response['settings_json']['defaultLanguage'] ) ? cky_sanitize_text( $response['settings_json']['defaultLanguage'] ) : 'en',
),
'tables_missing' => false,
'pageviews' => array(
'count' => isset( $response['pageviews']['views'] ) ? absint( $response['pageviews']['views'] ) : 0,
'limit' => isset( $response['pageviews']['views_limit'] ) ? absint( $response['pageviews']['views_limit'] ) : 25000,
'exceeded' => isset( $response['pageviews']['limit_exceeded'] ) && 1 === absint( $response['pageviews']['limit_exceeded'] ),
),
'website' => array(
'status' => isset( $response['website_status'] ) ? sanitize_text_field( $response['website_status'] ) : 'active',
'is_trial' => isset( $response['is_trial'] ) && true === $response['is_trial'],
'is_trial_with_card' => isset( $response['trial_with_card'] ) && true === $response['trial_with_card'],
'grace_period_ends_at' => $grace_period_ends,
'payment_status' => isset( $response['payment_status'] ) && true === $response['payment_status'],
),
);
return $data;
}
return new WP_Error(
'cky_api_fetching_failed',
__( 'Failed to fetch data from the API', 'cookie-law-info' ),
array( 'status' => 400 )
);
}
/**
* Force update app settings if any changes from the plugin side.
*
* @param array $settings Settings array.
* @return void
*/
public function maybe_update_app_settings( $settings = array() ) {
if ( ! cky_is_cloud_request() || ! $this->get_website_id() ) {
return;
}
$data = array(
'preferred_languages' => isset( $settings['languages']['selected'] ) ? $settings['languages']['selected'] : array(),
'default_language' => isset( $settings['languages']['default'] ) ? $settings['languages']['default'] : 'en',
'visitor_log' => isset( $settings['consent_logs']['status'] ) && true === $settings['consent_logs']['status'] ? 1 : 0,
);
$response = $this->put(
'websites/' . $this->get_website_id(),
wp_json_encode( $data )
);
$response_code = wp_remote_retrieve_response_code( $response );
if ( 200 !== $response_code ) {
return new WP_Error(
'cky_api_settings_update_failed',
__( 'Failed to the update the data to web app', 'cookie-law-info' ),
array( 'status' => 200 )
);
}
}
/**
* Delete the cache.
*
* @return void
*/
public function delete_cache() {
wp_cache_flush();
}
}
Fatal error: Uncaught Error: Class 'CookieYes\Lite\Admin\Modules\Settings\Includes\Controller' not found in /var/www/html/helitower.com.br/web/wp-content/plugins/cookie-law-info/lite/admin/modules/settings/class-settings.php:30
Stack trace:
#0 /var/www/html/helitower.com.br/web/wp-content/plugins/cookie-law-info/lite/includes/class-modules.php(54): CookieYes\Lite\Admin\Modules\Settings\Settings->init()
#1 /var/www/html/helitower.com.br/web/wp-content/plugins/cookie-law-info/lite/admin/class-admin.php(179): CookieYes\Lite\Includes\Modules->__construct('settings')
#2 /var/www/html/helitower.com.br/web/wp-content/plugins/cookie-law-info/lite/admin/class-admin.php(81): CookieYes\Lite\Admin\Admin->load_modules()
#3 /var/www/html/helitower.com.br/web/wp-content/plugins/cookie-law-info/lite/includes/class-cli.php(153): CookieYes\Lite\Admin\Admin->__construct('cookie-law-info', '3.2.4')
#4 /var/www/html/helitower.com.br/web/wp-content/plugins/cookie-law-info/lite/includes/class-cli.php(95): CookieYes\Lite\Includes\CLI->define_adm in /var/www/html/helitower.com.br/web/wp-content/plugins/cookie-law-info/lite/admin/modules/settings/class-settings.php on line 30