PluginProbe
Templately – Elementor & Gutenberg Template Library: 6500+ Free & Pro Ready Templates And Cloud! / 3.4.5
Templately – Elementor & Gutenberg Template Library: 6500+ Free & Pro Ready Templates And Cloud! v3.4.5
3.8.0 3.7.5 3.7.4 3.7.3 3.7.2 1-final 3.7.1 3.7.0 3.6.8 3.6.7 3.6.6 3.6.5 3.6.4 3.6.3 3.6.2 3.6.1 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 All 112 releases
templately / includes / Core / Importer / Utils / Utils.php

Utils.php in Templately – Elementor & Gutenberg Template Library: 6500+ Free & Pro Ready Templates And Cloud! 3.4.5, at includes/Core/Importer/Utils/Utils.php

409 lines 11.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Templately\Core\Importer\Utils;
4
5 use Exception;
6 use Templately\Core\Importer\FullSiteImport;
7 use Templately\Core\Importer\WPImport;
8 use Templately\Utils\Base;
9 use Templately\Utils\Helper;
10
11 class Utils extends Base {
12
13
14 /**
15 * @throws Exception
16 */
17 public static function read_json_file( $path ) {
18 if ( ! file_exists( $path ) ) {
19 throw new Exception( __( 'JSON file not exists. ' . basename( $path ), 'templately' ) );
20 }
21
22 $file_content = self::file_get_contents( $path );
23
24 return $file_content ? json_decode( $file_content, true ) : [];
25 }
26
27 /**
28 * @param $file
29 * @param mixed ...$args
30 *
31 * @return false|string
32 */
33 public static function file_get_contents( $file, ...$args ) {
34 if ( ! is_file( $file ) || ! is_readable( $file ) ) {
35 return false;
36 }
37
38 return file_get_contents( $file, ...$args );
39 }
40
41 public static function get_builtin_wp_post_types(): array {
42 $post_type_args = [
43 'show_in_nav_menus' => true,
44 'public' => true
45 ];
46 $_post_types = get_post_types( $post_type_args, 'objects' );
47
48 return array_merge( array_keys( $_post_types ), [ 'nav_menu_item', 'wp_navigation' ] );
49 }
50
51 public static function map_old_new_post_ids( array $imported_data ) {
52 $result = [];
53
54 $result += $imported_data['templates']['succeed'] ?? [];
55
56 if ( isset( $imported_data['content'] ) ) {
57 foreach ( $imported_data['content'] as $post_type ) {
58 $result += $post_type['succeed'] ?? [];
59 }
60 }
61
62 if ( isset( $imported_data['wp-content'] ) ) {
63 foreach ( $imported_data['wp-content'] as $post_type ) {
64 $result += $post_type['succeed'] ?? [];
65 }
66 }
67
68 // add attachments data
69 if ( !empty( $imported_data['attachments']['succeed'] ) ) {
70 $result += $imported_data['attachments']['succeed'] ?? [];
71 }
72
73
74 return $result;
75 }
76
77 public static function map_old_new_term_ids( array $imported_data ) {
78 $result = [];
79
80 if ( isset( $imported_data['terms'] ) ) {
81 foreach ( $imported_data['terms'] as $post_type ) {
82 $result += $post_type['succeed'] ?? [];
83 }
84 }
85
86 return $result;
87 }
88
89 public static function map_old_new_term_ids_el( array $imported_data ): array {
90 $result = [];
91
92 if ( ! isset( $imported_data['taxonomies'] ) ) {
93 return $result;
94 }
95
96 foreach ( $imported_data['taxonomies'] as $post_type_taxonomies ) {
97 foreach ( $post_type_taxonomies as $taxonomy ) {
98 foreach ( $taxonomy as $term ) {
99 $result[ $term['old_id'] ] = $term['new_id'];
100 }
101 }
102 }
103
104 return $result;
105 }
106
107 /**
108 * @param string $platform
109 *
110 * @return ImportHelper
111 */
112 public static function get_json_helper( string $platform ) {
113 return $platform === 'elementor' ? new ElementorHelper() : new GutenbergHelper();
114 }
115
116 public static function get_backup_options() {
117 global $wpdb;
118
119 $prefix = '__templately_';
120 $table_name = $wpdb->options; // Assuming default options table name
121
122 $sql = "SELECT option_name, option_value FROM {$table_name} WHERE option_name LIKE %s";
123 $prepared_sql = $wpdb->prepare($sql, array("$prefix%")); // Escape wildcard for security
124
125 $results = $wpdb->get_results($prepared_sql);
126
127 $templately_options = array();
128 foreach ($results as $row) {
129 $name = str_replace($prefix, '', $row->option_name);
130 $templately_options[$name] = maybe_unserialize($row->option_value);
131 }
132
133 return $templately_options;
134 }
135
136 public static function backup_option_value($key, $autoload = 'no') {
137 $old_value = get_option($key);
138 if ($old_value) {
139 update_option("__templately_$key", $old_value, $autoload);
140 }
141 else {
142 add_option("__templately_$key", $old_value, '', $autoload);
143 }
144 }
145
146 public static function update_option($key, $value, $autoload = 'no') {
147 self::backup_option_value($key, $autoload);
148 return update_option($key, $value, $autoload);
149 }
150
151 public static function import_page_settings( $id, $settings ) {
152 $extra_settings = [
153 'page_on_front' => [
154 'show_on_front' => 'page'
155 ]
156 ];
157 if ( isset( $settings['page_for_posts'] ) && $settings['page_for_posts'] ) {
158 self::update_option( 'page_for_posts', $id );
159 }
160 if ( isset( $settings['show_on_front'] ) && $settings['show_on_front'] ) {
161 self::update_option( 'page_on_front', $id );
162 self::update_option( 'show_on_front', 'page' );
163 }
164 if ( ! empty( $settings['page_settings'] ) ) {
165 foreach ( $settings['page_settings'] as $option_name => $val ) {
166 $__val = $id;
167 if($option_name === 'fluent_cart_store_settings'){
168 $__val = $val;
169 }
170 self::update_option( $option_name, $__val );
171 if ( array_key_exists( $option_name, $extra_settings ) ) {
172 foreach ( $extra_settings[ $option_name ] as $name => $value ) {
173 self::update_option( $name, $value );
174 }
175 }
176 }
177 }
178 }
179
180 public static function upload_logo($url, $session_id) {
181 if(empty($url)) {
182 return ['error' => __('URL is empty', 'templately')];
183 }
184
185 // Validate URL and ensure scheme is present
186 if ( ! wp_http_validate_url( $url ) || !parse_url( $url, PHP_URL_SCHEME ) ) {
187 return ['error' => __('Invalid URL', 'templately')];
188 }
189
190 $post_data = self::prepare_post_data($url);
191 $wp_importer = new WPImport( null, ['fetch_attachments' => true, 'session_id' => $session_id] );
192 $attachment_id = $wp_importer->process_attachment($post_data, $url);
193
194 if(is_wp_error($attachment_id)){
195 return ['error' => $attachment_id->get_error_message()];
196 }
197
198 return [
199 'id' => (int) $attachment_id,
200 'url' => esc_url_raw(wp_get_attachment_url($attachment_id)),
201 ];
202 }
203
204 /**
205 * Inserts a template into the Gutenberg editor.
206 *
207 * @param mixed $data
208 * @param int $postId
209 * @return array
210 */
211 public static function import_and_replace_attachments($content, $postId = 0) {
212 // Instantiate GutenbergHelper
213 $helper = new GutenbergHelper();
214
215 $data = [
216 'content' => $content,
217 ];
218
219 // Organize URLs from the content
220 $organizedUrls = $helper->parse_images($data['content']);
221 if(empty($organizedUrls)){
222 return $content;
223 }
224
225 // Define template settings
226 $template_settings = [
227 'post_id' => $postId,
228 '__attachments' => $organizedUrls,
229 ];
230
231 // Map post IDs and disable logging
232 $helper->map_post_ids[$postId] = $postId;
233 $helper->shouldLog = false;
234
235 // Prepare the helper with the data and settings
236 $helper->prepare($data, $template_settings);
237
238 // Update the content in the data array
239 $content = wp_unslash($helper->get_content());
240
241 return $content;
242 }
243
244 public static function prepare_post_data($image_url, $post_parent = null, $logger = null) {
245 $filetype = wp_check_filetype(basename($image_url));
246 if (!$filetype['type']) {
247 if(is_callable($logger)){
248 // call the logger function
249 call_user_func($logger, 'prepare', 'Error: Unable to determine the file type.', -1, 'eventLog');
250 }
251 return null;
252 }
253
254 $post_data = array(
255 'post_title' => basename($image_url),
256 'post_content' => '',
257 'post_status' => 'inherit',
258 'post_mime_type' => $filetype['type'],
259 'guid' => $image_url,
260 );
261
262 if($post_parent){
263 $post_data['post_parent'] = $post_parent; // Set the parent post
264 }
265
266 if (preg_match('%wp-content/uploads/([0-9]{4}/[0-9]{2})%', $image_url, $matches)) {
267 $post_data['upload_date'] = $matches[1];
268 }
269 else{
270 $post_data['upload_date'] = date('Y/m');
271 }
272
273 return $post_data;
274 }
275
276 // Static version of get_session_data
277 public static function get_all_session_data(): array {
278 $data = get_option(FullSiteImport::SESSION_OPTION_KEY, []);
279 return $data ?? [];
280 }
281
282 // Static version of get_session_data
283 public static function get_session_data($session_id): array {
284 $data = get_option(FullSiteImport::SESSION_OPTION_KEY, []);
285 return $data[$session_id] ?? [];
286 }
287
288 // Static version of update_session_data
289 public static function update_session_data($session_id, $data): bool {
290 $old_data = get_option(FullSiteImport::SESSION_OPTION_KEY, []);
291 return update_option(FullSiteImport::SESSION_OPTION_KEY, Helper::recursive_wp_parse_args([$session_id => $data], $old_data));
292 }
293
294 // Delete specific session data by ID
295 public static function delete_session_data($session_id): bool {
296 $all_data = get_option(FullSiteImport::SESSION_OPTION_KEY, []);
297
298 if (!isset($all_data[$session_id])) {
299 return false; // Session ID doesn't exist
300 }
301
302 unset($all_data[$session_id]);
303 return update_option(FullSiteImport::SESSION_OPTION_KEY, $all_data);
304 }
305
306 public static function get_session_id(){
307 $session_id = null;
308 if(!empty($_REQUEST['session_id'])){
309 $session_id = sanitize_text_field($_REQUEST['session_id']);
310 }
311 return $session_id;
312 }
313
314 public static function get_session_data_by_id(): array {
315 if($session_id = self::get_session_id()){
316 return self::get_session_data($session_id);
317 }
318 throw new Exception(__('Invalid Session ID.', 'templately'));
319 }
320
321 public static function update_session_data_by_id($data): bool {
322 if($session_id = self::get_session_id()){
323 return self::update_session_data($session_id, $data);
324 }
325 throw new Exception(__('Invalid Session ID.', 'templately'));
326 }
327
328
329
330 /**
331 * Clean up directory using RecursiveIteratorIterator approach
332 * This method handles directory cleanup with proper validation
333 *
334 * @param string $dir_path The directory path to clean up
335 * @return bool True on success, false on failure
336 */
337 public static function cleanup_directory($dir_path) {
338 if (empty($dir_path) || !file_exists($dir_path) || !is_dir($dir_path)) {
339 return false;
340 }
341
342 try {
343 $files = new \RecursiveIteratorIterator(
344 new \RecursiveDirectoryIterator($dir_path, \RecursiveDirectoryIterator::SKIP_DOTS),
345 \RecursiveIteratorIterator::CHILD_FIRST
346 );
347
348 foreach ($files as $fileinfo) {
349 $todo = ($fileinfo->isDir() ? 'rmdir' : 'unlink');
350 $todo($fileinfo->getRealPath());
351 }
352
353 rmdir($dir_path);
354 return true;
355 } catch (Exception $e) {
356 return false;
357 }
358 }
359
360
361
362
363
364
365
366
367
368 /**
369 * Clean session data by pack ID, keeping only the current session
370 * Removes all session entries with the same pack_id except the current session
371 *
372 * @param string $pack_id The pack ID to match for cleanup
373 * @param string $current_session_id The current session ID to preserve
374 * @return array Array of removed session IDs
375 */
376 public static function clean_session_data_by_pack_id($pack_id, $current_session_id) {
377 if (empty($pack_id) || empty($current_session_id)) {
378 return [];
379 }
380
381 $all_session_data = self::get_all_session_data();
382 $removed_session_ids = [];
383
384
385 foreach ($all_session_data as $session_id => $session_data) {
386 // Skip the current session
387 if ($session_id === $current_session_id) {
388 continue;
389 }
390
391 // Remove sessions that have the same pack_id
392 if (isset($session_data['id']) && $session_data['id'] === $pack_id) {
393 unset($all_session_data[$session_id]);
394 $removed_session_ids[] = $session_id;
395 }
396 }
397
398 // Update the option with cleaned data if any sessions were removed
399 if (!empty($removed_session_ids)) {
400 update_option(FullSiteImport::SESSION_OPTION_KEY, $all_session_data);
401 }
402
403 return $removed_session_ids;
404 }
405
406
407
408 }
409