/var/www/(Del)hsihk.com/wp-content/plugins/backupbuddy/lib/zipbuddy/zbzipproc.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
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
<?php
/**
 *    pluginbuddy_zbzipproc Class
 *
 *  Extends the zip capability core class with proc specific capability
 *    
 *    Version: 1.0.0
 *    Author:
 *    Author URI:
 *
 *    @param        $parent        object        Optional parent object which can provide functions for reporting, etc.
 *    @return        null
 *
 */
if ( !class_exists"pluginbuddy_zbzipproc" ) ) {

    class 
pluginbuddy_zbzipproc extends pluginbuddy_zbzipcore {
    
        
// Constants for file handling
        
const ZIP_LOG_FILE_NAME        'temp_zip_proc_log.txt';
        const 
ZIP_ERRORS_FILE_NAME     'last_proc_errors.txt';
        const 
ZIP_WARNINGS_FILE_NAME   'last_proc_warnings.txt';
        const 
ZIP_OTHERS_FILE_NAME     'last_proc_others.txt';
        const 
ZIP_EXCLUSIONS_FILE_NAME 'exclusions.txt';
        const 
ZIP_INCLUSIONS_FILE_NAME 'inclusions.txt';
    
        
// Possible executable path sets
        
const DEFAULT_EXECUTABLE_PATHS '/usr/local/bin::/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/bin';
        const 
WINDOWS_EXECUTABLE_PATHS '';
        
        
/**
         * method tag used to refer to the method and entities associated with it such as class name
         * 
         * @var string
         */
        
public static $_method_tag 'proc';
        
        
/**
         * This tells us whether this method is regarded as a "compatibility" method
         * 
         * @var bool
         */
        
public static $_is_compatibility_method false;
        
        
/**
         * This tells us the dependencies of this method so they can be check to see if the method can be supported
         * 
         * @var array
         */
        
public static $_method_dependencies = array( 'classes' => array(),
                                                       
'functions' => array( 'proc_open''proc_close''proc_get_status''proc_terminate' ),
                                                       
'extensions' => array(),
                                                       
'files' => array(),
                                                       
'check_func' => 'check_method_dependencies_static'
                                                    
);
            
        
/**
         * 
         * get_method_tag_static()
         *
         * Get the static method tag in a static context
         *
         * @return        string    The method tag
         *
         */
        
public static function get_method_tag_static() {
        
            return 
self::$_method_tag;
            
        }

        
/**
         * 
         * get_is_compatibility_method_static()
         *
         * Get the compatibility method indicator in a static context
         *
         * @return        bool    True if is a compatibility method
         *
         */
        
public static function get_is_compatibility_method_static() {
        
            return 
self::$_is_compatibility_method;
            
        }

        
/**
         * 
         * get_method_dependencies_static()
         *
         * Get the method dependencies array in a static context
         *
         * @return        array    The dependencies of the method that is requires to be a supported method
         *
         */
        
public static function get_method_dependencies_static() {
        
            return 
self::$_method_dependencies;
            
        }
        
        
/**
         * 
         * check_method_dependencies_static()
         *
         * Allows additional method dependency checks beyond the standard in a static context
         *
         * @return        bool    True if additional dependency checks passed
         *
         */
        
public static function check_method_dependencies_static() {
        
            
$result false;
            
            
// Need to additionally check the OS - need *nix type at least
                
            // Use UC for ease - this _should not? cause any ambiguity
            
$os_name strtoupperPHP_OS );
     
            
// Currently we'll assume anything that doesn't look like Windows is *nix based
            
if ( !( substr$os_name0) === 'WIN') ) {
            
                
// We're ok as meet dependency that this isn't Windows based OS
                
$result true;
            
            }    
            
            return 
$result;
        
        }

        
/**
         *    __construct()
         *    
         *    Default constructor.
         *    
         *    @param        reference    &$parent        [optional] Reference to the object containing the status() function for status updates.
         *    @return        null
         *
         */
        
public function __construct( &$parent NULL ) {

            
parent::__construct$parent );
            
            
// Override some of parent defaults
            
$this->_method_details'attr' ] = array_merge$this->_method_details'attr' ],
                                                            array( 
'name' => 'Proc Method',
                                                                     
'compatibility' => self::$_is_compatibility_method )
                                                             );

            
// Now set up the default executable paths (not merging but setting)
            // Note: Parent constructor set the os type value
            
switch ( $this->get_os_type() ) {
            
                case 
self::OS_TYPE_NIX:
                
                    
$this->set_executable_pathsexplodePATH_SEPARATORself::DEFAULT_EXECUTABLE_PATHS ), false);
                    break;
                    
                case 
self::OS_TYPE_WIN:
                    
                    
$this->set_executable_pathsexplodePATH_SEPARATORself::WINDOWS_EXECUTABLE_PATHS ), false);
                    
                    
// Need to merge in ABSPATH here because we cannot set that in the defaults - it is prepended
                    
$this->set_executable_paths( array( rtrimABSPATHDIRECTORY_SEPARATOR ) ) );
                    break;
                    
                default:
                    
// Log error and leave paths empty
                    
pb_backupbuddy::status'details'sprintf__('Unknown OS type (%1$s) could not set executable paths','it-l10n-backupbuddy' ), $this->get_os_type() ) );
                    
            }
            
        }
        
        
/**
         *    __destruct()
         *    
         *    Default destructor.
         *    
         *    @return        null
         *
         */
        
public function __destruct( ) {
        
            
parent::__destruct();

        }
        
        
/**
         *    get_method_tag()
         *    
         *    Returns the (static) method tag
         *    
         *    @return        string The method tag
         *
         */
        
public function get_method_tag() {
        
            return 
self::$_method_tag;
            
        }
        
        
/**
         *    get_is_compatibility_method()
         *    
         *    Returns the (static) is_compatibility_method boolean
         *    
         *    @return        bool
         *
         */
        
public function get_is_compatibility_method() {
        
            return 
self::$_is_compatibility_method;
            
        }
        
        
/**
         *    get_command_path()
         *    
         *    This returns the path for the requested command from the method details
         *    If not found then will return empty string which is the same as if the
         *    command is being accessed through PATH
         *    
         *    @return        string                Path for command, trimmed - may be empty
         *
         */
        
protected function get_command_path$command self::COMMAND_UNKNOWN_PATH ) {
        
            
$result '';
            
            switch( 
$command ) {
            
                case 
self::COMMAND_ZIP_PATH:
                
                    
// If there is a common path use it otherwise look for the command specific path
                    
if ( isset( $this->_method_details'param' ][ 'path' ] ) ) {
                    
                        
$result trim$this->_method_details'param' ][ 'path' ] );
                        
                    } elseif ( isset( 
$this->_method_details'param' ][ 'zip' ][ 'path' ] ) ) {
                    
                        
$result trim$this->_method_details'param' ][ 'zip' ][ 'path' ] );
                    }
                    
                    break;
                
                case 
self::COMMAND_UNZIP_PATH:
                
                    
// If there is a common path use it otherwise look for the command specific path
                    
if ( isset( $this->_method_details'param' ][ 'path' ] ) ) {
                    
                        
$result trim$this->_method_details'param' ][ 'path' ] );
                        
                    } elseif ( isset( 
$this->_method_details'param' ][ 'unzip' ][ 'path' ] ) ) {
                    
                        
$result trim$this->_method_details'param' ][ 'unzip' ][ 'path' ] );
                    }
                    
                    break;
                
                default:
                
                    
// Return the empty string default for now
            
            
}

            return 
$result;
        
        }
        
        
/**
         *    set_zip_version()
         *    
         *    This sets the zip version information in the method details
         *    Note: pre-v3 zip running "zip -v" will not produce the required output because
         *    there is no tty attached (when running through exec() or equivalent), instead
         *    it will produce a zip file.Currently we'll just detect that and set the version
         *    as 2.0 and not set the info.
         *    TODO: We could parse the zip file to get the version but also considering doing
         *    that in the is_available() test where we already created a zip file.
         *    TODO: Consider testing if method can zip and only then run the test
         *    TODO: This needs refactoring to make it cleaner
         *    
         *    @param        int        $major        Value to use if none found or override true
         *    @param        int        $minor        Value to use if none found or override true
         *    @param        bool    $override    True to use passed in value(s) regardless
         *    @return        object                This object reference
         *
         */
        
protected function set_zip_version$major 0$minor 0$override false ) {
        
            
$exitcode 127;
            
$output = array();
            
$zippath '';
            
$command '';
            
$matches = array();
            
$info '';
        
            
// If we have been given a value to use with override then just use it
            
if ( ( ( is_int$major) ) && ( $major ) && ( is_int$minor ) ) ) && ( true === $override ) ) {
            
                
// Set the given version regardless
                
$this->_method_details'param' ][ 'zip' ][ 'version' ] = array( 'major' => $major'minor' => $minor );
                return 
$this
            
            }
            
            
// Get the command path for the zip command - should return a trimmed string
            
$zippath $this->get_command_pathself::COMMAND_ZIP_PATH );
            
            
// Add the trailing slash if required
            
$command $this->slashify$zippath ) . 'zip -v';
            
            
//@exec( $command, $output, $exitcode );
            
            // Get a temporary file to use for command output
            
$outfile_name tempnamsys_get_temp_dir(), uniqid'pb_' ) );
            
            
// Make sure we only do this if we have a file we can write to
            
if ( is_string$outfile_name ) && is_writable$outfile_name ) ) { 
            
                
$descriptorspec = array(
                    
=> array( "pipe""r" ),
                    
=> array( "file"$outfile_name"w" ),
                    
=> array( "file""/dev/null""a" )    
                );
                
                
$process NULL// Maybe it doesn't work
                
                
$process = @proc_open$command$descriptorspec$pipes );
                
                if ( 
is_resource$process ) ) {
                
                    
fclose$pipes[0] ); // Never want to send input so just close it
                    
                    
$pstatus proc_get_status$process );
                    
                    
// Make sure we only do 4 loop max
                    
$count 0;
                    
                    while ( 
true == $pstatus'running'] && ( $count++ < ) ) {
                        
usleep500000 );
                        
$pstatus proc_get_status$process );
                    }
                    
                    if ( 
true === $pstatus'running' ] ) {
                        
// Hmm, shouldn't still be running, try to kill it and move on
                        
@proc_terminate$process );
                        
                        
// Get status again and see if now not running, if so get exit code
                        
                    
} else {
                    
                        
// Process finished normally so get exit code for possible use
                        
$exitcode $pstatus'exitcode' ];
                        
                    }
                    
                    
// Ignore any close issue, shouldn't get stuck here but it is possible if
                    // we process was still running and we failed to terminate it - tricky one
                    // to overcome but _should_ be rare
                    
@proc_close$process );
                    
                }
                
            }
            
            
// Note: if we couldn't create a process just fall through silently
            
            
if ( === $exitcode ) {
            
                
// Put the file content into an array
                
try {
                
                    
$outfile = new SplFileObject$outfile_name"rb" );
                    
                    while( !
$outfile->eof() ) {
                    
                        
// Need to trim line endings because of imploding with PHP_EOL later
                        
$output[] = rtrim$outfile->current() );
                        
$outfile->next();
                    
                    }
                    
                    unset( 
$outfile );
                    
                } catch ( 
Exception $e ) {
                
                    
// Maybe the file didn't exist for some reason?
                    // In any case just fall through silently
                    
                
}
            
                
// Should be good output to try at least
                // If this has a zip file signature then it must be pre-v3 zip
                
$z_data unpack'Vsig'$output[0] );
            
                if ( 
0x04034b50 == $z_data'sig' ] ) {
                
                    
// TODO: Consider that we could use unzip -Z -v on this file and parse the
                    // output for the Central Dir info on what version of zip created the file.
                    // Currently, where this function is called, we don't know if we have unzip
                    // so we can't assume - with a rejig we could call this later and use unzip
                    // if available.
                    // Can't tell which 2.X version, cannot populate $info
                    
$major 2;
                    
$minor 0;
                    
                } else {
                
                    
// Doesn't appear to be a zip file so should be version info
                    // Expect format like: This is Zip 3.0 (July 5th 2008)...
                    //                     This is Zip 3.1c BETA (June 22nd 2010)...
                    // The match should take only the major/minor digits and ignore any following alpha
                    // May extend to capture the alpha and also whether BETA indicated but not currently
                    // required.
                    
foreach ( $output as $line ) {
    
                        if ( 
preg_match'/^\s*(this)\s+(is)\s+(zip)\s+(?P<major>\d)\.(?P<minor>\d+)/i'$line$matches ) ) {
                        
                            
$major = (int)$matches'major' ];
                            
$minor = (int)$matches'minor' ];
                            break;
                        
                        }
                    
                    }
                    
                    
// If we didn't match a version then suspect this is still not valid version info
                    
if ( !empty( $matches ) ) {
                    
                        
// Now create the info string
                        // Note: not worth compressing as that gives a larger string after converting
                        // from binary to hex format for saving
                        
$info implodePHP_EOL$output );
                        
$this->_method_details'param' ][ 'zip' ][ 'info' ] = $info;
                    
                    }
                
                }
                
            }
            
            
// Now use either what we got or what we were given...
            
if ( ( is_int$major) ) && ( $major ) && ( is_int$minor ) ) ) {
            
                
// Set the given version regardless
                
$this->_method_details'param' ][ 'zip' ][ 'version' ] = array( 'major' => $major'minor' => $minor );
            
            }
            
            
// Catch-all cleanup of the output file
            
if ( @file_exists$outfile_name ) ) {
            
                @
unlink$outfile_name );
                
            }
            
            return 
$this
        
        }
        
        
/**
         *    get_zip_version()
         *    
         *    This gets the zip version as an array of major/minor or returns false if not known
         *    TODO: Pass parameter to specify what format to return in
         *    
         *    @return        array|bool                Returns array(major, minor) or false if not known
         *
         */
        
protected function get_zip_version() {
        
            
$result $this->_method_details'param' ][ 'zip' ][ 'version' ];
            
            if ( 
=== $result'major' ] ) {
            
                
$result false;
                
            }
            
            return 
$result;
            
        }
        
        
/**
         *    set_unzip_version()
         *    
         *    This sets the zip version information in the method details
         *    TODO: This needs refactoring to make it cleaner
         *    
         *    @param        int        $major        Value to use if none found or override true
         *    @param        int        $minor        Value to use if none found or override true
         *    @param        bool    $override    True to use passed in value(s) regardless
         *    @return        object                This object reference
         *
         */
        
protected function set_unzip_version$major 0$minor 0$override false ) {
        
            
$exitcode 127;
            
$output = array();
            
$zippath '';
            
$command '';
            
$matches = array();
            
$info '';
        
            
// If we have been given a value to use with override then just use it
            
if ( ( ( is_int$major) ) && ( $major ) && ( is_int$minor ) ) ) && ( true === $override ) ) {
            
                
// Set the given version regardless
                
$this->_method_details'param' ][ 'unzip' ][ 'version' ] = array( 'major' => $major'minor' => $minor );
                return 
$this
            
            }
            
            
// Get the command path for the unzip command - should return a trimmed string
            
$zippath $this->get_command_pathself::COMMAND_UNZIP_PATH );
            
            
// Add the trailing slash if required
            
$command $this->slashify$zippath ) . 'unzip -v';
            
            
//@exec( $command, $output, $exitcode );
            
            // Get a temporary file to use for command output
            
$outfile_name tempnamsys_get_temp_dir(), uniqid'pb_' ) );
            
            
// Make sure we only do this if we have a file we can write to
            
if ( is_string$outfile_name ) && is_writable$outfile_name ) ) { 
            
                
$descriptorspec = array(
                    
=> array( "pipe""r" ),
                    
=> array( "file"$outfile_name"w" ),
                    
=> array( "file""/dev/null""a" )    
                );
                
                
$process NULL// Maybe it doesn't work
                
                
$process = @proc_open$command$descriptorspec$pipes );
                
                if ( 
is_resource$process ) ) {
                
                    
fclose$pipes[0] ); // Never want to send input so just close it
                    
                    
$pstatus proc_get_status$process );
                    
                    
// Make sure we only do 4 loop max
                    
$count 0;
                    
                    while ( 
true == $pstatus'running'] && ( $count++ < ) ) {
                        
usleep500000 );
                        
$pstatus proc_get_status$process );
                    }
                    
                    if ( 
true === $pstatus'running' ] ) {
                        
// Hmm, shouldn't still be running, try to kill it and move on
                        
@proc_terminate$process );
                        
                        
// Get status again and see if now not running, if so get exit code
                        
                    
} else {
                    
                        
// Process finished normally so get exit code for possible use
                        
$exitcode $pstatus'exitcode' ];
                        
                    }
                    
                    
// Ignore any close issue, shouldn't get stuck here but it is possible if
                    // we process was still running and we failed to terminate it - tricky one
                    // to overcome but _should_ be rare
                    
@proc_close$process );
                    
                }
                
            }
            
            
// Note: if we couldn't create a process just fall through silently
            
            
if ( === $exitcode ) {
            
                
// Put the file content into an array
                
try {
                
                    
$outfile = new SplFileObject$outfile_name"rb" );
                    
                    while( !
$outfile->eof() ) {
                    
                        
// Need to trim line endings because of imploding with PHP_EOL later
                        
$output[] = rtrim$outfile->current() );
                        
$outfile->next();
                    
                    }
                    
                    unset( 
$outfile );
                    
                } catch ( 
Exception $e ) {
                
                    
// Maybe the file didn't exist for some reason?
                    // In any case just fall through silently
                    
                
}
            
                
// Should be good output to try at least
                
foreach ( $output as $line ) {

                    if ( 
preg_match'/^\s*(unzip)\s+(?P<major>\d)\.(?P<minor>\d+)/i'$line$matches ) ) {
                    
                        
$major = (int)$matches'major' ];
                        
$minor = (int)$matches'minor' ];
                        break;
                    
                    }
                
                }
                
                
// Now create the info string
                // Note: not worth compressing as that gives a larger string after converting
                // from binary to hex format for saving
                
$info implodePHP_EOL$output );
                
$this->_method_details'param' ][ 'unzip' ][ 'info' ] = $info;
                
            }
            
            
// Now use either what we got or what we were given...
            
if ( ( is_int$major) ) && ( $major ) && ( is_int$minor ) ) ) {
            
                
// Set the given version regardless
                
$this->_method_details'param' ][ 'unzip' ][ 'version' ] = array( 'major' => $major'minor' => $minor );
            
            }
            
            
// Catch-all cleanup of the output file
            
if ( @file_exists$outfile_name ) ) {
            
                @
unlink$outfile_name );
                
            }
            
            return 
$this
        
        }
        
        
/**
         *    get_unzip_version()
         *    
         *    This gets the unzip version as an array of major/minor or returns false if not known
         *    TODO: Pass parameter to specify what format to return in
         *    
         *    @return        array|bool                Returns array(major, minor) or false if not known
         *
         */
        
protected function get_unzip_version() {
        
            
$result $this->_method_details'param' ][ 'unzip' ][ 'version' ];
            
            if ( 
=== $result'major' ] ) {
            
                
$result false;
                
            }
            
            return 
$result;
            
        }
        
        
/**
         *    get_zip_supports_logfile()
         *    
         *    This returns true if the zip in use is able to support logfile usage for
         *    logging progress of zip operation
         *    
         *    @return        bool                True if logfile supported, otherwise false
         *
         */
        
protected function get_zip_supports_log_file() {
        
            
$result false;
            
            
// Currently check based just on the zip major version
            // TODO: decide if better to respond based on the available options
            
if ( <= $this->_method_details'param' ][ 'zip' ][ 'version' ][ 'major' ] ) {
            
                
$result true;
                
            }
            
            return 
$result;
        
        }
        
        
/**
         *    is_available()
         *    
         *    A function that tests for the availability of the specific method and its available modes. Will test for
         *  multiple modes (zip & unzip) and only return false if neither is available. Actual available modes will
         *  be indicated in the method attributes.
         *
         *  Note: in this case as the zip and unzip capabilities are provided by external commands we need to test
         *  for the availability of both of them and set attributes accordingly
         *    
         *    @param        string    $tempdir    Temporary directory to use for any test files (must be writeable)
         *    @return        bool                True if the method is available for at least one mode, false otherwise
         *
         */
        
public function is_available$tempdir ) {
        
            
$result false;
            
            switch ( 
$this->get_os_type() ) {
                case 
self::OS_TYPE_NIX:
                    
$result $this->is_available_linux$tempdir );
                    break;
                case 
self::OS_TYPE_WIN:
                    
$result $this->is_available_windows$tempdir );
                    break;
                default:
                    
$result false;
            }
            
            return 
$result;
                          
        }

        
/**
         *    is_available_windows()
         *    
         *    A function that tests for the availability of the specific method and its available modes. Will test for
         *  multiple modes (zip & unzip) and only return false if neither is available. Actual available modes will
         *  be indicated in the method attributes.
         *    
         *    @param        string    $tempdir    Temporary directory to use for any test files (must be writeable)
         *    @return        bool                True if the method is available for at least one mode, false otherwise
         *
         */
        
protected function is_available_windows$tempdir ) {
        
            
// Just return false silently otherwise we'd be logging repeatedly...
            //pb_backupbuddy::status( 'details', $this->_method_tag . __(' method not supported on Windows.','it-l10n-backupbuddy' ) );
            
return false;
            
        }
        
        
/**
         *    is_available_linux()
         *    
         *    A function that tests for the availability of the specific method and its available modes. Will test for
         *  multiple modes (zip & unzip) and only return false if neither is available. Actual available modes will
         *  be indicated in the method attributes.
         *    
         *    @param        string    $tempdir    Temporary directory to use for any test files (must be writeable)
         *    @return        bool                True if the method is available for at least one mode, false otherwise
         *
         */
        
protected function is_available_linux$tempdir ) {
        
            
$result false;
            
$pending_result false;
            
$found_zip false;
            
$pstatus = array();
            
            
// This is a safety value in case something odd happens
            
$exec_exit_code 127;
            
            if ( 
function_exists'proc_open' ) && function_exists'proc_close' ) &&
                 
function_exists'proc_get_status' ) && function_exists'proc_terminate' ) ) {
                 
                
$candidate_paths $this->_executable_paths;
                
                
// We are searching for zip using the list of possible paths
                
while ( ( false == $found_zip ) && ( !empty( $candidate_paths ) ) ) {
                
                    
// Make sure it is clean of leading/trailing whitespace
                    
$path trimarray_shift$candidate_paths ) );
                    
                    
pb_backupbuddy::status'details'__'Trying executable path for zip proc:','it-l10n-backupbuddy' ) . ' `' $path '`.' );

                    
$test_file $tempdir 'temp_test_' uniqid() . '.zip';
                    
                    
$command 'exec ' $this->slashify$path ) . 'zip "' $test_file '" "' __FILE__ '"';
    
                    
$descriptorspec = array(
                        
=> array( "pipe""r" ),
                        
=> array( "file""/dev/null""a" ),
                        
=> array( "file""/dev/null""a" )    
                    );
                    
                    
$process NULL// Maybe it doesn't work
                    
                    
$process = @proc_open$command$descriptorspec$pipes );
                    
                    if ( 
is_resource$process ) ) {
                    
                        
fclose$pipes[0] ); // Never want to send input so just close it
                        
                        
$pstatus proc_get_status$process );
                        
                        
// Make sure we only do 4 loop max
                        
$count 0;
                        
                        while ( 
true == $pstatus'running'] && ( $count++ < ) ) {
                            
usleep500000 );
                            
$pstatus proc_get_status$process );
                        }
                        
                        if ( 
true === $pstatus'running' ] ) {
                            
// Hmm, shouldn't still be running, try to kill it and move on
                            
@proc_terminate$process );
                            
                            
// Get status again and see if now not running, if so get exit code
                            
                        
} else {
                        
                            
// Process finished normally so get exit code for possible use
                            
$exec_exit_code $pstatus'exitcode' ];
                            
                        }
                        
                        
// Ignore any close issue, shouldn't get stuck here but it is possible if
                        // we process was still running and we failed to terminate it - tricky one
                        // to overcome but _should_ be rare
                        
@proc_close$process );
                        
                        
// Must have both a file and a success exit code to consider this successful
                        
if ( @file_exists$test_file ) && ( === $exec_exit_code ) ) {
                
                            
// Set the parameter to be remembered (note: path without trailing slash)
                            
$this->_method_details'param' ][ 'zip' ][ 'path' ] = $path;
                            
                            
// The zip operation was successful so we can at least zip and archive
                            
$this->_method_details'attr' ][ 'is_zipper' ] = true;
                            
$this->_method_details'attr' ][ 'is_archiver' ] = true;
                            
                            
pb_backupbuddy::status'details'__('Proc test (zip) PASSED.','it-l10n-backupbuddy' ) );
                            
$result true;
                    
                            
// TODO: Consider parsing zip file to get version of zip that created it. This may seem odd
                            // but pre-v3 zip it's not possible to run "zip -v" through exec() or equivalent as it only
                            // provides the required output if a tty is attached, otherwise it creates a zip file. We
                            // might consider parsing the created zip file but as we have already created one here we
                            // might as well use it
                            
                            // This will break us out of the loop
                            
$found_zip true;
                            
                        } else {
                    
                            
// Deal with the possible failure causes
                            
if ( !@file_exists$test_file ) ) {
                            
                                
pb_backupbuddy::status'details'__('Proc test (zip) FAILED: Test zip file not found.','it-l10n-backupbuddy' ) );
                            
                            }
                            
                            if ( 
=== $exec_exit_code ) {
                            
                                
$error_string $exec_exit_code;
                                
pb_backupbuddy::status'details'__('Proc test (zip) FAILED: proc Exit Code: ','it-l10n-backupbuddy' ) . $error_string );
                                
                            }
                            
                            
$result false;
                    
                        }
                        
                        
// Remove the test zip file if it was created
                        
if ( @file_exists$test_file ) ) {
                        
                            if ( !@
unlink$test_file ) ) {
                    
                                
pb_backupbuddy::status'details'sprintf__('Proc test (zip) unable to delete test file (%s)','it-l10n-backupbuddy' ), $test_file ) );
                        
                            }
                    
                        }
                        
                    } else {
                    
                        
pb_backupbuddy::status'details'__('Proc test FAILED: Unable to create test zip file process.','it-l10n-backupbuddy' ) );
                        
$result false;
                    
                    }
                
                }
                
                if ( 
false == $found_zip ) {
                
                    
// Never found zip on any candidate path
                    
pb_backupbuddy::status'details'__('Proc test Failed: Unable to find zip executable on any specified path.','it-l10n-backupbuddy' ) );
                    
$result false;
                                        
                }
                      
                
// Remember zip result and reset for unzip test
                
$pending_result $result;
                
$result false;
                
                
// See if we can determine zip version and possibly available options. This can help us
                // determine how to execute operations such as creating a zip file
                
if ( true === $found_zip ) {
                
                    
$this->set_zip_version();
                
                }
                
                
// Reset the candidate paths for a full search for unzip
                
$candidate_paths $this->_executable_paths;
                          
                
// Reset the safety value in case
                
$exec_exit_code 127;
                
                
// New search
                
$found_zip false;
                
                
// Need to create a test zip file - here's one I prepared earlier
                // containing the one file test.txt (with content "Hello World")
                // Can use this for all case tests and delete at end
                
$test_file $tempdir 'temp_test_' uniqid() . '.zip';
                @
file_put_contents$test_filebase64_decode"UEsDBAoAAAAAAC8ELUHj5ZWwDAAAAAwAAAAIABwAdGVzdC50eHRVVAkAA8obUVDjG1FQdXgLAAEE+AEAAAQUAAAASGVsbG8gV29ybGQKUEsBAh4DCgAAAAAALwQtQePllbAMAAAADAAAAAgAGAAAAAAAAQAAAKSBAAAAAHRlc3QudHh0VVQFAAPKG1FQdXgLAAEE+AEAAAQUAAAAUEsFBgAAAAABAAEATgAAAE4AAAAAAA==" ) );

                
// We are searching for zip using the list of possible paths
                
while ( ( false == $found_zip ) && ( !empty( $candidate_paths ) ) ) {
                
                    
// Make sure it is clean of leading/trailing whitespace
                    
$path trimarray_shift$candidate_paths ) );

                    
pb_backupbuddy::status'details'__'Trying executable path for unzip:','it-l10n-backupbuddy' ) . ' `' $path '`.' );
                    
                    
$command 'exec ' $this->slashify$path ) . 'unzip -qt ' ' "' $test_file '" "test.txt"';
    
                    
$descriptorspec = array(
                        
=> array( "pipe""r" ),
                        
=> array( "file""/dev/null""a" ),
                        
=> array( "file""/dev/null""a" )    
                    );
                    
                    
$process NULL// Maybe it doesn't work
                    
                    
$process = @proc_open$command$descriptorspec$pipes );
                    
                    if ( 
is_resource$process ) ) {
                    
                        
fclose$pipes[0] ); // Never want to send input so just close it
                        
                        
$pstatus proc_get_status$process );
                        
                        
// Make sure we only do 4 loop max
                        
$count 0;
                        
                        while ( 
true == $pstatus'running'] && ( $count++ < ) ) {
                            
usleep500000 );
                            
$pstatus proc_get_status$process );
                        }
                        
                        if ( 
true === $pstatus'running' ] ) {
                            
// Hmm, shouldn't still be running, try to kill it and move on
                            
@proc_terminate$process );
                            
                            
// Get status again and see if now not running, if so get exit code
                            
                        
} else {
                        
                            
// Process finished normally so get exit code for possible use
                            
$exec_exit_code $pstatus'exitcode' ];
                            
                        }
                        
                        
// Ignore any close issue, shouldn't get stuck here but it is possible if
                        // we process was still running and we failed to terminate it - tricky one
                        // to overcome but _should_ be rare
                        
@proc_close$process );
                        
                        if ( 
$exec_exit_code == ) {
                        
                            
// Set the parameter to be remembered (note: path without trailing slash)
                            
$this->_method_details'param' ][ 'unzip' ][ 'path' ] = $path;
                            
                            
// The unzip operation was successful so we can at least unzip
                            // Note: we do not want to use this for checking yet    
                            
$this->_method_details'attr' ][ 'is_unzipper' ] = true;
                        
                            
pb_backupbuddy::status'details'__('Proc test (unzip) PASSED.','it-l10n-backupbuddy' ) );
                            
$result true;
                            
                            
// This will break us out of the loop
                            
$found_zip true;
                            
                        } else {
                        
                            
$error_string $exec_exit_code;
                            
pb_backupbuddy::status'details'__('Proc test (unzip) FAILED: Test unzip file test failed.','it-l10n-backupbuddy' ) );
                            
pb_backupbuddy::status'details'__('Proc Exit Code: ','it-l10n-backupbuddy' ) . $error_string );
                            
$result false;
                        
                        }
                        
                    } else {
                    
                        
pb_backupbuddy::status'details'__('Proc test FAILED: Unable to create test unzip file process.','it-l10n-backupbuddy' ) );
                        
$result false;
                    
                    }
                
                }
                
                
// Remove the test zip file if it was created
                
if ( @file_exists$test_file ) ) {
                
                    if ( !@
unlink$test_file ) ) {
            
                        
pb_backupbuddy::status'details'sprintf__('Proc test (unzip) unable to delete test file (%s)','it-l10n-backupbuddy' ), $test_file ) );
                
                    }
            
                }
            
                
// If we didn't find unzip anywhere (or maybe found it but it failed) then log it
                
if ( false == $found_zip ) {
                
                    
pb_backupbuddy::status'details'__('Proc test Failed: Unable to find unzip executable on any specified path.','it-l10n-backupbuddy' ) );
                    
$result false;
                                        
                } else {
                
                    
// See if we can determine unzip version and possibly available options. This can help us
                    // determine how to execute operations such as unzipping a file
                    
                    
$this->set_unzip_version();
                
                }
                
            } else {
            
                
pb_backupbuddy::status'details'__('Proc test FAILED: One or more required function do not exist.','it-l10n-backupbuddy' ) );
                
$result false;
          
            }
              
              
// If we found both zip and unzip then compare the paths and if the same then set the common path
              
if ( $pending_result && $result ) {
              
                  if ( 
$this->_method_details'param' ][ 'zip' ][ 'path' ] === $this->_method_details'param' ][ 'unzip' ][ 'path' ] ) {
                  
                      
$this->_method_details'param' ][ 'path' ] = $this->_method_details'param' ][ 'zip' ][ 'path' ];
                      
                  }
                  
              }
              
              
// Our result will be true if we found either or both of zip and unzip
              // The method attributes will tell which is available
              
$result = ( $pending_result || $result );
              
              return 
$result;
              
        }
        
        
/**
         *    create()
         *    
         *    A function that creates an archive file
         *    Always cleans up after itself
         *    
         *    The $excludes will be a list or relative path excludes if the $listmaker object is NULL otehrwise
         *    will be absolute path excludes and relative path excludes can be had from the $listmaker object
         *    
         *    @param        string    $zip            Full path & filename of ZIP Archive file to create
         *    @param        string    $dir            Full path of directory to add to ZIP Archive file
         *    @parame        array    $excludes        List of either absolute path exclusions or relative exclusions
         *    @param        string    $tempdir        Full path of directory for temporary usage
         *    @param        object    $listmaker        The object from which we can get an inclusions list
         *    @return        bool                    True if the creation was successful, false otherwise
         *
         */
        
public function create$zip$dir$excludes$tempdir$listmaker NULL ) {
        
            
$result false;
            
            switch ( 
$this->get_os_type() ) {
                case 
self::OS_TYPE_NIX:
                    
$result $this->create_linux$zip$dir$excludes$tempdir$listmaker );
                    break;
                case 
self::OS_TYPE_WIN:
                    
$result $this->create_windows$zip$dir$excludes$tempdir$listmaker );
                    break;
                default:
                    
$result false;
            }
            
            return 
$result;
            
        }
            
        
/**
         *    create_windows()
         *    
         *    A function that creates an archive file on Linux
         *    Always cleans up after itself
         *
         *    The $excludes will be a list or relative path excludes if the $listmaker object is NULL otehrwise
         *    will be absolute path excludes and relative path excludes can be had from the $listmaker object
         *    
         *    @param        string    $zip            Full path & filename of ZIP Archive file to create
         *    @param        string    $dir            Full path of directory to add to ZIP Archive file
         *    @parame        array    $excludes        List of either absolute path exclusions or relative exclusions
         *    @param        string    $tempdir        Full path of directory for temporary usage
         *    @param        object    $listmaker        The object from which we can get an inclusions list
         *    @return        bool                    True if the creation was successful, false otherwise
         *
         */
        
protected function create_windows$zip$dir$excludes$tempdir$listmaker ) {
        
            
// This should never be called but just in case return false silently
            //pb_backupbuddy::status( 'details', __('The ','it-l10n-backupbuddy' ) . $this->get_method_tag() . __(' method is not currently supported for archiving.','it-l10n-backupbuddy' ) );
            
return false;

        }            
        
        
/**
         *    create_linux()
         *    
         *    A function that creates an archive file on Linux
         *    Always cleans up after itself
         *
         *    The $excludes will be a list or relative path excludes if the $listmaker object is NULL otehrwise
         *    will be absolute path excludes and relative path excludes can be had from the $listmaker object
         *    
         *    @param        string    $zip            Full path & filename of ZIP Archive file to create
         *    @param        string    $dir            Full path of directory to add to ZIP Archive file
         *    @parame        array    $excludes        List of either absolute path exclusions or relative exclusions
         *    @param        string    $tempdir        Full path of directory for temporary usage
         *    @param        object    $listmaker        The object from which we can get an inclusions list
         *    @return        bool                    True if the creation was successful, false otherwise
         *
         */
        
protected function create_linux$zip$dir$excludes$tempdir$listmaker ) {
        
            
$exitcode 0;
            
$output = array();
            
$zippath '';
            
$command '';
            
$temp_zip '';
            
$excluding_additional false;
            
$exclude_count 0;
            
$exclusions = array();
            
$have_zip_errors false;
            
$zip_errors_count 0;
            
$zip_errors = array();
            
$have_zip_warnings false;
            
$zip_warnings_count 0;
            
$zip_warnings = array();
            
$have_zip_additions false;
            
$zip_additions_count 0;
            
$zip_additions = array();
            
$have_zip_debug false;
            
$zip_debug_count 0;
            
$zip_debug = array();
            
$have_zip_other false;
            
$zip_other_count 0;
            
$zip_other = array();
            
$zip_using_log_file false;
            
$logfile_name '';
            
$zip_ignoring_symlinks false;
        
            
// The basedir must have a trailing directory separator
            
$basedir = ( rtrimtrim$dir ), DIRECTORY_SEPARATOR ) ) . DIRECTORY_SEPARATOR;
            
            if ( empty( 
$tempdir ) || !@file_exists$tempdir ) ) {
            
                
pb_backupbuddy::status'details'__('Temporary working directory must be available.','it-l10n-backupbuddy' ) );                
                return 
false;
                
            }
                    
            
// Tell which zip version is being used
            
$version $this->get_zip_version();
            
            if ( 
true === is_array$version ) ) {
            
                ( ( 
== $version'major' ] ) && ( == $version'minor' ] ) ) ? $version'minor' ] = 'X' true ;
                
pb_backupbuddy::status'details'sprintf__'Using zip version: %1$s.%2$s''it-l10n-backupbuddy' ), $version'major' ], $version'minor' ] ) );
                
            } else {
            
                
$version = array( "major" => "X""minor" => "Y" );
                
pb_backupbuddy::status'details'sprintf__'Using zip version: %1$s.%2$s''it-l10n-backupbuddy' ), $version'major' ], $version'minor' ] ) );

            }
            
            
// Get the command path for the zip command - should return a trimmed string
            
$zippath $this->get_command_pathself::COMMAND_ZIP_PATH );
            
            
// Determine if we are using an absolute path
            
if ( !empty( $zippath ) ) {
            
                
pb_backupbuddy::status'details'__'Using absolute zip path: ','it-l10n-backupbuddy' ) . $zippath );
                
            }

            
// Add the trailing slash if required
            
$command $this->slashify$zippath ) . 'zip';    

            
// Hardcoding some additional options for now
            //$command .= ' -q -r';
            // Note: no longer using quiet _but_ may use it if output is being sent to log file
            
$command .= ' -r';
            
            
// Check if the version of zip in use supports log file (which will help with memory usage for large sites)
            
if ( $this->get_zip_supports_log_file() ) {
            
                
// Choose to use log file so quieten stdout - we'll set up the log file later
                
$command .= ' -q';
                
$zip_using_log_file true;
            
            }
            
            
// Check if we need to turn off compression by settings (faster but larger backup)
            
if ( true !== $this->get_compression() ) {
            
                
$command .= ' -0';
                
pb_backupbuddy::status'details'__('Zip archive creation compression disabled based on settings.','it-l10n-backupbuddy' ) );
                
            } else {
            
                
pb_backupbuddy::status'details'__('Zip archive creation compression enabled based on settings.','it-l10n-backupbuddy' ) );
            
            }
            
            
// Check if ignoring (not following) symlinks
            
if ( true === $this->get_ignore_symlinks() ) {
            
                
// Want to not follow symlinks so set command option and set flag for later use
                
if ( $this->get_os_type() != self::OS_TYPE_WIN ) {
                    
$command .= ' -y';
                    
$zip_ignoring_symlinks true;
                }
                
                
pb_backupbuddy::status'details'__('Zip archive creation symbolic links will not be followed based on settings.','it-l10n-backupbuddy' ) );

            } else {
            
                
pb_backupbuddy::status'details'__('Zip archive creation symbolic links will be followed based on settings.','it-l10n-backupbuddy' ) );

            }
            
            
// Check if we are ignoring warnings - meaning can still get a backup even
            // if, e.g., some files cannot be read
            
if ( true === $this->get_ignore_warnings() ) {
            
                
// Note: warnings are being ignored but will still be gathered and logged
                
pb_backupbuddy::status'details'__('Zip archive creation warnings will be ignored based on settings.','it-l10n-backupbuddy' ) );
                
            } else {
            
                
pb_backupbuddy::status'details'__('Zip archive creation warnings will not be ignored based on settings.','it-l10n-backupbuddy' ) );

            }
                
            
// Delete any existing zip file of same name - really this should never happen
            
if ( @file_exists$zip ) ) {

                
pb_backupbuddy::status'details'__('Existing ZIP Archive file will be replaced.','it-l10n-backupbuddy' ) );
                @
unlink$zip );

            }
                        
            
// Now we'll set up the logging to file if required - use full logging
            // Note: we always use this file either for command line log option or captured output
            // so always set it
            
$logfile_name $tempdir self::ZIP_LOG_FILE_NAME;
            if ( 
true === $zip_using_log_file ) {
            
                
// Using the command line logfile option
                
$command .= " -lf '{$logfile_name}' -li";
                
                
// Actual command output will be sent to the bit-bucket in the sky
                // TODO: if we want to capture debug output we'll need a real file
                // is it safe to use the same filename (probably not)
                
$output '/dev/null';
            
            } else {
            
                
// Old stylee zip not supporting logfile so redirect output to the file instead
                
$output $logfile_name;
            
            }
                        
            
// Set temporary directory to store ZIP while it's being generated.            
            
$command .= " -b '{$tempdir}'";

            
// If warnings are being ignored we can tell zip to create the zip archive in the final
            // location - otherwise we must put it in a temporary location and move it later only
            // if there are no warnings. This copes with the case where (this) controlling script
            // gets timed out by the server and if the file were created in the final location with
            // warnings that should not be ignored we cannot prevent it being created. The -MM option
            // could be used but this prevents us catching such warnings and being able to report
            // them to the user in the case where the script hasn't been terminated. Additionally the
            // -MM option would bail out on the first encountered problem and so if there were a few
            // problems they would each not be found until the current one is fixed and try again.
            
if ( true === $this->get_ignore_warnings() ) {
            
                
$temp_zip $zip;
            
            } else {
            
                
$temp_zip $tempdir basename$zip );
                
            }        

            
$command .= " '{$temp_zip}' .";
            
            
// Now work out exclusions dependent on what we have been given
            
if ( is_object$listmaker ) && ( defined'USE_EXPERIMENTAL_ZIPBUDDY_INCLUSION' ) && ( true === USE_EXPERIMENTAL_ZIPBUDDY_INCLUSION ) ) ) {
            
                
// We're doing an inclusion operation, but first we'll just show the exclusiosn
                
                // For zip we need relative rather than absolute exclusion spaths
                
$exclusions $listmaker->get_relative_excludes$basedir );
                
                if ( 
count$exclusions ) > ) {
                
                    
pb_backupbuddy::status'details'__('Calculating directories to exclude from backup.','it-l10n-backupbuddy' ) );
                    
                    
$excluding_additional false;
                    
$exclude_count 0;
                    foreach ( 
$exclusions as $exclude ) {
                    
                        if ( !
strstr$exclude'backupbuddy_backups' ) ) { // Set variable to show we are excluding additional directories besides backup dir.
    
                            
$excluding_additional true;
                                
                        }
                            
                        
pb_backupbuddy::status'details'__('Excluding','it-l10n-backupbuddy' ) . ': ' $exclude );
                                                    
                        
$exclude_count++;
                            
                    }
                                        
                }
                
                
// Get the list of inclusions to process
                
$inclusions $listmaker->get_terminals();
                
                
// For each directory we need to put the "wildcard" on the end
                
foreach ( $inclusions as &$inclusion ) {
                
                    if ( 
is_dir$inclusion ) ) {
                    
                        
$inclusion .= DIRECTORY_SEPARATOR "*";
                    }
                
                    
// Remove directory path prefix excluding leading slash to make relative (needed for zip)
                    
$inclusion str_replacertrim$basedirDIRECTORY_SEPARATOR ), ''$inclusion );
                                    
                }
                
                
// Now create the inclusions file in the tempdir
                
                // And update the command options
                
$ifile $tempdir self::ZIP_INCLUSIONS_FILE_NAME;
                if ( 
file_exists$ifile ) ) {
                
                    @
unlink$ifile );
                
                }
                
                
file_put_contents$ifileimplodePHP_EOL$inclusions ) . PHP_EOL PHP_EOL );
                
                
$command .= " -i@" "'{$ifile}'";
            
            } else {
            
                
// We're doing an exclusion operation
            
                //$command .= "-i '*' "; // Not needed. Zip defaults to doing this. Removed July 10, 2012 for v3.0.41.
                
                // Since we had no $listmaker object or not using it get the standard relative excludes to process
                
$exclusions $excludes;
                
                if ( 
count$exclusions ) > ) {
                
                    
// Handle exclusions by placing them in an exclusion text file.
                    
$exclusion_file $tempdir self::ZIP_EXCLUSIONS_FILE_NAME;
                    
$this->_render_exclusions_file$exclusion_file$exclusions );
                    
                    
pb_backupbuddy::status'details'sprintf__'Using exclusion file `%1$s`''it-l10n-backupbuddy' ), $exclusion_file ) );
                    
$command .= ' -x@' "'{$exclusion_file}'";
                                        
                }
            
            }
            
            
// Remember the current directory and change to the directory being added so that "." is valid in command
            
$working_dir getcwd();
            
chdir$dir );
            
            
// Execute ZIP command - we don't care a about Windows here because this method isn't supported yet
            // Prepend "exec" so that spawned process becomes the actual zip process
            
$command 'exec ' $command;
            
pb_backupbuddy::status'details'$this->get_method_tag() . __(' command (Linux)','it-l10n-backupbuddy' ) . ': ' $command );
            
            
// Set stdin to be a pipe that we'll close immediately anyway
            // Send stdout to a file or dump it dependent on the zip version (the destination is set above)
            // Send stderr to wherever stdout is going (on pre-v3 zip we need stderr for warnings)
            
$descriptorspec = array(
                
=> array( "pipe""r" ),
                
=> array( "file"$output"w" ),
                
=> array( "file"$output"w" )
            );
            
            
$process proc_open$command$descriptorspec$pipes );
            
            if ( 
is_resource$process ) ) {
            
                
fclose$pipes] ); // Never want to send input so just close it
                
                
$status proc_get_status$process );
                
                while ( 
true == $status'running'] ) {
                    
pb_backupbuddy::status'details'__('Zip Archive file creation in progress.','it-l10n-backupbuddy' ) );
                    
sleep(5);
                    
$status proc_get_status$process );
                    
                    
// Could also check for persistent final zip file (i.e., present over two loops)
                    // which might mean we are somehow not seeing the process as finished so we should
                    // terminate it and close it - and indicate some failure
                
}
                
                
$exitcode $status'exitcode' ];
                
                
proc_close$process );
                
            } else {
            
                
// Must clean up temporary directory
            
                
pb_backupbuddy::status'details'__('Failed to create Zip process: ','it-l10n-backupbuddy' ) );
                
pb_backupbuddy::status'details'__('Removing temporary directory.','it-l10n-backupbuddy' ) );
                
                if ( !( 
$this->delete_directory_recursive$tempdir ) ) ) {
                
                        
pb_backupbuddy::status'details'__('Temporary directory could not be deleted: ','it-l10n-backupbuddy' ) . $tempdir );
                
                }
                
                
chdir$working_dir );
                return 
false;
                
            }
            
            
// Set current working directory back to where we were
            
chdir$working_dir );
            
            
// Convenience for handling different scanarios
            
$result false;
            
            
// Log file is always present - either capturing output or as command line option
            // Always scan the logfile for warnings, etc. and show warnings even if user has chosen to ignore them
            
try {
            
                
$logfile = new SplFileObject$logfile_name"rb" );
                
                while( !
$logfile->eof() ) {
                
                    
$line $logfile->current();
                    
$id $logfile->key(); // Use the line number as unique key for later sorting
                    
$logfile->next();
                    
                    if ( 
preg_match'/^\s*(zip warning:)/i'$line ) ) {
                    
                        
// Looking for specific types of warning - in particular want the warning that
                        // indicates a file couldn't be read as we want to treat that as a "skipped"
                        // warning that indicates that zip flagged this as a potential problem but
                        // created the zip file anyway - but it would have generated the non-zero exit
                        // code of 18 and we key off that later. All other warnings are not considered
                        // reasons to return a non-zero exit code whilst still creating a zip file so
                        // we'll follow the lead on that and not have other warning types halt the backup.
                        // So we'll try and look for a warning output that looks like it is file related...
                        
if ( preg_match'/^\s*(zip warning:)\s*([^:]*:)\s*(.*)/i'$line$matches ) ) {
                        
                            
// Matched to what looks like a file related warning so check particular cases
                            
switch ( strtolower$matches] ) ) {
                                case 
"could not open for reading:":                                        
                                    
$zip_warningsself::ZIP_WARNING_SKIPPED ][ $id ] = trim$line );
                                    
$zip_warnings_count++;
                                    break;
                                case 
"name not matched:":                                        
                                    
$zip_otherself::ZIP_OTHER_GENERIC ][ $id ] = trim$line );
                                    
$zip_other_count++;
                                    break;
                                default:
                                    
$zip_warningsself::ZIP_WARNING_GENERIC ][ $id ] = trim$line );
                                    
$zip_warnings_count++;
                            }
                        
                        } else {
                        
                            
// Didn't match to what would look like a file related warning so count it regardless
                            
$zip_warningsself::ZIP_WARNING_GENERIC ][ $id ] = trim$line );
                            
$zip_warnings_count++;
                            
                        }
                        
                    } elseif ( 
preg_match'/^\s*(zip error:)/i'$line ) ) {
                    
                        
$zip_errors$id ] = trim$line );
                        
$zip_errors_count++;
                    
                    } elseif ( 
preg_match'/^\s*(adding:)/i'$line ) ) {
                    
                        
// Currently not processing additions entried
                        //$zip_additions[] = trim( $line );
                        //$zip_additions_count++;
                    
                    
} elseif ( preg_match'/^\s*(sd:)/i'$line ) ) {
                    
                        
$zip_debug$id ] = trim$line );
                        
$zip_debug_count++;
                    
                    } else {
                    
                        
// Currently not processing other entries
                        //$zip_other[] = trim( $line );
                        //$zip_other_count++;
                    
                    
}
                    
                }
                
                unset( 
$logfile );
                
                @
unlink$logfile_name );
                
            } catch ( 
Exception $e ) {
            
                
// Something fishy - we should have been able to open the log file...
                
$error_string $e->getMessage();
                
pb_backupbuddy::status'details'sprintf__('Log file could not be opened - error reported: %1$s','it-l10n-backupbuddy' ), $error_string ) );
                
            }
            
            
// Set convenience flags            
            
$have_zip_warnings = ( $zip_warnings_count );
            
$have_zip_errors = ( $zip_errors_count );
            
$have_zip_additions = ( $zip_additions_count );
            
$have_zip_debug = ( $zip_debug_count );
            
$have_zip_other = ( $zip_other_count );
            
            
// Always report the exit code regardless of whether we might ignore it or not
            
pb_backupbuddy::status'details'__('Zip process exit code: ','it-l10n-backupbuddy' ) . $exitcode );
            
            
// Always report the number of warnings - even just to confirm that we didn't have any
            
pb_backupbuddy::status'details'sprintf__('Zip process reported: %1$s warning%2$s','it-l10n-backupbuddy' ), $zip_warnings_count, ( ( == $zip_warnings_count ) ? '' 's' ) ) );

            
// Always report warnings regardless of whether user has selected to ignore them
            
if ( true === $have_zip_warnings ) {
            
                
$this->log_zip_reports$zip_warningsself::$_warning_desc"WARNING"self::MAX_WARNING_LINES_TO_SHOWdirnamedirname$tempdir ) ) . DIRECTORY_SEPARATOR 'pb_backupbuddy' DIRECTORY_SEPARATOR self::ZIP_WARNINGS_FILE_NAME );

            }
            
            
// Always report other reports regardless
            
if ( true === $have_zip_other ) {
            
                
// Only report number of informationals if we have any as they are not that important
                
pb_backupbuddy::status'details'sprintf__('Zip process reported: %1$s information%2$s','it-l10n-backupbuddy' ), $zip_other_count, ( ( == $zip_other_count ) ? 'al' 'als' ) ) );

                
$this->log_zip_reports$zip_otherself::$_other_desc"INFORMATION"self::MAX_OTHER_LINES_TO_SHOWdirnamedirname$tempdir ) ) . DIRECTORY_SEPARATOR 'pb_backupbuddy' DIRECTORY_SEPARATOR self::ZIP_OTHERS_FILE_NAME );

            }
            
                
// See if we can figure out what happened - note that $exitcode could be non-zero for actionable warning(s) or error
                // if ( (no zip file) or (fatal exit code) or (not ignoring warnable exit code) )
                
if ( ( ! @file_exists$temp_zip ) ) ||
                 ( ( 
!= $exitcode ) && ( 18 != $exitcode ) ) ||
                 ( ( 
18 == $exitcode ) && !$this->get_ignore_warnings() ) ) {
                
                
// If we have any zip errors reported show them regardless
                
if ( true === $have_zip_errors ) {
                
                    
pb_backupbuddy::status'details'sprintf__('Zip process reported: %1$s errors','it-l10n-backupbuddy' ), $zip_errors_count ) );
                    
                    foreach ( 
$zip_errors as $line ) {
                
                        
pb_backupbuddy::status'details'__'Zip process reported: ','it-l10n-backupbuddy' ) . $line );
                
                    }
                    
                }

                
// Report whether or not the zip file was created (whether that be in the final or temporary location)            
                
if ( ! @file_exists$temp_zip ) ) {
                
                    
pb_backupbuddy::status'details'__'Zip Archive file not created - check process exit code.','it-l10n-backupbuddy' ) );
                    
                } else {
                    
                    
pb_backupbuddy::status'details'__'Zip Archive file created but with errors/actionable-warnings so will be deleted - check process exit code and warnings.','it-l10n-backupbuddy' ) );

                }
                
                
// The operation has failed one way or another. Note that as the user didn't choose to ignore errors the zip file
                // is always created in a temporary location and then only moved to final location on success without error or warnings.
                // Therefore if there is a zip file (produced but with warnings) it will not be visible and will be deleted when the
                // temporary directory is deleted below.
                
                
$result false;
                
            } else {
            
                
// Got file with no error or warnings _or_ with warnings that the user has chosen to ignore
                
if ( false === $this->get_ignore_warnings() ) {
                
                    
// Because not ignoring warnings the zip archive was built in temporary location so we need to move it
                    
pb_backupbuddy::status'details'__('Moving Zip Archive file to local archive directory.','it-l10n-backupbuddy' ) );
                
                    
// Make sure no stale file information
                    
clearstatcache();
                    
                    @
rename$temp_zip$zip );
                    
                    if ( @
file_exists$zip ) ) {
                    
                        
pb_backupbuddy::status'details'__('Zip Archive file moved to local archive directory.','it-l10n-backupbuddy' ) );
                        
pb_backupbuddy::status'message'__'Zip Archive file successfully created with no errors or actionable warnings.','it-l10n-backupbuddy' ) );
                        
                        
$this->log_archive_file_stats$zip );
                            
                        
$result true;
                        
                    } else {
                    
                        
pb_backupbuddy::status'details'__('Zip Archive file could not be moved to local archive directory.','it-l10n-backupbuddy' ) );
                        
$result false;
                        
                    }
                        
                } else {
                
                    
// Warnings were being ignored so built in final location so no need to move it
                    
if ( @file_exists$zip ) ) {
                    
                        
pb_backupbuddy::status'message'__'Zip Archive file successfully created with no errors (any actionable warnings ignored by user settings).','it-l10n-backupbuddy' ) );
                        
                        
$this->log_archive_file_stats$zip );
                            
                        
$result true;
                        
                    } else {
                    
                        
// Odd condition - file should be present but apparently not?
                        
pb_backupbuddy::status'details'__('Zip Archive file could not be found in local archive directory.','it-l10n-backupbuddy' ) );
                        
$result false;
                        
                    }
                
                }
                
            }            

            
// Cleanup the temporary directory that will have all detritus and maybe incomplete zip file            
            
pb_backupbuddy::status'details'__('Removing temporary directory.','it-l10n-backupbuddy' ) );
            
            if ( !( 
$this->delete_directory_recursive$tempdir ) ) ) {
            
                    
pb_backupbuddy::status'details'__('Temporary directory could not be deleted: ','it-l10n-backupbuddy' ) . $tempdir );
            
            }
            
            return 
$result;
                                                
        }
        
        
/**
         *    extract()
         *
         *    Extracts the contents of a zip file to the specified directory using the best unzip methods possible.
         *    If no specific items given to extract then it's a complete unzip
         *
         *    @param    string        $zip_file                    Full path & filename of ZIP file to extract from.
         *    @param    string        $destination_directory        Full directory path to extract into.
         *    @param    array        $items                        Mapping of what to extract and to what
         *    @return    bool                                    true on success (all extractions successful), false otherwise
         */
        
public function extract$zip_file$destination_directory ''$items = array() ) {
        
            
$result false;
        
            switch ( 
$this->get_os_type() ) {
                case 
self::OS_TYPE_NIX:
                    if ( empty( 
$items ) ) {
                        
$result $this->extract_generic_full$zip_file$destination_directory );
                    } else {
                        
$result $this->extract_generic_selected$zip_file$destination_directory$items );                    
                    }
                    break;
                case 
self::OS_TYPE_WIN:
                    if ( empty( 
$items ) ) {
                        
$result $this->extract_generic_full$zip_file$destination_directory );
                    } else {
                        
$result $this->extract_generic_selected$zip_file$destination_directory$items );                    
                    }
                    break;
                default:
                    
$result false;
            }
            
            return 
$result;
            
        }

        
/**
         *    extract()
         *
         *    Extracts the contents of a zip file to the specified directory using the best unzip methods possible.
         *
         *    @param    string        $zip_file                    Full path & filename of ZIP file to extract from.
         *    @param    string        $destination_directory        Full directory path to extract into.
         *    @return    bool                                    true on success, false otherwise
         */
        
protected function extract_generic_full$zip_file$destination_directory '') {
        
            
// This should never be called but just in case return false silently
            //pb_backupbuddy::status( 'details', __('The ','it-l10n-backupbuddy' ) . $this->get_method_tag() . __(' method is not currently supported for unarchiving.','it-l10n-backupbuddy' ) );
            
return false;
            
        }

        
/**
         *    extract_generic_selected()
         *
         *    Extracts the contents of a zip file to the specified directory using the best unzip methods possible.
         *
         *    @param    string        $zip_file                    Full path & filename of ZIP file to extract from.
         *    @param    string        $destination_directory        Full directory path to extract into.
         *    @param    array        $items                        Mapping of what to extract and to what
         *    @return    bool                                    true on success (all extractions successful), false otherwise
         */
        
protected function extract_generic_selected$zip_file$destination_directory ''$items ) {
        
            
// Should never get here
            
return false;
            
        }
        
        
/**
         *    file_exists()
         *    
         *    Tests whether a file (with path) exists in the given zip file
         *    If leave_open is true then the zip object will be left open for faster checking for subsequent files within this zip
         *    
         *    @param        string    $zip_file        The zip file to check
         *    @param        string    $locate_file    The file to test for
         *    @param        bool    $leave_open        Optional: True if the zip file should be left open
         *    @return        bool/array                True if the file is found in the zip and false if not, array for other problem
         *
         */
        
public function file_exists$zip_file$locate_file$leave_open false ) {
        
            
// This should never be called but just in case return false silently
            //pb_backupbuddy::status( 'details', __('The ','it-l10n-backupbuddy' ) . $this->get_method_tag() . __(' method is not currently supported for archive file checking.','it-l10n-backupbuddy' ) );
            
return array( 1"Method does not support action" );

        }
        
        
/*    get_file_list()
         *    
         *    Get an array of all files in a zip file with some file properties.
         *    
         *    @param        string        $zip_file    The file to list the content of
         *    @return        bool|array                false on failure, otherwise array of file properties (may be empty)
         */
        
public function get_file_list$zip_file ) {
        
            
// This should never be called but just in case return false silently
            //pb_backupbuddy::status( 'details', __('The ','it-l10n-backupbuddy' ) . $this->get_method_tag() . __(' method is not currently supported for archive file listing.','it-l10n-backupbuddy' ) );
            
return false;

        }
        
        
/*    set_comment()
         *    
         *    Retrieve archive comment.
         *    
         *    @param        string            $zip_file        Filename of archive to set comment on.
         *    @param        string            $comment        Comment to apply to archive.
         *    @return        bool|string                        true on success, error message otherwise.
         */
        
public function set_comment$zip_file$comment ) {
        
            
// This should never be called but just in case return false silently
            //pb_backupbuddy::status( 'details', __('The ','it-l10n-backupbuddy' ) . $this->get_method_tag() . __(' method is not currently supported for archive comment setting.','it-l10n-backupbuddy' ) );
            
return "Method does not support action";

        }

        
/*    get_comment()
         *    
         *    Retrieve archive comment.
         *    
         *    @param        string        $zip_file        Filename of archive to retrieve comment from.
         *    @return        bool|string                    false on failure, Zip comment otherwise.
         */
        
public function get_comment$zip_file ) {
        
            
// This should never be called but just in case return false silently
            //pb_backupbuddy::status( 'details', __('The ','it-l10n-backupbuddy' ) . $this->get_method_tag() . __(' method is not currently supported for archive comment retrieval.','it-l10n-backupbuddy' ) );
            
return false;

        }
        
    } 
// end pluginbuddy_zbzipproc class.    
    
}
?>