File "ast-block-templates-notices.php"

Full Path: /home/fresvfqn/waterdamagerestorationandrepairsmithtown.com/wp-content/plugins/astra-sites/inc/lib/gutenberg-templates/inc/classes/ast-block-templates-notices.php
File size: 2.93 KB
MIME-type: text/x-php
Charset: utf-8

<?php
/**
 * Ast BlockTemplates
 *
 * @since 2.2.4
 * @package Astra Sites
 */

namespace Gutenberg_Templates\Inc\Classes;

use Gutenberg_Templates\Inc\Traits\Instance;

if ( ! class_exists( 'Ast_Block_Templates_Notices' ) ) :

	/**
	 * Ast BlockTemplates
	 */
	class Ast_Block_Templates_Notices {

		use Instance;

		/**
		 * Check file read/write permissions and process.
		 *
		 * @since 2.2.4
		 * @return bool
		 */
		public function has_file_read_write() {

			if ( defined( 'WP_CLI' ) && WP_CLI ) {
				return true;
			}

			$upload_dir = self::log_dir();

			$file_created = self::get_filesystem()->put_contents( $upload_dir['path'] . 'index.html', '' );
			if ( ! $file_created ) {
				add_action( 'admin_notices', array( $this, 'file_permission_notice' ) );
				return false;
			}

			return true;
		}

		/**
		 * File Permission Notice
		 *
		 * @since 2.0.0
		 * @return void
		 */
		public function file_permission_notice() {
			
			$notice = __( 'File Permissions Needed - Importing patterns, pages, and templates from Design Library requires proper file permissions. For guidance on resolving this issue and ensuring smooth importing processes, please refer to the accompanying documentation.', 'astra-sites' );
			?>
			<div class="notice notice-error ast-block-templates-must-notices ast-block-templates-file-permission-issue">
				<p><?php echo esc_html( $notice ); ?></p>
				<p><?php echo esc_html( __( 'Doc: ', 'astra-sites' ) ); ?><a href="https://wpastra.com/docs/could-not-store-files-in-wp-content-folder/" target="__blank"><?php echo esc_html( __( 'Resolve file permission issue', 'astra-sites' ) ); ?></a></p>
			</div>
			<?php
		}


		/**
		 * Get an instance of WP_Filesystem_Direct.
		 *
		 * @since 2.0.0
		 * @return mixed A WP_Filesystem_Direct instance.
		 */
		public static function get_filesystem() {
			global $wp_filesystem;

			require_once ABSPATH . '/wp-admin/includes/file.php';

			WP_Filesystem();

			return $wp_filesystem;
		}

		/**
		 * Log file directory
		 *
		 * @since 2.2.4
		 * @param  string $dir_name Directory Name.
		 * @return array<string, string>   Uploads directory array.
		 */
		public static function log_dir( $dir_name = 'ast-block-templates-json' ) {

			$upload_dir = wp_upload_dir();

			// Build the paths.
			$dir_info = array(
				'path' => $upload_dir['basedir'] . '/' . $dir_name . '/',
				'url'  => $upload_dir['baseurl'] . '/' . $dir_name . '/',
			);

			// Create the upload dir if it doesn't exist.
			if ( ! file_exists( $dir_info['path'] ) ) {

				// Create the directory.
				wp_mkdir_p( $dir_info['path'] );

				// Add an index file for security.
				self::get_filesystem()->put_contents( $dir_info['path'] . 'index.html', '' );

				// Add an .htaccess for security.
				self::get_filesystem()->put_contents( $dir_info['path'] . '.htaccess', 'deny from all' );
			}

			return $dir_info;
		}
	}
	
	/**
	 * Kicking this off by calling 'get_instance()' method
	 */
	Ast_Block_Templates_Notices::instance();

endif;