Commit realizado el 12:13:52 08-04-2024
This commit is contained in:
@@ -0,0 +1,245 @@
|
||||
<?php
|
||||
|
||||
namespace WPForms\Admin\Builder;
|
||||
|
||||
use WPForms\Helpers\CacheBase;
|
||||
use WPForms\Tasks\Actions\AsyncRequestTask;
|
||||
|
||||
/**
|
||||
* Single template cache handler.
|
||||
*
|
||||
* @since 1.6.8
|
||||
*/
|
||||
class TemplateSingleCache extends CacheBase {
|
||||
|
||||
/**
|
||||
* Template Id (hash).
|
||||
*
|
||||
* @since 1.6.8
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
private $id;
|
||||
|
||||
/**
|
||||
* License data (`key` and `type`).
|
||||
*
|
||||
* @since 1.6.8
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
private $license;
|
||||
|
||||
/**
|
||||
* Determine if the class is allowed to load.
|
||||
*
|
||||
* @since 1.6.8
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
protected function allow_load() {
|
||||
|
||||
$has_permissions = wpforms_current_user_can( [ 'create_forms', 'edit_forms' ] );
|
||||
$allowed_requests = wpforms_is_admin_ajax() || wpforms_is_admin_page( 'builder' ) || wpforms_is_admin_page( 'templates' );
|
||||
$allow = wp_doing_cron() || wpforms_doing_wp_cli() || ( $has_permissions && $allowed_requests );
|
||||
|
||||
// phpcs:disable WPForms.PHP.ValidateHooks.InvalidHookName
|
||||
/**
|
||||
* Whether to allow to load this class.
|
||||
*
|
||||
* @since 1.7.2
|
||||
*
|
||||
* @param bool $allow True or false.
|
||||
*/
|
||||
return (bool) apply_filters( 'wpforms_admin_builder_templatesinglecache_allow_load', $allow );
|
||||
// phpcs:enable WPForms.PHP.ValidateHooks.InvalidHookName
|
||||
}
|
||||
|
||||
/**
|
||||
* Re-initialize object with the particular template.
|
||||
*
|
||||
* @since 1.6.8
|
||||
*
|
||||
* @param string $template_id Template ID (hash).
|
||||
* @param array $license License data.
|
||||
*
|
||||
* @return TemplateSingleCache
|
||||
*/
|
||||
public function instance( $template_id, $license ) {
|
||||
|
||||
$this->id = $template_id;
|
||||
$this->license = $license;
|
||||
|
||||
$this->init();
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Provide settings.
|
||||
*
|
||||
* @since 1.6.8
|
||||
*
|
||||
* @return array Settings array.
|
||||
*/
|
||||
protected function setup() {
|
||||
|
||||
return [
|
||||
|
||||
// Remote source URL.
|
||||
'remote_source' => $this->remote_source(),
|
||||
|
||||
// Cache file.
|
||||
'cache_file' => $this->get_cache_file_name(),
|
||||
|
||||
// This filter is documented in wpforms/src/Admin/Builder/TemplatesCache.php.
|
||||
// phpcs:ignore WPForms.PHP.ValidateHooks.InvalidHookName, WPForms.Comments.PHPDocHooks.RequiredHookDocumentation
|
||||
'cache_ttl' => (int) apply_filters( 'wpforms_admin_builder_templates_cache_ttl', WEEK_IN_SECONDS ),
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Generate single template remote URL.
|
||||
*
|
||||
* @since 1.6.8
|
||||
*
|
||||
* @param bool $cache True if the cache arg should be appended to the URL.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
private function remote_source( $cache = false ) {
|
||||
|
||||
if ( ! isset( $this->license['key'] ) ) {
|
||||
return '';
|
||||
}
|
||||
|
||||
$args = [
|
||||
'license' => $this->license['key'],
|
||||
'site' => site_url(),
|
||||
];
|
||||
|
||||
if ( $cache ) {
|
||||
$args['cache'] = 1;
|
||||
}
|
||||
|
||||
return add_query_arg(
|
||||
$args,
|
||||
'https://wpforms.com/templates/api/get/' . $this->id
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get cached data.
|
||||
*
|
||||
* @since 1.8.2
|
||||
*
|
||||
* @return array Cached data.
|
||||
*/
|
||||
public function get() {
|
||||
|
||||
$data = parent::get();
|
||||
|
||||
if ( parent::$updated === false ) {
|
||||
$this->update_usage_tracking();
|
||||
}
|
||||
|
||||
return $data;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sends a request to update the form template usage tracking database.
|
||||
*
|
||||
* @since 1.7.5
|
||||
*/
|
||||
private function update_usage_tracking() {
|
||||
|
||||
$tasks = wpforms()->get( 'tasks' );
|
||||
|
||||
if ( ! $tasks ) {
|
||||
return;
|
||||
}
|
||||
|
||||
$url = $this->remote_source( true );
|
||||
$args = [ 'blocking' => false ];
|
||||
|
||||
$tasks->create( AsyncRequestTask::ACTION )->async()->params( $url, $args )->register();
|
||||
}
|
||||
|
||||
/**
|
||||
* Get cache directory path.
|
||||
*
|
||||
* @since 1.6.8
|
||||
*/
|
||||
protected function get_cache_dir() {
|
||||
|
||||
return parent::get_cache_dir() . 'templates/';
|
||||
}
|
||||
|
||||
/**
|
||||
* Generate single template cache file name.
|
||||
*
|
||||
* @since 1.6.8
|
||||
*
|
||||
* @return string.
|
||||
*/
|
||||
private function get_cache_file_name() {
|
||||
|
||||
return sanitize_key( $this->id ) . '.json';
|
||||
}
|
||||
|
||||
/**
|
||||
* Prepare data to store in a local cache.
|
||||
*
|
||||
* @since 1.6.8
|
||||
*
|
||||
* @param array $data Raw data received by the remote request.
|
||||
*
|
||||
* @return array Prepared data for caching.
|
||||
*/
|
||||
protected function prepare_cache_data( $data ) {
|
||||
|
||||
if (
|
||||
empty( $data ) ||
|
||||
! is_array( $data ) ||
|
||||
empty( $data['status'] ) ||
|
||||
$data['status'] !== 'success' ||
|
||||
empty( $data['data'] )
|
||||
) {
|
||||
return [];
|
||||
}
|
||||
|
||||
$cache_data = $data['data'];
|
||||
$cache_data['data'] = empty( $cache_data['data'] ) ? [] : $cache_data['data'];
|
||||
$cache_data['data']['settings'] = empty( $cache_data['data']['settings'] ) ? [] : $cache_data['data']['settings'];
|
||||
$cache_data['data']['settings']['ajax_submit'] = '1';
|
||||
|
||||
// Strip the word "Template" from the end of the template name and form title setting.
|
||||
$cache_data['name'] = preg_replace( '/\sTemplate$/', '', $cache_data['name'] );
|
||||
$cache_data['data']['settings']['form_title'] = $cache_data['name'];
|
||||
|
||||
// Unset `From Name` field of the notification settings.
|
||||
// By default, the builder will use the `blogname` option value.
|
||||
unset( $cache_data['data']['settings']['notifications'][1]['sender_name'] );
|
||||
|
||||
return $cache_data;
|
||||
}
|
||||
|
||||
/**
|
||||
* Wipe cache of an empty templates.
|
||||
*
|
||||
* @since 1.7.5
|
||||
*/
|
||||
public function wipe_empty_templates_cache() {
|
||||
|
||||
$cache_dir = $this->get_cache_dir();
|
||||
$files = glob( $cache_dir . '*.json' );
|
||||
|
||||
foreach ( $files as $filename ) {
|
||||
$content = file_get_contents( $filename );
|
||||
|
||||
if ( empty( $content ) || trim( $content ) === '[]' ) {
|
||||
unlink( $filename );
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user