-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfiles.php
744 lines (563 loc) · 24.4 KB
/
files.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
<?php
/**
* Manage file uploads, thumbs and generate links for uploaded files
**/
if ( ! defined( 'ABSPATH' ) ) {
die( 'Not Allowed.' );
}
// Set/create directory and return path
function ppom_files_setup_get_directory( $sub_dir = false ) {
$upload_dir = wp_upload_dir();
$parent_dir = $upload_dir ['basedir'] . '/' . PPOM_UPLOAD_DIR_NAME . '/';
$thumb_dir = $parent_dir . 'thumbs/';
if ( $sub_dir ) {
$sub_dir = $parent_dir . $sub_dir . '/';
if ( wp_mkdir_p( $sub_dir ) ) {
return $sub_dir;
}
} elseif ( wp_mkdir_p( $parent_dir ) ) {
if ( wp_mkdir_p( $thumb_dir ) ) {
return $parent_dir;
}
}
}
// Return upload file dir path
function ppom_get_dir_path( $sub_dir = false ) {
$ppom_upload_dir = ppom_files_setup_get_directory( $sub_dir );
return apply_filters( 'ppom_dir_path', $ppom_upload_dir );
}
// Return upload file dir url
function ppom_get_dir_url( $thumb = false ) {
$upload_dir = wp_upload_dir();
$return_url = '';
if ( $thumb ) {
$return_url = $upload_dir ['baseurl'] . '/' . PPOM_UPLOAD_DIR_NAME . '/thumbs/';
} else {
$return_url = $upload_dir ['baseurl'] . '/' . PPOM_UPLOAD_DIR_NAME . '/';
}
return apply_filters( 'ppom_dir_url', set_url_scheme( $return_url ) );
}
/**
* Check if given filenameis image.
*
* @param string $file_path File full path.
*
* @return bool
*/
function ppom_is_file_image( $file_path ) {
return wp_get_image_mime( $file_path );
}
// return html for file thumb
function ppom_create_thumb_for_meta( $file_name, $product_id, $cropped = false, $size = null ) {
$get_order_id = isset( $_GET['order_id'] ) ? intval( $_GET['order_id'] ) : 0;
// get current post/order ID
$order_id = isset( $_GET['post'] ) ? intval( $_GET['post'] ) : $get_order_id;
// get current post/order type
$post_type = get_post_type( $order_id );
if ( is_admin() && $post_type == 'shop_order' ) {
$file_thumb_url = ppom_get_confirmed_dir_thumbs( $order_id, $file_name, $product_id, $thumb = true );
$file_dir_path = ppom_get_confirmed_dir_thumbs( $order_id, $file_name, $product_id, $thumb = false );
} else {
$file_dir_path = ppom_get_dir_path() . $file_name;
$file_thumb_url = ppom_is_file_image( $file_dir_path ) ? ppom_get_dir_url( true ) . $file_name : PPOM_URL . '/images/file.png';
}
if ( ! file_exists( $file_dir_path ) ) {
return '';
}
$file_path_edit = ppom_get_dir_path() . 'edits/' . $file_name;
if ( file_exists( $file_path_edit ) ) {
$file_link = ppom_get_dir_url() . 'edits/' . $file_name;
$edited_thumb_path = ppom_get_dir_path() . 'edits/thumbs/' . $file_name;
if ( file_exists( $edited_thumb_path ) ) {
$file_thumb_url = ppom_get_dir_url() . 'edits/thumbs/' . $file_name;
}
} elseif ( file_exists( $file_dir_path ) && $post_type == 'shop_order' ) {
$file_link = $file_thumb_url;
} else {
$file_link = ppom_get_dir_url() . $file_name;
}
$ppom_cart_meta_thumb_size = ppom_get_thumbs_size();
$thumb_html = '<img class="img-thumbnail" style="width:' . esc_attr( $ppom_cart_meta_thumb_size ) . '" src="' . esc_url( $file_thumb_url ) . '" alt="' . esc_attr( $file_name ) . '">';
$ppom_html = '<table class="table table-bordered">';
$ppom_html .= '<tr><td><a href="' . esc_url( $file_link ) . '" class="lightbox et_pb_lightbox_image" itemprop="image" title="' . esc_attr( $file_name ) . '">' . $thumb_html . '</a></td>';
$ppom_html .= '<td style="max-width:300px;text-align:left;">' . esc_attr( ppom_files_trim_name( $file_name ) ) . '</td>';
$ppom_html .= '</tr>';
// Checking if cropped file existing
$cropped_file_name = ppom_file_get_name( $file_name, $product_id );
if ( $cropped && file_exists( ppom_get_dir_path( 'cropped' ) . $cropped_file_name ) ) {
$cropped_url = ppom_get_dir_url() . 'cropped/' . $cropped_file_name;
$ppom_html .= '<tr>';
$ppom_html .= '<td><a href="' . esc_url( $cropped_url ) . '" class="lightbox et_pb_lightbox_image" itemprop="image" title="' . esc_attr( $file_name ) . '">';
$ppom_html .= '<img class="img-thumbnail" style="width:' . esc_attr( $ppom_cart_meta_thumb_size ) . '" src="' . esc_url( $cropped_url ) . '">';
$ppom_html .= '</a></td>';
// translators: $s: the size of the cropped image.
$cropped_title = sprintf( __( 'Your image-%s', 'woocommerce-product-addon' ), $size );
$ppom_html .= '<td>' . $cropped_title . '</td>';
$ppom_html .= '</tr>';
}
$ppom_html .= '</table>';
// var_dump($ppom_html);
return apply_filters( 'ppom_meta_file_thumb', $ppom_html, $file_name, $product_id );
}
/**
* Create a new file name that contains a unique string.
*
* @param string $file_name The file name.
* @param string $file_ext The file extension.
*
* @return string The new file name.
*/
function ppom_create_unique_file_name( $file_name, $file_ext ) {
return $file_name . "." . base64_encode( substr( wp_hash_password( $file_name ), 0, 8 ) ) . "." . $file_ext;
}
final class UploadFileErrors {
const OPEN_INPUT = 'open_input';
const OPEN_OUTPUT = 'open_output';
const MISSING_TEMP_FILE = 'missing_temp_file';
const OPEN_DIR = 'open_dir';
static function get_message_response( $error_slug ) {
$msg = array(
self::OPEN_INPUT => '{"jsonrpc" : "2.0", "error" : {"code": 101, "message": "Failed to open input stream."}, "id" : "id"}',
self::OPEN_OUTPUT => '{"jsonrpc" : "2.0", "error" : {"code": 102, "message": "Failed to open output stream."}, "id" : "id"}',
self::MISSING_TEMP_FILE => '{"jsonrpc" : "2.0", "error" : {"code": 103, "message": "Failed to move uploaded file."}, "id" : "id"}',
self::OPEN_DIR => '{"jsonrpc" : "2.0", "error" : {"code": 100, "message": "Failed to open temp directory."}, "id" : "id"}',
);
return isset( $msg[$error_slug] ) ? $msg[$error_slug] : false;
}
}
/**
* Move the content of the file to read to the given ppom file chunk.
*
* @param string $file_path_to_read The file to read.
* @param string $ppom_chunk_file_path The chunk file to write.
* @param string $mode The writing mode for the chunk file.
*
* @return false|string The error.
*/
function ppom_create_chunk_file( $file_path_to_read, $ppom_chunk_file_path, $mode ) {
$chunk_file = fopen( $ppom_chunk_file_path, $mode );
if ( $chunk_file ) {
// Read binary input stream and append it to temp file
$temp_file = fopen( $file_path_to_read, 'rb' );
if ( $temp_file ) {
while ( $buff = fread( $temp_file, 4096 ) ) {
fwrite( $chunk_file, $buff );
}
} else {
return UploadFileErrors::OPEN_INPUT;
}
fclose( $temp_file );
fclose( $chunk_file );
} else {
return UploadFileErrors::OPEN_OUTPUT;
}
return false;
}
function ppom_upload_file() {
header( 'Expires: Mon, 26 Jul 1997 05:00:00 GMT' );
header( 'Last-Modified: ' . gmdate( 'D, d M Y H:i:s' ) . ' GMT' );
header( 'Cache-Control: no-store, no-cache, must-revalidate' );
header( 'Cache-Control: post-check=0, pre-check=0', false );
header( 'Pragma: no-cache' );
$ppom_nonce = sanitize_key( $_REQUEST['ppom_nonce'] );
$file_upload_nonce_action = 'ppom_uploading_file_action';
if ( ! wp_verify_nonce( $ppom_nonce, $file_upload_nonce_action ) && apply_filters( 'ppom_verify_upload_file', true ) ) {
$response ['status'] = 'error';
$response ['message'] = __( 'You cannot upload the file at this time, please refresh the page and try again. Note that your current option choices will be reset.', 'woocommerce-product-addon' );
wp_send_json( $response );
}
// setting up some variables
$file_dir_path = ppom_get_dir_path();
$response = array();
if ( $file_dir_path == 'errDirectory' ) {
$response ['status'] = 'error';
$response ['message'] = __( 'Error while creating directory', 'woocommerce-product-addon' );
wp_send_json( $response );
}
$file_name = '';
if ( isset( $_REQUEST['name'] ) && $_REQUEST['name'] != '' ) {
$file_name = sanitize_file_name( $_REQUEST['name'] );
} elseif ( isset( $_REQUEST['_file'] ) && $_REQUEST['_file'] != '' ) {
$file_name = sanitize_file_name( $_REQUEST['_file'] );
}
$file_name = apply_filters( 'ppom_uploaded_filename', $file_name );
$additional_mime_types = apply_filters( 'ppom_custom_allowed_mime_types', array( 'ai' => 'application/postscript', 'eps' => 'application/postscript' ) );
$allowed_mime_types = array_merge( get_allowed_mime_types(), $additional_mime_types );
/* ========== Invalid File type checking ========== */
$file_type = wp_check_filetype_and_ext( $file_dir_path . $file_name, $file_name, $allowed_mime_types );
$extension = $file_type['ext'];
$default_restricted = 'php,php4,php5,php6,php7,phtml,exe,shtml';
$restricted_type = ppom_get_option( 'ppom_restricted_file_type', $default_restricted );
$restricted_type = explode( ',', $restricted_type );
if ( empty( $extension ) || in_array( strtolower( $extension ), $restricted_type ) ) {
$response ['status'] = 'error';
$response ['message'] = sprintf(
// translators: %s: the name of the extension.
__( 'File type not valid - %s', 'woocommerce-product-addon' ),
$extension
);
wp_send_json( $response );
}
/* ========== Invalid File type checking ========== */
$cleanupTargetDir = true; // Remove old files
$maxFileAge = 5 * 3600; // Temp file age in seconds
// 5 minutes execution time
@set_time_limit( 5 * 60 );
// Uncomment this one to fake upload time
// usleep(5000);
// Get parameters
$chunk = isset( $_REQUEST ['chunk'] ) ? intval( $_REQUEST ['chunk'] ) : 0;
$chunks = isset( $_REQUEST ['chunks'] ) ? intval( $_REQUEST ['chunks'] ) : 0;
// $file_name = isset ( $_REQUEST ["name"] ) ? sanitize_file_name($_REQUEST ["name"]) : '';
$file_path_thumb = $file_dir_path . 'thumbs';
$file_name = wp_unique_filename( $file_path_thumb, $file_name );
$file_name = strtolower( $file_name );
$file_ext = pathinfo( $file_name, PATHINFO_EXTENSION );
$original_name = $file_name;
$original_name = str_replace(".$file_ext", "", $original_name);
$file_hash = substr( hash('haval192,5', $file_name), 0, 8 ) . '-' . $ppom_nonce;
$file_name = str_replace( ".$file_ext", ".$file_hash.$file_ext", $file_name );
$file_path = $file_dir_path . $file_name;
// Make sure the fileName is unique but only if chunking is disabled
if ( $chunks < 2 && file_exists( $file_path ) ) {
$ext = strrpos( $file_name, '.' );
$file_name_a = substr( $file_name, 0, $ext );
$file_name_b = substr( $file_name, $ext );
$count = 1;
while ( file_exists( $file_dir_path . $file_name_a . '_' . $count . $file_name_b ) ) {
$count ++;
}
$file_name = $file_name_a . '_' . $count . $file_name_b;
$file_path = $file_dir_path . $file_name;
}
// Remove old temp files
if ( is_dir( $file_dir_path ) && ( $dir = opendir( $file_dir_path ) ) ) {
while ( ( $file = readdir( $dir ) ) !== false ) {
$tmp_file_path = $file_dir_path . $file;
// Remove temp file if it is older than the max age and is not the current file
if (
preg_match( '/\.part$/', $file ) &&
( filemtime( $tmp_file_path ) < time() - $maxFileAge ) &&
( $tmp_file_path != "$file_path.part" )
) {
@unlink( $tmp_file_path );
}
}
closedir( $dir );
} else {
die( UploadFileErrors::get_message_response( UploadFileErrors::MISSING_TEMP_FILE ) );
}
$http_content_type = '';
// Look for the content type header
if ( isset( $_SERVER ['HTTP_CONTENT_TYPE'] ) ) {
$http_content_type = $_SERVER ['HTTP_CONTENT_TYPE'];
}
if ( isset( $_SERVER ['CONTENT_TYPE'] ) ) {
$http_content_type = $_SERVER ['CONTENT_TYPE'];
}
$temp_file_name = isset( $_FILES['file']['tmp_name'] ) ? realpath( $_FILES['file']['tmp_name'] ) : '';
$is_multipart = ! empty( $http_content_type ) && false !== strpos( $http_content_type, 'multipart' );
if (
$is_multipart &&
( empty( $temp_file_name ) || ! is_uploaded_file( $temp_file_name ) )
) {
die( UploadFileErrors::get_message_response( UploadFileErrors::MISSING_TEMP_FILE ) );
}
$chunk_file_path = "$file_path.part";
$uploaded_file_path_to_read = $is_multipart ? $temp_file_name : 'php://input';
$error = ppom_create_chunk_file( $uploaded_file_path_to_read, $chunk_file_path, $chunk == 0 ? 'wb' : 'ab' );
if ( $is_multipart ) {
@unlink( $temp_file_name );
}
if ( $error ) {
die( UploadFileErrors::get_message_response( $error ) );
}
// Check if the file has been uploaded completely.
if ( ! $chunks || $chunk === $chunks - 1 ) {
// Give a unique name to prevent name collisions.
$file_name = ppom_create_unique_file_name( $original_name, $file_ext );
$unique_file_path = $file_dir_path . $file_name;
rename( $chunk_file_path, $unique_file_path );
$file_path = $unique_file_path;
$product_id = intval( $_REQUEST['product_id'] );
$data_name = sanitize_key( $_REQUEST['data_name'] );
$file_meta = ppom_get_field_meta_by_dataname( $product_id, $data_name );
// making thumb if images
if ( ppom_is_file_image( $file_path ) ) {
$thumb_size = ppom_get_thumbs_size();
$thumb_dir_path = ppom_create_image_thumb( $file_dir_path, $file_name, $thumb_size );
if ( file_exists( $thumb_dir_path ) ) {
list( $fw, $fh ) = getimagesize( $file_path );
$response = array(
'file_name' => $file_name,
'file_w' => $fw,
'file_h' => $fh,
'nocache' => time(),
'file_url' => ppom_get_dir_url() . $file_name,
'html' => ppom_uploaded_file_preview( $file_name, $file_meta ),
);
} else {
$response = array(
'file_name' => 'ThumbNotFound',
);
}
} else {
$response = array(
'file_name' => $file_name,
'file_w' => 'na',
'file_h' => 'na',
'html' => ppom_uploaded_file_preview( $file_name, $file_meta ),
);
}
}
// Return JSON-RPC response
// die ( '{"jsonrpc" : "2.0", "result" : '. json_encode($response) .', "id" : "id"}' );
die( json_encode( apply_filters( 'ppom_file_upload', $response, $file_type, $file_dir_path, $file_name ) ) );
}
// Deleting file
function ppom_delete_file() {
if ( ! isset( $_REQUEST ['file_name'] ) || ! isset( $_REQUEST['ppom_nonce'] ) ) {
echo __( 'Missing data.', 'woocommerce-product-addon' );
die( 0 );
}
$file_name = sanitize_file_name( $_REQUEST ['file_name'] );
$ppom_nonce = sanitize_key( $_REQUEST['ppom_nonce'] );
$file_nonce_action = 'ppom_deleting_file_action';
if ( ! wp_verify_nonce( $ppom_nonce, $file_nonce_action ) ) {
// translators: %s: the name of file
printf( __( 'Verification failed for file: %s', 'woocommerce-product-addon' ), $file_name );
die( 0 );
}
$dir_path = ppom_get_dir_path();
$file_path = $dir_path . $file_name;
$is_image = ppom_is_file_image( $file_path );
if ( file_exists( $file_path ) && unlink( $file_path ) ) {
if ( $is_image ) {
$thumb_path = $dir_path . 'thumbs/' . $file_name;
if ( file_exists( $thumb_path ) ) {
unlink( $thumb_path );
}
$cropped_image_path = $dir_path . 'cropped/' . $file_name;
if ( file_exists( $cropped_image_path ) ) {
unlink( $cropped_image_path );
}
}
// make sure file is removed
if ( ! file_exists( $file_path ) ) {
_e( 'File removed', 'woocommerce-product-addon' );
} else {
// translators: %s: the name of file
printf( __( 'Error while deleting file %s', 'woocommerce-product-addon' ), $file_path );
}
} else {
// translators: %s: the name of file
printf( __( 'The file %s does not exists.', 'woocommerce-product-addon' ), $file_path );
}
die( 0 );
}
// Creating thumb for image
function ppom_create_image_thumb( $file_path, $image_name, $thumb_size ) {
$thumb_size = intval( $thumb_size );
$wp_image = wp_get_image_editor( $file_path . $image_name );
$image_destination = $file_path . 'thumbs/' . $image_name;
$crop_thumb = apply_filters( 'ppom_crop_thumb_image', true, $image_name );
if ( ! is_wp_error( $wp_image ) ) {
$wp_image->resize( $thumb_size, $thumb_size, $crop_thumb );
$wp_image->save( $image_destination );
}
return $image_destination;
}
// Get file download url after payment
function ppom_get_file_download_url( $file_name, $order_id, $product_id ) {
$base_dir_path = ppom_get_dir_path() . $file_name;
$confirm_dir = 'confirmed/' . $order_id;
$confirmed_dir_path = ppom_get_dir_path( $confirm_dir );
$edits_dir_path = ppom_get_dir_path( 'edits' ) . $file_name;
$ppom_dir_url = ppom_get_dir_url();
$file_download_url_found = '';
$file_name = $product_id . '-' . $file_name;
// Check if file not yet moved to confirm then move it.
if ( file_exists( $base_dir_path ) ) {
if ( rename( $base_dir_path, $confirmed_dir_path . $file_name ) ) {
$file_download_url_found = $ppom_dir_url . 'confirmed/' . $order_id . '/' . $file_name;
}
} elseif ( file_exists( $confirmed_dir_path . $file_name ) ) {
$file_download_url_found = $ppom_dir_url . 'confirmed/' . $order_id . '/' . $file_name;
} elseif ( file_exists( $edits_dir_path ) ) {
$file_download_url_found = $ppom_dir_url . 'edits/' . $file_name;
}
return apply_filters( 'ppom_file_download_url', $file_download_url_found, $file_name );
}
// Generate uploaded file preview
function ppom_uploaded_file_preview( $file_name, $settings ) {
$field_type = $settings['type'];
$data_name = isset( $settings['data_name'] ) ? $settings['data_name'] : '';
$file_dir_path = ppom_get_dir_path();
$file_path = $file_dir_path . $file_name;
if ( ! file_exists( $file_path ) ) {
return '';
}
$is_image = ppom_is_file_image( $file_path );
$thumb_url = $file_meta = $file_tools = $html = '';
// $settings = json_decode(stripslashes($settings), true);
// ppom_pa($settings);
$file_id = 'thumb_' . time();
if ( $is_image ) {
list( $fw, $fh ) = getimagesize( $file_path );
$file_meta = $fw . '(w) x ' . $fh . '(h)';
$file_meta .= ' - ' . __( 'Size: ', 'woocommerce-product-addon' ) . ppom_get_filesize_in_kb( $file_name );
$thumb_url = ppom_get_dir_url( true ) . $file_name . '?nocache=' . time();
// large view
$image_url = ppom_get_dir_url() . $file_name . '?nocache=' . time();
$html .= '<div style="display:none" id="u_i_c_big_' . $file_id . '"><p id="thumb-thickbox"><img src="' . $image_url . '" /></p></div>';
// Loading Modals
$modal_vars = array(
'file_id' => $file_id,
'image_full' => $image_url,
'image_title' => $file_name,
);
ob_start();
ppom_load_template( 'v10/file-modals.php', $modal_vars );
$html .= ob_get_clean();
// Tools group
$file_tools .= '<div class="btn-group" role="group" aria-label="Tools" style="text-align: center; display: block;">';
// $file_tools .= '<a href="#" class="nm-file-tools btn btn-primary u_i_c_tools_del" title="'.__('Remove', "woocommerce-product-addon").'"><span class="fa fa-times"></span></a>';
$file_tools .= '<button class="nm-file-tools btn btn-primary u_i_c_tools_del" title="' . __( 'Remove', 'woocommerce-product-addon' ) . '">' . __( 'Delete', 'woocommerce-product-addon' ) . '</button>';
if ( apply_filters( 'ppom_show_image_popup', false ) ) {
$file_tools .= '<a href="#" data-toggle="modal" data-target="#modalFile' . esc_attr( $file_id ) . '" class="btn btn-primary"><span class="fa fa-expand"></span></a>';
}
$file_tools .= '</div>';
} else {
$file_meta .= __( 'Size: ', 'woocommerce-product-addon' ) . ppom_get_filesize_in_kb( $file_name );
$thumb_url = PPOM_URL . '/images/file.png';
// Tools group
$file_tools .= '<div class="btn-group" role="group" aria-label="Tools" style="text-align: center; display: block;">';
$file_tools .= '<button class="nm-file-tools btn btn-primary u_i_c_tools_del" title="' . __( 'Remove', 'woocommerce-product-addon' ) . '">' . __( 'Delete', 'woocommerce-product-addon' ) . '</button>';
$file_tools .= '</div>';
}
$short_name = ppom_files_trim_name( $file_name );
// $html .= '<table class="table table-bordered"><tr>';
// $html .= '<td style="vertical-align:middle">';
$html .= '<label style="margin-top: 8px;display: block;text-align: center;">
<div class="pre_upload_image collapse_dropdown_id" data-ppom-tooltip="ppom_tooltip" title="' . $short_name . '">
<img class="img-thumbnail" style="width:' . esc_attr( ppom_get_thumbs_size() ) . '" data-filename="' . esc_attr( $file_name ) . '" id="' . esc_attr( $file_id ) . '" src="' . esc_url( $thumb_url ) . '" />
</div>
</label>';
$html .= $file_tools;
// $html .= '</tr></table>';
// $html .= '<td class="nm-imagetools" style="padding-left: 5px; vertical-align:top"><h4>'.$short_name.'</h4><br>';
// $html .= '<span class="file-meta">'.$short_name.'</span><br>';
// $html .= '</td>';
return apply_filters( 'ppom_file_preview_html', $html, $file_name, $settings );
}
/**
* File name.
*
* @param string $file_name File name.
*
* @return string
*/
function ppom_files_trim_name( $file_name ) {
return $file_name;
}
// Save cropped image fro dataUrl to image
function ppom_save_data_url_to_image( $data, $file_name ) {
$data = base64_decode( preg_replace( '#^data:image/\w+;base64,#i', '', $data ) );
$dest_cropped = ppom_get_dir_path( 'cropped' ) . $file_name;
file_put_contents( $dest_cropped, $data );
}
// Building options array for croppie
function ppom_get_croppie_options( $settings ) {
// ppom_pa($settings);
$cropping_settigs = array();
$viewport_type = ! empty( $settings['viewport_type'] ) ? $settings['viewport_type'] : 'square';
$viewport_h = ! empty( $viewport['height'] ) ? $viewport['height'] : 300;
$viewport_w = ! empty( $viewport['width'] ) ? $viewport['width'] : 300;
$viewport_settings = ppom_get_viewport_settings( $settings );
// view height, width and type
$cropping_settigs['viewport'] = $viewport_settings;
// $cropping_settigs['viewport_all'] = $settings['options'];
// Boundary settings
$boundary = ! empty( $settings['boundary'] ) ? $settings['boundary'] : '200,200';
$boundary = explode( ',', $boundary );
$boundary_h = $boundary[0];
$boundary_w = $boundary[1];
if ( $viewport_type == 'circle' ) { // If circle then set same heigt and width
$boundary_w = $boundary_h;
}
// boundary height, width
$cropping_settigs['boundary'] = array(
'height' => $boundary_h,
'width' => $boundary_w,
);
$enable_exif = ( isset( $settings['enable_exif'] ) && $settings['enable_exif'] == 'on' ) ? true : false;
// exif
$cropping_settigs['enableExif'] = $enable_exif;
$enforce_boundary = ( isset( $settings['enforce_boundary'] ) && $settings['enforce_boundary'] == 'on' ) ? true : false;
// enforce boundary
$cropping_settigs['enforceBoundary'] = $enforce_boundary;
$enable_zoom = ( isset( $settings['enable_zoom'] ) && $settings['enable_zoom'] == 'on' ) ? true : false;
// show zoomer
$cropping_settigs['enableZoom'] = $enable_zoom;
$show_zoomer = ( isset( $settings['show_zoomer'] ) && $settings['show_zoomer'] == 'on' ) ? true : false;
// show zoomer
$cropping_settigs['showZoomer'] = $show_zoomer;
return apply_filters( 'ppom_croppie_options', $cropping_settigs, $settings );
}
function ppom_get_viewport_settings( $settings ) {
$viewport_type = ! empty( $settings['viewport_type'] ) ? $settings['viewport_type'] : 'square';
$first_viewport_size = array();
if ( isset( $settings['options'] ) ) {
foreach ( $settings['options'] as $option => $viewport ) {
if ( ! isset( $viewport['width'] ) ) {
continue;
}
$first_viewport_size['width'] = $viewport['width'];
$first_viewport_size['height'] = $viewport['height'];
break;
}
}
$the_viewport = array(
'width' => 300,
'height' => 300,
);
if ( ! empty( $first_viewport_size['width'] ) && ! empty( $first_viewport_size['height'] ) ) {
$the_viewport = array(
'width' => $first_viewport_size['width'],
'height' => $first_viewport_size['height'],
);
}
$the_viewport['type'] = $viewport_type;
return $the_viewport;
}
/*
* removing ununsed order files
*/
function ppom_files_removed_unused_images() {
$dir = ppom_get_dir_path();
if ( is_dir( $dir ) && apply_filters( 'ppom_remove_unused_images', true ) ) {
$dir_handle = opendir( $dir );
while ( $file = readdir( $dir_handle ) ) {
$file_path = $dir . $file;
if ( is_file( $file_path ) ) {
// Get Files Created Date
$file_created_date = date( 'Y-m-d H:i:s.', filemtime( $file_path ) );
$today = date( 'Y-m-d H:i:s' );
$day_count = ppom_files_uploaded_days_count( $file_created_date, $today );
if ( $day_count > 7 ) {
@unlink( $file_path );
}
}
}
}
closedir( $dir_handle );
}
function ppom_files_uploaded_days_count( $date1, $date2 ) {
$diff = strtotime( $date2 ) - strtotime( $date1 );
return abs( round( $diff / 86400 ) );
}
// Return file name with prefix product id
function ppom_file_get_name( $file_name, $product_id, $cart_item = null ) {
$new_file_name = "{$product_id}-{$file_name}";
return apply_filters( 'ppom_file_name_prefix', $new_file_name, $file_name, $product_id, $cart_item );
}