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: 1816: 1817: 1818: 1819: 1820: 1821: 1822: 1823: 1824: 1825: 1826: 1827: 1828: 1829: 1830: 1831: 1832: 1833: 1834: 1835: 1836: 1837: 1838: 1839: 1840: 1841: 1842: 1843: 1844: 1845: 1846: 1847: 1848: 1849: 1850: 1851: 1852: 1853: 1854: 1855: 1856: 1857: 1858: 1859: 1860: 1861: 1862: 1863: 1864: 1865: 1866: 1867: 1868: 1869: 1870: 1871: 1872: 1873: 1874: 1875: 1876: 1877: 1878: 1879: 1880: 1881: 1882: 1883: 1884: 1885: 1886: 1887: 1888: 1889: 1890: 1891: 1892: 1893: 1894: 1895: 1896: 1897: 1898: 1899: 1900: 1901: 1902: 1903: 1904: 1905: 1906: 1907: 1908: 1909: 1910: 1911: 1912: 1913: 1914: 1915: 1916: 1917: 1918: 1919: 1920: 1921: 1922: 1923: 1924: 1925: 1926: 1927: 1928: 1929: 1930: 1931: 1932: 1933: 1934: 1935: 1936: 1937: 1938: 1939: 1940: 1941: 1942: 1943: 1944: 1945: 1946: 1947: 1948: 1949: 1950: 1951: 1952: 1953: 1954: 1955: 1956: 1957: 1958: 1959: 1960: 1961: 1962: 1963: 1964: 1965: 1966: 1967: 1968: 1969: 1970: 1971: 1972: 1973: 1974: 1975: 1976: 1977: 1978: 1979: 1980: 1981: 1982: 1983: 1984: 1985: 1986: 1987: 1988: 1989: 1990: 1991: 1992: 1993: 1994: 1995: 1996: 1997: 1998: 1999: 2000: 2001: 2002: 2003: 2004: 2005: 2006: 2007: 2008: 2009: 2010: 2011: 2012: 2013: 2014: 2015: 2016: 2017: 2018: 2019: 2020: 2021: 2022: 2023: 2024: 2025: 2026: 2027: 2028: 2029: 2030: 2031: 2032: 2033: 2034: 2035: 2036: 2037: 2038: 2039: 2040: 2041: 2042: 2043: 2044: 2045: 2046: 2047: 2048: 2049: 2050: 2051: 2052: 2053: 2054: 2055: 2056: 2057: 2058: 2059: 2060: 2061: 2062: 2063: 2064: 2065: 2066: 2067: 2068: 2069: 2070: 2071: 2072: 2073: 2074: 2075: 2076: 2077: 2078: 2079: 2080: 2081: 2082: 2083: 2084: 2085: 2086: 2087: 2088: 2089: 2090: 2091: 2092: 2093: 2094: 2095: 2096: 2097: 2098: 2099: 2100: 2101: 2102: 2103: 2104: 2105: 2106: 2107: 2108: 2109: 2110: 2111: 2112: 2113: 2114: 2115: 2116: 2117: 2118: 2119: 2120: 2121: 2122: 2123: 2124: 2125: 2126: 2127: 2128: 2129: 2130: 2131: 2132: 2133: 2134: 2135: 2136: 2137: 2138: 2139: 2140: 2141: 2142: 2143: 2144: 2145: 2146: 2147: 2148: 2149: 2150: 2151: 2152: 2153: 2154: 2155: 2156: 2157: 2158: 2159: 2160: 2161: 2162: 2163: 2164: 2165: 2166: 2167: 2168: 2169: 2170: 2171: 2172: 2173: 2174: 2175: 2176: 2177: 2178: 2179: 2180: 2181: 2182: 2183: 2184: 2185: 2186: 2187: 2188: 2189: 2190: 2191: 2192: 2193: 2194: 2195: 2196: 2197: 2198: 2199: 2200: 2201: 2202: 2203: 2204: 2205: 2206: 2207: 2208: 2209: 2210: 2211: 2212: 2213: 2214: 2215: 2216: 2217: 2218: 2219: 2220: 2221: 2222: 2223: 2224: 2225: 2226: 2227: 2228: 2229: 2230: 2231: 2232: 2233: 2234: 2235: 2236: 2237: 2238: 2239: 2240: 2241: 2242: 2243: 2244: 2245: 2246: 2247: 2248: 2249: 2250: 2251: 2252: 2253: 2254: 2255: 2256: 2257: 2258: 2259: 2260: 2261: 2262: 2263: 2264: 2265: 2266: 2267: 2268: 2269: 2270: 2271: 2272: 2273: 2274: 2275: 2276: 2277: 2278: 2279: 2280: 2281: 2282: 2283: 2284: 2285: 2286: 2287: 2288: 2289: 2290: 2291: 2292: 2293: 2294: 2295: 2296: 2297: 2298: 2299: 2300: 2301: 2302: 2303: 2304: 2305: 2306: 2307: 2308: 2309: 2310: 2311: 2312: 2313: 2314: 2315: 2316: 2317: 2318: 2319: 2320: 2321: 2322: 2323: 2324: 2325: 2326: 2327: 2328: 2329: 2330: 2331: 2332: 2333: 2334: 2335: 2336: 2337: 2338: 2339: 2340: 2341: 2342: 2343: 2344: 2345: 2346: 2347: 2348: 2349: 2350: 2351: 2352: 2353: 2354: 2355: 2356: 2357: 2358: 2359: 2360: 2361: 2362: 2363: 2364: 2365: 2366: 2367: 2368: 2369: 2370: 2371: 2372: 2373: 2374: 2375: 2376: 2377: 2378: 2379: 2380: 2381: 2382: 2383: 2384: 2385: 2386: 2387: 2388: 2389: 2390: 2391: 2392: 2393: 2394: 2395: 2396: 2397: 2398: 2399: 2400: 2401: 2402: 2403: 2404: 2405: 2406: 2407: 2408: 2409: 2410: 2411: 2412: 2413: 2414: 2415: 2416: 2417: 2418: 2419: 2420: 2421: 2422: 2423: 2424: 2425: 2426: 2427: 2428: 2429: 2430: 2431: 2432: 2433: 2434: 2435: 2436: 2437: 2438: 2439: 2440: 2441: 2442: 2443: 2444: 2445: 2446: 2447: 2448: 2449: 2450: 2451: 2452: 2453: 2454: 2455: 2456: 2457: 2458: 2459: 2460: 2461: 2462: 2463: 2464: 2465: 2466: 2467: 2468: 2469: 2470: 2471: 2472: 2473: 2474: 2475: 2476: 2477: 2478: 2479: 2480: 2481: 2482: 2483: 2484: 2485: 2486: 2487: 2488: 2489: 2490: 2491: 2492: 2493: 2494: 2495: 2496: 2497: 2498: 2499: 2500: 2501: 2502: 2503: 2504: 2505: 2506: 2507: 2508: 2509: 2510: 2511: 2512: 2513: 2514: 2515: 2516: 2517: 2518: 2519: 2520: 2521: 2522: 2523: 2524: 2525: 2526: 2527: 2528: 2529: 2530: 2531: 2532: 2533: 2534: 2535: 2536: 2537: 2538: 2539: 2540: 2541: 2542: 2543: 2544: 2545: 2546: 2547: 2548: 2549: 2550: 2551: 2552: 2553: 2554: 2555: 2556: 2557: 2558: 2559: 2560: 2561: 2562: 2563: 2564: 2565: 2566: 2567: 2568: 2569: 2570: 2571: 2572: 2573: 2574: 2575: 2576: 2577: 2578: 2579: 2580: 2581: 2582: 2583: 2584: 2585: 2586: 2587: 2588: 2589: 2590: 2591: 2592: 2593: 2594: 2595: 2596: 2597: 2598: 2599: 2600: 2601: 2602: 2603: 2604: 2605: 2606: 2607: 2608: 2609: 2610: 2611: 2612: 2613: 2614: 2615: 2616: 2617: 2618: 2619: 2620: 2621: 2622: 2623: 2624: 2625: 2626: 2627: 2628: 2629: 2630: 2631: 2632: 2633: 2634: 2635: 2636: 2637: 2638: 2639: 2640: 2641: 2642: 2643: 2644: 2645: 2646: 2647: 2648: 2649: 2650: 2651: 2652: 2653: 2654: 2655: 2656: 2657: 2658: 2659: 2660: 2661: 2662: 2663: 2664: 2665: 2666: 2667: 2668: 2669: 2670: 2671: 2672: 2673: 2674: 2675: 2676: 2677: 2678: 2679: 2680: 2681: 2682: 2683: 2684: 2685: 2686: 2687: 2688:
<?php
if (!defined('SMF'))
die('No direct access...');
function Packages()
{
global $txt, $sourcedir, $context;
if (isset($_GET['get']) || isset($_GET['pgdownload']))
{
require_once($sourcedir . '/PackageGet.php');
return PackageGet();
}
isAllowedTo('admin_forum');
require_once($sourcedir . '/Subs-Package.php');
loadLanguage('Packages');
loadTemplate('Packages', 'admin');
$context['page_title'] = $txt['package'];
$subActions = array(
'browse' => 'PackageBrowse',
'remove' => 'PackageRemove',
'list' => 'PackageList',
'ftptest' => 'PackageFTPTest',
'install' => 'PackageInstallTest',
'install2' => 'PackageInstall',
'uninstall' => 'PackageInstallTest',
'uninstall2' => 'PackageInstall',
'options' => 'PackageOptions',
'perms' => 'PackagePermissions',
'flush' => 'FlushInstall',
'examine' => 'ExamineFile',
'showoperations' => 'ViewOperations',
);
if (isset($_REQUEST['sa']) && isset($subActions[$_REQUEST['sa']]))
$context['sub_action'] = $_REQUEST['sa'];
else
$context['sub_action'] = 'browse';
$context[$context['admin_menu_name']]['tab_data'] = array(
'title' => $txt['package_manager'],
'description' => $txt['package_manager_desc'],
'tabs' => array(
'browse' => array(
),
'packageget' => array(
'description' => $txt['download_packages_desc'],
),
'perms' => array(
'description' => $txt['package_file_perms_desc'],
),
'options' => array(
'description' => $txt['package_install_options_desc'],
),
),
);
if ($context['sub_action'] == 'browse')
loadJavaScriptFile('suggest.js', array('defer' => false, 'minimize' => true), 'smf_suggest');
call_integration_hook('integrate_manage_packages', array(&$subActions));
call_helper($subActions[$context['sub_action']]);
}
function PackageInstallTest()
{
global $boarddir, $txt, $context, $scripturl, $sourcedir, $packagesdir, $modSettings, $smcFunc, $settings;
if (!isset($_REQUEST['package']) || $_REQUEST['package'] == '')
redirectexit('action=admin;area=packages');
$context['filename'] = preg_replace('~[\.]+~', '.', $_REQUEST['package']);
$context['install_id'] = isset($_REQUEST['pid']) ? (int) $_REQUEST['pid'] : 0;
require_once($sourcedir . '/Subs-Package.php');
create_chmod_control();
if (file_exists($packagesdir . '/temp'))
deltree($packagesdir . '/temp', false);
if (!mktree($packagesdir . '/temp', 0755))
{
deltree($packagesdir . '/temp', false);
if (!mktree($packagesdir . '/temp', 0777))
{
deltree($packagesdir . '/temp', false);
create_chmod_control(array($packagesdir . '/temp/delme.tmp'), array('destination_url' => $scripturl . '?action=admin;area=packages;sa=' . $_REQUEST['sa'] . ';package=' . $_REQUEST['package'], 'crash_on_error' => true));
deltree($packagesdir . '/temp', false);
if (!mktree($packagesdir . '/temp', 0777))
fatal_lang_error('package_cant_download', false);
}
}
$context['uninstalling'] = $_REQUEST['sa'] == 'uninstall';
$context['linktree'][count($context['linktree']) - 1] = array(
'url' => $scripturl . '?action=admin;area=packages;sa=browse',
'name' => $context['uninstalling'] ? $txt['package_uninstall_actions'] : $txt['install_actions']
);
$context['page_title'] .= ' - ' . ($context['uninstalling'] ? $txt['package_uninstall_actions'] : $txt['install_actions']);
$context['sub_template'] = 'view_package';
if (!file_exists($packagesdir . '/' . $context['filename']))
{
deltree($packagesdir . '/temp');
fatal_lang_error('package_no_file', false);
}
if (is_file($packagesdir . '/' . $context['filename']))
{
$context['extracted_files'] = read_tgz_file($packagesdir . '/' . $context['filename'], $packagesdir . '/temp');
if ($context['extracted_files'] && !file_exists($packagesdir . '/temp/package-info.xml'))
foreach ($context['extracted_files'] as $file)
if (basename($file['filename']) == 'package-info.xml')
{
$context['base_path'] = dirname($file['filename']) . '/';
break;
}
if (!isset($context['base_path']))
$context['base_path'] = '';
}
elseif (is_dir($packagesdir . '/' . $context['filename']))
{
copytree($packagesdir . '/' . $context['filename'], $packagesdir . '/temp');
$context['extracted_files'] = listtree($packagesdir . '/temp');
$context['base_path'] = '';
}
else
fatal_lang_error('no_access', false);
$request = $smcFunc['db_query']('', '
SELECT id_theme, variable, value
FROM {db_prefix}themes
WHERE (id_theme = {int:default_theme} OR id_theme IN ({array_int:known_theme_list}))
AND variable IN ({string:name}, {string:theme_dir})',
array(
'known_theme_list' => explode(',', $modSettings['knownThemes']),
'default_theme' => 1,
'name' => 'name',
'theme_dir' => 'theme_dir',
)
);
$theme_paths = array();
while ($row = $smcFunc['db_fetch_assoc']($request))
$theme_paths[$row['id_theme']][$row['variable']] = $row['value'];
$smcFunc['db_free_result']($request);
$packageInfo = getPackageInfo($context['filename']);
if (!is_array($packageInfo))
fatal_lang_error($packageInfo);
$packageInfo['filename'] = $context['filename'];
$context['package_name'] = isset($packageInfo['name']) ? $packageInfo['name'] : $context['filename'];
$context['extract_type'] = isset($packageInfo['type']) ? $packageInfo['type'] : 'modification';
$context['is_installed'] = false;
$request = $smcFunc['db_query']('', '
SELECT version, themes_installed, db_changes
FROM {db_prefix}log_packages
WHERE package_id = {string:current_package}
AND install_state != {int:not_installed}
ORDER BY time_installed DESC
LIMIT 1',
array(
'not_installed' => 0,
'current_package' => $packageInfo['id'],
)
);
while ($row = $smcFunc['db_fetch_assoc']($request))
{
$old_themes = explode(',', $row['themes_installed']);
$old_version = $row['version'];
$db_changes = empty($row['db_changes']) ? array() : $smcFunc['json_decode']($row['db_changes'], true);
}
$smcFunc['db_free_result']($request);
$context['database_changes'] = array();
if (isset($packageInfo['uninstall']['database']))
$context['database_changes'][] = sprintf($txt['package_db_code'], $packageInfo['uninstall']['database']);
if (!empty($db_changes))
{
foreach ($db_changes as $change)
{
if (isset($change[2]) && isset($txt['package_db_' . $change[0]]))
$context['database_changes'][] = sprintf($txt['package_db_' . $change[0]], $change[1], $change[2]);
elseif (isset($txt['package_db_' . $change[0]]))
$context['database_changes'][] = sprintf($txt['package_db_' . $change[0]], $change[1]);
else
$context['database_changes'][] = $change[0] . '-' . $change[1] . (isset($change[2]) ? '-' . $change[2] : '');
}
}
if ($context['uninstalling'])
{
if (!isset($old_version) && $context['uninstalling'])
{
deltree($packagesdir . '/temp');
fatal_lang_error('package_cant_uninstall', false);
}
$actions = parsePackageInfo($packageInfo['xml'], true, 'uninstall');
if (empty($actions))
{
deltree($packagesdir . '/temp');
fatal_lang_error('package_uninstall_cannot', false);
}
$context['themes_locked'] = true;
foreach ($theme_paths as $id => $data)
if ($id != 1 && !in_array($id, $old_themes))
unset($theme_paths[$id]);
}
elseif (isset($old_version) && $old_version != $packageInfo['version'])
{
$actions = parsePackageInfo($packageInfo['xml'], true, 'upgrade', $old_version);
if (empty($actions))
$context['is_installed'] = true;
else
{
foreach ($theme_paths as $id => $data)
if ($id != 1 && !in_array($id, $old_themes))
unset($theme_paths[$id]);
}
}
elseif (isset($old_version) && $old_version == $packageInfo['version'])
$context['is_installed'] = true;
if (!isset($old_version) || $context['is_installed'])
$actions = parsePackageInfo($packageInfo['xml'], true, 'install');
$context['actions'] = array();
$context['ftp_needed'] = false;
$context['has_failure'] = false;
$chmod_files = array();
if (empty($actions))
return;
$themeFinds = array(
'candidates' => array(),
'other_themes' => array(),
);
foreach ($actions as $action)
{
$failed = false;
$thisAction = array();
if ($action['type'] == 'chmod')
{
$chmod_files[] = $action['filename'];
continue;
}
elseif ($action['type'] == 'readme' || $action['type'] == 'license')
{
$type = 'package_' . $action['type'];
if (file_exists($packagesdir . '/temp/' . $context['base_path'] . $action['filename']))
$context[$type] = $smcFunc['htmlspecialchars'](trim(file_get_contents($packagesdir . '/temp/' . $context['base_path'] . $action['filename']), "\n\r"));
elseif (file_exists($action['filename']))
$context[$type] = $smcFunc['htmlspecialchars'](trim(file_get_contents($action['filename']), "\n\r"));
if (!empty($action['parse_bbc']))
{
require_once($sourcedir . '/Subs-Post.php');
$context[$type] = preg_replace('~\[[/]?html\]~i', '', $context[$type]);
preparsecode($context[$type]);
$context[$type] = parse_bbc($context[$type]);
}
else
$context[$type] = nl2br($context[$type]);
continue;
}
elseif ($action['type'] == 'redirect')
continue;
elseif ($action['type'] == 'error')
{
$context['has_failure'] = true;
if (isset($action['error_msg']) && isset($action['error_var']))
$context['failure_details'] = sprintf($txt['package_will_fail_' . $action['error_msg']], $action['error_var']);
elseif (isset($action['error_msg']))
$context['failure_details'] = isset($txt['package_will_fail_' . $action['error_msg']]) ? $txt['package_will_fail_' . $action['error_msg']] : $action['error_msg'];
}
elseif ($action['type'] == 'modification')
{
if (!file_exists($packagesdir . '/temp/' . $context['base_path'] . $action['filename']))
{
$context['has_failure'] = true;
$context['actions'][] = array(
'type' => $txt['execute_modification'],
'action' => $smcFunc['htmlspecialchars'](strtr($action['filename'], array($boarddir => '.'))),
'description' => $txt['package_action_missing'],
'failed' => true,
);
}
else
{
if ($action['boardmod'])
$mod_actions = parseBoardMod(@file_get_contents($packagesdir . '/temp/' . $context['base_path'] . $action['filename']), true, $action['reverse'], $theme_paths);
else
$mod_actions = parseModification(@file_get_contents($packagesdir . '/temp/' . $context['base_path'] . $action['filename']), true, $action['reverse'], $theme_paths);
if (count($mod_actions) == 1 && isset($mod_actions[0]) && $mod_actions[0]['type'] == 'error' && $mod_actions[0]['filename'] == '-')
$mod_actions[0]['filename'] = $action['filename'];
foreach ($mod_actions as $key => $mod_action)
{
if (isset($mod_action['filename']) && substr($mod_action['filename'], -13) != '.template.php')
$actual_filename = strtolower(substr(strrchr($mod_action['filename'], '/'), 1) . '||' . $action['filename']);
elseif (isset($mod_action['filename']) && preg_match('~([\w]*)/([\w]*)\.template\.php$~', $mod_action['filename'], $matches))
$actual_filename = strtolower($matches[1] . '/' . $matches[2] . '.template.php' . '||' . $action['filename']);
else
$actual_filename = $key;
if ($mod_action['type'] == 'opened')
$failed = false;
elseif ($mod_action['type'] == 'failure')
{
if (empty($mod_action['is_custom']))
$context['has_failure'] = true;
$failed = true;
}
elseif ($mod_action['type'] == 'chmod')
{
$chmod_files[] = $mod_action['filename'];
}
elseif ($mod_action['type'] == 'saved')
{
if (!empty($mod_action['is_custom']))
{
if (!isset($context['theme_actions'][$mod_action['is_custom']]))
$context['theme_actions'][$mod_action['is_custom']] = array(
'name' => $theme_paths[$mod_action['is_custom']]['name'],
'actions' => array(),
'has_failure' => $failed,
);
else
$context['theme_actions'][$mod_action['is_custom']]['has_failure'] |= $failed;
$context['theme_actions'][$mod_action['is_custom']]['actions'][$actual_filename] = array(
'type' => $txt['execute_modification'],
'action' => $smcFunc['htmlspecialchars'](strtr($mod_action['filename'], array($boarddir => '.'))),
'description' => $failed ? $txt['package_action_failure'] : $txt['package_action_success'],
'failed' => $failed,
);
}
elseif (!isset($context['actions'][$actual_filename]))
{
$context['actions'][$actual_filename] = array(
'type' => $txt['execute_modification'],
'action' => $smcFunc['htmlspecialchars'](strtr($mod_action['filename'], array($boarddir => '.'))),
'description' => $failed ? $txt['package_action_failure'] : $txt['package_action_success'],
'failed' => $failed,
);
}
else
{
$context['actions'][$actual_filename]['failed'] |= $failed;
$context['actions'][$actual_filename]['description'] = $context['actions'][$actual_filename]['failed'] ? $txt['package_action_failure'] : $txt['package_action_success'];
}
}
elseif ($mod_action['type'] == 'skipping')
{
$context['actions'][$actual_filename] = array(
'type' => $txt['execute_modification'],
'action' => $smcFunc['htmlspecialchars'](strtr($mod_action['filename'], array($boarddir => '.'))),
'description' => $txt['package_action_skipping']
);
}
elseif ($mod_action['type'] == 'missing' && empty($mod_action['is_custom']))
{
$context['has_failure'] = true;
$context['actions'][$actual_filename] = array(
'type' => $txt['execute_modification'],
'action' => $smcFunc['htmlspecialchars'](strtr($mod_action['filename'], array($boarddir => '.'))),
'description' => $txt['package_action_missing'],
'failed' => true,
);
}
elseif ($mod_action['type'] == 'error')
$context['actions'][$actual_filename] = array(
'type' => $txt['execute_modification'],
'action' => $smcFunc['htmlspecialchars'](strtr($mod_action['filename'], array($boarddir => '.'))),
'description' => $txt['package_action_error'],
'failed' => true,
);
}
foreach ($mod_actions as $operation_key => $mod_action)
{
if (isset($mod_action['filename']) && substr($mod_action['filename'], -13) != '.template.php')
$actual_filename = strtolower(substr(strrchr($mod_action['filename'], '/'), 1) . '||' . $action['filename']);
elseif (isset($mod_action['filename']) && preg_match('~([\w]*)/([\w]*)\.template\.php$~', $mod_action['filename'], $matches))
$actual_filename = strtolower($matches[1] . '/' . $matches[2] . '.template.php' . '||' . $action['filename']);
else
$actual_filename = $key;
if (!in_array($mod_action['type'], array('error', 'result', 'opened', 'saved', 'end', 'missing', 'skipping', 'chmod')))
{
if (empty($mod_action['is_custom']))
$context['actions'][$actual_filename]['operations'][] = array(
'type' => $txt['execute_modification'],
'action' => $smcFunc['htmlspecialchars'](strtr($mod_action['filename'], array($boarddir => '.'))),
'description' => $mod_action['failed'] ? $txt['package_action_failure'] : $txt['package_action_success'],
'position' => $mod_action['position'],
'operation_key' => $operation_key,
'filename' => $action['filename'],
'is_boardmod' => $action['boardmod'],
'failed' => $mod_action['failed'],
'ignore_failure' => !empty($mod_action['ignore_failure']),
);
if (isset($mod_action['is_custom']) && isset($context['theme_actions'][$mod_action['is_custom']]))
$context['theme_actions'][$mod_action['is_custom']]['actions'][$actual_filename]['operations'][] = array(
'type' => $txt['execute_modification'],
'action' => $smcFunc['htmlspecialchars'](strtr($mod_action['filename'], array($boarddir => '.'))),
'description' => $mod_action['failed'] ? $txt['package_action_failure'] : $txt['package_action_success'],
'position' => $mod_action['position'],
'operation_key' => $operation_key,
'filename' => $action['filename'],
'is_boardmod' => $action['boardmod'],
'failed' => $mod_action['failed'],
'ignore_failure' => !empty($mod_action['ignore_failure']),
);
}
}
}
}
elseif ($action['type'] == 'code')
{
$thisAction = array(
'type' => $txt['execute_code'],
'action' => $smcFunc['htmlspecialchars']($action['filename']),
);
}
elseif ($action['type'] == 'database' && !$context['uninstalling'])
{
$thisAction = array(
'type' => $txt['execute_database_changes'],
'action' => $smcFunc['htmlspecialchars']($action['filename']),
);
}
elseif (in_array($action['type'], array('create-dir', 'create-file')))
{
$thisAction = array(
'type' => $txt['package_create'] . ' ' . ($action['type'] == 'create-dir' ? $txt['package_tree'] : $txt['package_file']),
'action' => $smcFunc['htmlspecialchars'](strtr($action['destination'], array($boarddir => '.')))
);
}
elseif ($action['type'] == 'hook')
{
$action['description'] = !isset($action['hook'], $action['function']) ? $txt['package_action_failure'] : $txt['package_action_success'];
if (!isset($action['hook'], $action['function']))
$context['has_failure'] = true;
$thisAction = array(
'type' => $action['reverse'] ? $txt['execute_hook_remove'] : $txt['execute_hook_add'],
'action' => sprintf($txt['execute_hook_action' . ($action['reverse'] ? '_inverse' : '')], $smcFunc['htmlspecialchars']($action['hook'])),
);
}
elseif ($action['type'] == 'credits')
{
$thisAction = array(
'type' => $txt['execute_credits_add'],
'action' => sprintf($txt['execute_credits_action'], $smcFunc['htmlspecialchars']($action['title'])),
);
}
elseif ($action['type'] == 'requires')
{
$installed = false;
$version = true;
if (!isset($action['id']))
$context['has_failure'] = true;
else
{
$request = $smcFunc['db_query']('', '
SELECT version
FROM {db_prefix}log_packages
WHERE package_id = {string:current_package}
AND install_state != {int:not_installed}
ORDER BY time_installed DESC
LIMIT 1',
array(
'not_installed' => 0,
'current_package' => $action['id'],
)
);
$installed = ($smcFunc['db_num_rows']($request) !== 0);
if ($installed)
list ($version) = $smcFunc['db_fetch_row']($request);
$smcFunc['db_free_result']($request);
$version = (isset($action['version']) ? $version == $action['version'] : true);
}
$action['description'] = ($installed && $version) ? $txt['package_action_success'] : $txt['package_action_failure'];
$context['has_failure'] = !($installed && $version);
$thisAction = array(
'type' => $txt['package_requires'],
'action' => $txt['package_check_for'] . ' ' . $action['id'] . (isset($action['version']) ? (' / ' . ($version ? $action['version'] : '<span class="error">' . $action['version'] . '</span>')) : ''),
);
}
elseif (in_array($action['type'], array('require-dir', 'require-file')))
{
$thisAction = array(
'type' => $txt['package_extract'] . ' ' . ($action['type'] == 'require-dir' ? $txt['package_tree'] : $txt['package_file']),
'action' => $smcFunc['htmlspecialchars'](strtr($action['destination'], array($boarddir => '.')))
);
if (!empty($action['unparsed_destination']) && preg_match('~^\$(languagedir|languages_dir|imagesdir|themedir|themes_dir)~i', $action['unparsed_destination'], $matches))
{
$theme_action = !empty($action['theme_action']) && in_array($action['theme_action'], array('no', 'yes', 'auto')) ? $action['theme_action'] : 'auto';
if ($theme_action != 'auto' && !in_array($matches[1], array('languagedir', 'languages_dir', 'imagesdir', 'themedir')))
$theme_action = '';
elseif ($theme_action == 'auto' && $matches[1] != 'imagesdir')
$theme_action = '';
if ($theme_action != '')
$themeFinds['candidates'][] = $action;
elseif ($matches[1] == 'themes_dir')
$themeFinds['other_themes'][] = strtolower(strtr(parse_path($action['unparsed_destination']), array('\\' => '/')) . '/' . basename($action['filename']));
}
}
elseif (in_array($action['type'], array('move-dir', 'move-file')))
$thisAction = array(
'type' => $txt['package_move'] . ' ' . ($action['type'] == 'move-dir' ? $txt['package_tree'] : $txt['package_file']),
'action' => $smcFunc['htmlspecialchars'](strtr($action['source'], array($boarddir => '.'))) . ' => ' . $smcFunc['htmlspecialchars'](strtr($action['destination'], array($boarddir => '.')))
);
elseif (in_array($action['type'], array('remove-dir', 'remove-file')))
{
$thisAction = array(
'type' => $txt['package_delete'] . ' ' . ($action['type'] == 'remove-dir' ? $txt['package_tree'] : $txt['package_file']),
'action' => $smcFunc['htmlspecialchars'](strtr($action['filename'], array($boarddir => '.')))
);
if (!empty($action['unparsed_filename']) && preg_match('~^\$(languagedir|languages_dir|imagesdir|themedir|themes_dir)~i', $action['unparsed_filename'], $matches))
{
$theme_action = !empty($action['theme_action']) && in_array($action['theme_action'], array('no', 'yes', 'auto')) ? $action['theme_action'] : 'auto';
$action['unparsed_destination'] = $action['unparsed_filename'];
if ($theme_action != 'auto' && !in_array($matches[1], array('languagedir', 'languages_dir', 'imagesdir', 'themedir')))
$theme_action = '';
elseif ($theme_action == 'auto' && $matches[1] != 'imagesdir')
$theme_action = '';
if ($theme_action != '')
$themeFinds['candidates'][] = $action;
elseif ($matches[1] == 'themes_dir')
$themeFinds['other_themes'][] = strtolower(strtr(parse_path($action['unparsed_filename']), array('\\' => '/')) . '/' . basename($action['filename']));
}
}
if (empty($thisAction))
continue;
if (!in_array($action['type'], array('hook', 'credits')))
{
if ($context['uninstalling'])
$file = in_array($action['type'], array('remove-dir', 'remove-file')) ? $action['filename'] : $packagesdir . '/temp/' . $context['base_path'] . $action['filename'];
else
$file = $packagesdir . '/temp/' . $context['base_path'] . $action['filename'];
}
if (isset($action['filename']) && !file_exists($file) && !in_array($action['type'], array('create-dir', 'create-file')))
{
$context['has_failure'] = true;
$thisAction += array(
'description' => $txt['package_action_missing'],
'failed' => true,
);
}
if (empty($thisAction['description']))
$thisAction['description'] = isset($action['description']) ? $action['description'] : '';
$context['actions'][] = $thisAction;
}
if (!empty($themeFinds['candidates']))
{
foreach ($themeFinds['candidates'] as $action_data)
{
preg_match('~^\$(languagedir|languages_dir|imagesdir|themedir)(\\|/)*(.+)*~i', $action_data['unparsed_destination'], $matches);
if ($matches[1] == 'imagesdir')
$path = '/' . basename($settings['default_images_url']);
elseif ($matches[1] == 'languagedir' || $matches[1] == 'languages_dir')
$path = '/languages';
else
$path = '';
if (!empty($matches[3]))
$path .= $matches[3];
if (!$context['uninstalling'])
$path .= '/' . basename($action_data['filename']);
foreach ($theme_paths as $id => $theme_data)
{
if (isset($theme_data['theme_dir']) && $id != 1)
{
$real_path = $theme_data['theme_dir'] . $path;
if (!in_array(strtolower(strtr($real_path, array('\\' => '/'))), $themeFinds['other_themes']))
{
if (!mktree(dirname($real_path), false))
{
$temp = dirname($real_path);
while (!file_exists($temp) && strlen($temp) > 1)
$temp = dirname($temp);
$chmod_files[] = $temp;
}
if ($action_data['type'] == 'require-dir' && !is_writable($real_path) && (file_exists($real_path) || !is_writable(dirname($real_path))))
$chmod_files[] = $real_path;
if (!isset($context['theme_actions'][$id]))
$context['theme_actions'][$id] = array(
'name' => $theme_data['name'],
'actions' => array(),
);
if ($context['uninstalling'])
$context['theme_actions'][$id]['actions'][] = array(
'type' => $txt['package_delete'] . ' ' . ($action_data['type'] == 'require-dir' ? $txt['package_tree'] : $txt['package_file']),
'action' => strtr($real_path, array('\\' => '/', $boarddir => '.')),
'description' => '',
'value' => base64_encode($smcFunc['json_encode'](array('type' => $action_data['type'], 'orig' => $action_data['filename'], 'future' => $real_path, 'id' => $id))),
'not_mod' => true,
);
else
$context['theme_actions'][$id]['actions'][] = array(
'type' => $txt['package_extract'] . ' ' . ($action_data['type'] == 'require-dir' ? $txt['package_tree'] : $txt['package_file']),
'action' => strtr($real_path, array('\\' => '/', $boarddir => '.')),
'description' => '',
'value' => base64_encode($smcFunc['json_encode'](array('type' => $action_data['type'], 'orig' => $action_data['destination'], 'future' => $real_path, 'id' => $id))),
'not_mod' => true,
);
}
}
}
}
}
package_flush_cache(true);
if (file_exists($packagesdir . '/temp'))
deltree($packagesdir . '/temp');
if (!empty($chmod_files))
{
$ftp_status = create_chmod_control($chmod_files);
$context['ftp_needed'] = !empty($ftp_status['files']['notwritable']) && !empty($context['package_ftp']);
}
$context['post_url'] = $scripturl . '?action=admin;area=packages;sa=' . ($context['uninstalling'] ? 'uninstall' : 'install') . ($context['ftp_needed'] ? '' : '2') . ';package=' . $context['filename'] . ';pid=' . $context['install_id'];
checkSubmitOnce('register');
}
function PackageInstall()
{
global $txt, $context, $boardurl, $scripturl, $sourcedir, $packagesdir, $modSettings;
global $user_info, $smcFunc;
checkSubmitOnce('check');
checkSession();
if (!isset($_REQUEST['package']) || $_REQUEST['package'] == '')
redirectexit('action=admin;area=packages');
$context['filename'] = $_REQUEST['package'];
$context['install_id'] = isset($_REQUEST['pid']) ? (int) $_REQUEST['pid'] : 0;
require_once($sourcedir . '/Subs-Package.php');
$context['uninstalling'] = $_REQUEST['sa'] == 'uninstall2';
$context['linktree'][count($context['linktree']) - 1] = array(
'url' => $scripturl . '?action=admin;area=packages;sa=browse',
'name' => $context['uninstalling'] ? $txt['uninstall'] : $txt['extracting']
);
$context['page_title'] .= ' - ' . ($context['uninstalling'] ? $txt['uninstall'] : $txt['extracting']);
$context['sub_template'] = 'extract_package';
if (!file_exists($packagesdir . '/' . $context['filename']))
fatal_lang_error('package_no_file', false);
create_chmod_control(array(), array('destination_url' => $scripturl . '?action=admin;area=packages;sa=' . $_REQUEST['sa'] . ';package=' . $_REQUEST['package']));
if (file_exists($packagesdir . '/temp'))
deltree($packagesdir . '/temp', false);
else
mktree($packagesdir . '/temp', 0777);
if (is_file($packagesdir . '/' . $context['filename']))
{
$context['extracted_files'] = read_tgz_file($packagesdir . '/' . $context['filename'], $packagesdir . '/temp');
if (!file_exists($packagesdir . '/temp/package-info.xml'))
foreach ($context['extracted_files'] as $file)
if (basename($file['filename']) == 'package-info.xml')
{
$context['base_path'] = dirname($file['filename']) . '/';
break;
}
if (!isset($context['base_path']))
$context['base_path'] = '';
}
elseif (is_dir($packagesdir . '/' . $context['filename']))
{
copytree($packagesdir . '/' . $context['filename'], $packagesdir . '/temp');
$context['extracted_files'] = listtree($packagesdir . '/temp');
$context['base_path'] = '';
}
else
fatal_lang_error('no_access', false);
$custom_themes = array(1);
$known_themes = explode(',', $modSettings['knownThemes']);
if (!empty($_POST['custom_theme']))
{
foreach ($_POST['custom_theme'] as $tid)
if (in_array($tid, $known_themes))
$custom_themes[] = (int) $tid;
}
$request = $smcFunc['db_query']('', '
SELECT id_theme, variable, value
FROM {db_prefix}themes
WHERE id_theme IN ({array_int:custom_themes})
AND variable IN ({string:name}, {string:theme_dir})',
array(
'custom_themes' => $custom_themes,
'name' => 'name',
'theme_dir' => 'theme_dir',
)
);
$theme_paths = array();
$themes_installed = array(1);
while ($row = $smcFunc['db_fetch_assoc']($request))
$theme_paths[$row['id_theme']][$row['variable']] = $row['value'];
$smcFunc['db_free_result']($request);
$context['theme_copies'] = array(
'require-file' => array(),
'require-dir' => array(),
);
if (!empty($_POST['theme_changes']))
{
foreach ($_POST['theme_changes'] as $change)
{
if (empty($change))
continue;
$theme_data = $smcFunc['json_decode'](base64_decode($change), true);
if (empty($theme_data['type']))
continue;
$themes_installed[] = $theme_data['id'];
$context['theme_copies'][$theme_data['type']][$theme_data['orig']][] = $theme_data['future'];
}
}
$packageInfo = getPackageInfo($context['filename']);
if (!is_array($packageInfo))
fatal_lang_error($packageInfo);
$packageInfo['filename'] = $context['filename'];
$context['extract_type'] = isset($packageInfo['type']) ? $packageInfo['type'] : 'modification';
if (!empty($modSettings['package_make_full_backups']) && (!isset($_SESSION['last_backup_for']) || $_SESSION['last_backup_for'] != $context['filename'] . ($context['uninstalling'] ? '$$' : '$')))
{
$_SESSION['last_backup_for'] = $context['filename'] . ($context['uninstalling'] ? '$$' : '$');
$result = package_create_backup(($context['uninstalling'] ? 'backup_' : 'before_') . strtok($context['filename'], '.'));
if (!$result)
fatal_lang_error('could_not_package_backup', false);
}
$context['is_installed'] = false;
$request = $smcFunc['db_query']('', '
SELECT version, themes_installed, db_changes
FROM {db_prefix}log_packages
WHERE package_id = {string:current_package}
AND install_state != {int:not_installed}
ORDER BY time_installed DESC
LIMIT 1',
array(
'not_installed' => 0,
'current_package' => $packageInfo['id'],
)
);
while ($row = $smcFunc['db_fetch_assoc']($request))
{
$old_themes = explode(',', $row['themes_installed']);
$old_version = $row['version'];
$db_changes = empty($row['db_changes']) ? array() : $smcFunc['json_decode']($row['db_changes'], true);
}
$smcFunc['db_free_result']($request);
if (!isset($old_version) && $context['uninstalling'])
{
deltree($packagesdir . '/temp');
fatal_error('Hacker?', false);
}
elseif ($context['uninstalling'])
{
$install_log = parsePackageInfo($packageInfo['xml'], false, 'uninstall');
if (empty($install_log))
fatal_lang_error('package_uninstall_cannot', false);
foreach ($theme_paths as $id => $data)
if ($id != 1 && !in_array($id, $old_themes))
unset($theme_paths[$id]);
}
elseif (isset($old_version) && $old_version != $packageInfo['version'])
{
$install_log = parsePackageInfo($packageInfo['xml'], false, 'upgrade', $old_version);
if (empty($install_log))
$context['is_installed'] = true;
else
{
foreach ($theme_paths as $id => $data)
if ($id != 1 && !in_array($id, $old_themes))
unset($theme_paths[$id]);
}
}
elseif (isset($old_version) && $old_version == $packageInfo['version'])
$context['is_installed'] = true;
if (!isset($old_version) || $context['is_installed'])
$install_log = parsePackageInfo($packageInfo['xml'], false, 'install');
$context['install_finished'] = false;
if (!empty($install_log))
{
$failed_steps = array();
$failed_count = 0;
foreach ($install_log as $action)
{
$failed_count++;
if ($action['type'] == 'modification' && !empty($action['filename']))
{
if ($action['boardmod'])
$mod_actions = parseBoardMod(file_get_contents($packagesdir . '/temp/' . $context['base_path'] . $action['filename']), false, $action['reverse'], $theme_paths);
else
$mod_actions = parseModification(file_get_contents($packagesdir . '/temp/' . $context['base_path'] . $action['filename']), false, $action['reverse'], $theme_paths);
foreach ($mod_actions as $key => $modAction)
{
if ($modAction['type'] == 'failure')
$failed_steps[] = array(
'file' => $modAction['filename'],
'large_step' => $failed_count,
'sub_step' => $key,
'theme' => 1,
);
if (!empty($modAction['is_custom']))
$themes_installed[] = $modAction['is_custom'];
}
}
elseif ($action['type'] == 'code' && !empty($action['filename']))
{
global $txt, $boarddir, $sourcedir, $modSettings, $context, $settings, $smcFunc;
if (file_exists($packagesdir . '/temp/' . $context['base_path'] . $action['filename']))
require($packagesdir . '/temp/' . $context['base_path'] . $action['filename']);
}
elseif ($action['type'] == 'credits')
{
$credits_tag = array(
'url' => $action['url'],
'license' => $action['license'],
'licenseurl' => $action['licenseurl'],
'copyright' => $action['copyright'],
'title' => $action['title'],
);
}
elseif ($action['type'] == 'hook' && isset($action['hook'], $action['function']))
{
if (!isset($context['ignore_hook_errors']))
$context['ignore_hook_errors'] = true;
if ($action['reverse'])
remove_integration_function($action['hook'], $action['function'], true, $action['include_file'], $action['object']);
else
add_integration_function($action['hook'], $action['function'], true, $action['include_file'], $action['object']);
}
elseif ($action['type'] == 'database' && !empty($action['filename']) && (!$context['uninstalling'] || !empty($_POST['do_db_changes'])))
{
global $txt, $boarddir, $sourcedir, $modSettings, $context, $settings, $smcFunc;
global $db_package_log;
db_extend('packages');
if (file_exists($packagesdir . '/temp/' . $context['base_path'] . $action['filename']))
require($packagesdir . '/temp/' . $context['base_path'] . $action['filename']);
}
elseif ($action['type'] == 'redirect' && !empty($action['redirect_url']))
{
$context['redirect_url'] = $action['redirect_url'];
$context['redirect_text'] = !empty($action['filename']) && file_exists($packagesdir . '/temp/' . $context['base_path'] . $action['filename']) ? $smcFunc['htmlspecialchars'](file_get_contents($packagesdir . '/temp/' . $context['base_path'] . $action['filename'])) : ($context['uninstalling'] ? $txt['package_uninstall_done'] : $txt['package_installed_done']);
$context['redirect_timeout'] = empty($action['redirect_timeout']) ? 5 : (int) ceil($action['redirect_timeout'] / 1000);
if (!empty($action['parse_bbc']))
{
require_once($sourcedir . '/Subs-Post.php');
$context['redirect_text'] = preg_replace('~\[[/]?html\]~i', '', $context['redirect_text']);
preparsecode($context['redirect_text']);
$context['redirect_text'] = parse_bbc($context['redirect_text']);
}
$urls = array(
'$boardurl' => $boardurl,
'$scripturl' => $scripturl,
'$session_var' => $context['session_var'],
'$session_id' => $context['session_id'],
);
$context['redirect_url'] = strtr($context['redirect_url'], $urls);
}
}
package_flush_cache();
$request = $smcFunc['db_query']('', '
SELECT package_id, install_state, db_changes
FROM {db_prefix}log_packages
WHERE install_state != {int:not_installed}
AND package_id = {string:current_package}
' . ($context['install_id'] ? ' AND id_install = {int:install_id} ' : '') . '
ORDER BY time_installed DESC
LIMIT 1',
array(
'not_installed' => 0,
'install_id' => $context['install_id'],
'current_package' => $packageInfo['id'],
)
);
$is_upgrade = false;
while ($row = $smcFunc['db_fetch_assoc']($request))
{
if ($context['uninstalling'])
{
$smcFunc['db_query']('', '
UPDATE {db_prefix}log_packages
SET install_state = {int:not_installed}, member_removed = {string:member_name},
id_member_removed = {int:current_member}, time_removed = {int:current_time}
WHERE package_id = {string:package_id}
AND id_install = {int:install_id}',
array(
'current_member' => $user_info['id'],
'not_installed' => 0,
'current_time' => time(),
'package_id' => $row['package_id'],
'member_name' => $user_info['name'],
'install_id' => $context['install_id'],
)
);
}
else
{
$is_upgrade = true;
$old_db_changes = empty($row['db_changes']) ? array() : $smcFunc['json_decode']($row['db_changes'], true);
$smcFunc['db_query']('', '
UPDATE {db_prefix}log_packages
SET install_state = {int:not_installed}, member_removed = {string:member_name},
id_member_removed = {int:current_member}, time_removed = {int:current_time}
WHERE package_id = {string:package_id}
AND version = {string:old_version}',
array(
'current_member' => $user_info['id'],
'not_installed' => 0,
'current_time' => time(),
'package_id' => $row['package_id'],
'member_name' => $user_info['name'],
'old_version' => $old_version,
)
);
}
}
if (!$context['uninstalling'])
{
reloadSettings();
if (!empty($old_db_changes))
$db_package_log = empty($db_package_log) ? $old_db_changes : array_merge($old_db_changes, $db_package_log);
if (!empty($db_package_log))
{
$tables = array();
usort($db_package_log, function($a, $b)
{
if ($a[0] == $b[0])
return 0;
return $a[0] == 'remove_table' ? -1 : 1;
});
foreach ($db_package_log as $k => $log)
{
if ($log[0] == 'remove_table')
$tables[] = $log[1];
elseif (in_array($log[1], $tables))
unset($db_package_log[$k]);
}
$db_changes = $smcFunc['json_encode']($db_package_log);
}
else
$db_changes = '';
$themes_installed = array_unique($themes_installed);
$themes_installed = implode(',', $themes_installed);
$failed_step_insert = $smcFunc['json_encode']($failed_steps);
$keys = array('filename', 'name', 'id', 'version');
foreach ($keys as $key)
{
${"package_$key"} = un_htmlspecialchars($packageInfo[$key]);
}
$credits_tag = (empty($credits_tag)) ? '' : $smcFunc['json_encode']($credits_tag);
$smcFunc['db_insert']('',
'{db_prefix}log_packages',
array(
'filename' => 'string', 'name' => 'string', 'package_id' => 'string', 'version' => 'string',
'id_member_installed' => 'int', 'member_installed' => 'string', 'time_installed' => 'int',
'install_state' => 'int', 'failed_steps' => 'string', 'themes_installed' => 'string',
'member_removed' => 'int', 'db_changes' => 'string', 'credits' => 'string',
),
array(
$package_filename, $package_name, $package_id, $package_version,
$user_info['id'], $user_info['name'], time(),
$is_upgrade ? 2 : 1, $failed_step_insert, $themes_installed,
0, $db_changes, $credits_tag,
),
array('id_install')
);
}
$smcFunc['db_free_result']($request);
$context['install_finished'] = true;
}
if (!empty($db_changes) && !empty($_POST['do_db_changes']))
{
db_extend('packages');
foreach ($db_changes as $change)
{
if ($change[0] == 'remove_table' && isset($change[1]))
$smcFunc['db_drop_table']($change[1]);
elseif ($change[0] == 'remove_column' && isset($change[2]))
$smcFunc['db_remove_column']($change[1], $change[2]);
elseif ($change[0] == 'remove_index' && isset($change[2]))
$smcFunc['db_remove_index']($change[1], $change[2]);
}
}
if (file_exists($packagesdir . '/temp'))
deltree($packagesdir . '/temp');
logAction($context['uninstalling'] ? 'uninstall_package' : (!empty($is_upgrade) ? 'upgrade_package' : 'install_package'), array('package' => $smcFunc['htmlspecialchars']($packageInfo['name']), 'version' => $smcFunc['htmlspecialchars']($packageInfo['version'])), 'admin');
clean_cache();
deleteAllMinified();
create_chmod_control(array(), array(), true);
}
function PackageList()
{
global $txt, $scripturl, $context, $sourcedir, $packagesdir;
require_once($sourcedir . '/Subs-Package.php');
if (!isset($_REQUEST['package']) || $_REQUEST['package'] == '')
redirectexit('action=admin;area=packages');
$context['linktree'][] = array(
'url' => $scripturl . '?action=admin;area=packages;sa=list;package=' . $_REQUEST['package'],
'name' => $txt['list_file']
);
$context['page_title'] .= ' - ' . $txt['list_file'];
$context['sub_template'] = 'list';
$context['filename'] = $_REQUEST['package'];
if (is_file($packagesdir . '/' . $context['filename']))
$context['files'] = read_tgz_file($packagesdir . '/' . $context['filename'], null);
elseif (is_dir($packagesdir . '/' . $context['filename']))
$context['files'] = listtree($packagesdir . '/' . $context['filename']);
}
function ExamineFile()
{
global $txt, $scripturl, $context, $sourcedir, $packagesdir, $smcFunc;
require_once($sourcedir . '/Subs-Package.php');
if (!isset($_REQUEST['package']) || $_REQUEST['package'] == '')
redirectexit('action=admin;area=packages');
if (!isset($_REQUEST['file']) || $_REQUEST['file'] == '')
redirectexit('action=admin;area=packages');
$_REQUEST['package'] = preg_replace('~[\.]+~', '.', strtr($_REQUEST['package'], array('/' => '_', '\\' => '_')));
$_REQUEST['file'] = preg_replace('~[\.]+~', '.', $_REQUEST['file']);
if (isset($_REQUEST['raw']))
{
if (is_file($packagesdir . '/' . $_REQUEST['package']))
echo read_tgz_file($packagesdir . '/' . $_REQUEST['package'], $_REQUEST['file'], true);
elseif (is_dir($packagesdir . '/' . $_REQUEST['package']))
echo file_get_contents($packagesdir . '/' . $_REQUEST['package'] . '/' . $_REQUEST['file']);
obExit(false);
}
$context['linktree'][count($context['linktree']) - 1] = array(
'url' => $scripturl . '?action=admin;area=packages;sa=list;package=' . $_REQUEST['package'],
'name' => $txt['package_examine_file']
);
$context['page_title'] .= ' - ' . $txt['package_examine_file'];
$context['sub_template'] = 'examine';
$context['package'] = $_REQUEST['package'];
$context['filename'] = $_REQUEST['file'];
if (in_array(strtolower(strrchr($_REQUEST['file'], '.')), array('.bmp', '.gif', '.jpeg', '.jpg', '.png')))
$context['filedata'] = '<img src="' . $scripturl . '?action=admin;area=packages;sa=examine;package=' . $_REQUEST['package'] . ';file=' . $_REQUEST['file'] . ';raw" alt="' . $_REQUEST['file'] . '">';
else
{
if (is_file($packagesdir . '/' . $_REQUEST['package']))
$context['filedata'] = $smcFunc['htmlspecialchars'](read_tgz_file($packagesdir . '/' . $_REQUEST['package'], $_REQUEST['file'], true));
elseif (is_dir($packagesdir . '/' . $_REQUEST['package']))
$context['filedata'] = $smcFunc['htmlspecialchars'](file_get_contents($packagesdir . '/' . $_REQUEST['package'] . '/' . $_REQUEST['file']));
if (strtolower(strrchr($_REQUEST['file'], '.')) == '.php')
$context['filedata'] = highlight_php_code($context['filedata']);
}
}
function PackageRemove()
{
global $scripturl, $packagesdir;
checkSession('get');
if (!isset($_GET['package']) || $_GET['package'] == 'index.php' || $_GET['package'] == 'backups')
redirectexit('action=admin;area=packages;sa=browse');
$_GET['package'] = preg_replace('~[\.]+~', '.', strtr($_GET['package'], array('/' => '_', '\\' => '_')));
if (file_exists($packagesdir . '/' . $_GET['package']) && (substr($_GET['package'], -4) == '.zip' || substr($_GET['package'], -4) == '.tgz' || substr($_GET['package'], -7) == '.tar.gz' || is_dir($packagesdir . '/' . $_GET['package'])) && $_GET['package'] != 'backups' && substr($_GET['package'], 0, 1) != '.')
{
create_chmod_control(array($packagesdir . '/' . $_GET['package']), array('destination_url' => $scripturl . '?action=admin;area=packages;sa=remove;package=' . $_GET['package'], 'crash_on_error' => true));
if (is_dir($packagesdir . '/' . $_GET['package']))
deltree($packagesdir . '/' . $_GET['package']);
else
{
smf_chmod($packagesdir . '/' . $_GET['package'], 0777);
unlink($packagesdir . '/' . $_GET['package']);
}
}
redirectexit('action=admin;area=packages;sa=browse');
}
function PackageBrowse()
{
global $txt, $scripturl, $context, $sourcedir, $smcFunc;
$context['page_title'] .= ' - ' . $txt['browse_packages'];
$context['forum_version'] = SMF_FULL_VERSION;
$context['available_packages'] = 0;
$context['modification_types'] = array('modification', 'avatar', 'language', 'unknown');
call_integration_hook('integrate_modification_types');
require_once($sourcedir . '/Subs-List.php');
foreach ($context['modification_types'] as $type)
{
$listOptions = array(
'id' => 'packages_lists_' . $type,
'title' => $txt[$type . '_package'],
'no_items_label' => $txt['no_packages'],
'get_items' => array(
'function' => 'list_getPackages',
'params' => array('type' => $type),
),
'base_href' => $scripturl . '?action=admin;area=packages;sa=browse;type=' . $type,
'default_sort_col' => 'id' . $type,
'columns' => array(
'id' . $type => array(
'header' => array(
'value' => $txt['package_id'],
'style' => 'width: 40px;',
),
'data' => array(
'db' => 'sort_id',
),
'sort' => array(
'default' => 'sort_id',
'reverse' => 'sort_id'
),
),
'mod_name' . $type => array(
'header' => array(
'value' => $txt['mod_name'],
'style' => 'width: 25%;',
),
'data' => array(
'db' => 'name',
),
'sort' => array(
'default' => 'name',
'reverse' => 'name',
),
),
'version' . $type => array(
'header' => array(
'value' => $txt['mod_version'],
),
'data' => array(
'db' => 'version',
),
'sort' => array(
'default' => 'version',
'reverse' => 'version',
),
),
'time_installed' . $type => array(
'header' => array(
'value' => $txt['mod_installed_time'],
),
'data' => array(
'function' => function($package) use ($txt)
{
return !empty($package['time_installed'])
? timeformat($package['time_installed'])
: $txt['not_applicable'];
},
'class' => 'smalltext',
),
'sort' => array(
'default' => 'time_installed',
'reverse' => 'time_installed',
),
),
'operations' . $type => array(
'header' => array(
'value' => '',
),
'data' => array(
'function' => function($package) use ($context, $scripturl, $txt)
{
$return = '';
if ($package['can_uninstall'])
$return = '
<a href="' . $scripturl . '?action=admin;area=packages;sa=uninstall;package=' . $package['filename'] . ';pid=' . $package['installed_id'] . '" class="button">' . $txt['uninstall'] . '</a>';
elseif ($package['can_emulate_uninstall'])
$return = '
<a href="' . $scripturl . '?action=admin;area=packages;sa=uninstall;ve=' . $package['can_emulate_uninstall'] . ';package=' . $package['filename'] . ';pid=' . $package['installed_id'] . '" class="button">' . $txt['package_emulate_uninstall'] . ' ' . $package['can_emulate_uninstall'] . '</a>';
elseif ($package['can_upgrade'])
$return = '
<a href="' . $scripturl . '?action=admin;area=packages;sa=install;package=' . $package['filename'] . '" class="button">' . $txt['package_upgrade'] . '</a>';
elseif ($package['can_install'])
$return = '
<a href="' . $scripturl . '?action=admin;area=packages;sa=install;package=' . $package['filename'] . '" class="button">' . $txt['install_mod'] . '</a>';
elseif ($package['can_emulate_install'])
$return = '
<a href="' . $scripturl . '?action=admin;area=packages;sa=install;ve=' . $package['can_emulate_install'] . ';package=' . $package['filename'] . '" class="button">' . $txt['package_emulate_install'] . ' ' . $package['can_emulate_install'] . '</a>';
return $return . '
<a href="' . $scripturl . '?action=admin;area=packages;sa=list;package=' . $package['filename'] . '" class="button">' . $txt['list_files'] . '</a>
<a href="' . $scripturl . '?action=admin;area=packages;sa=remove;package=' . $package['filename'] . ';' . $context['session_var'] . '=' . $context['session_id'] . '"' . ($package['is_installed'] && $package['is_current'] ? ' data-confirm="' . $txt['package_delete_bad'] . '"' : '') . ' class="button' . ($package['is_installed'] && $package['is_current'] ? ' you_sure' : '') . '">' . $txt['package_delete'] . '</a>';
},
'class' => 'righttext',
),
),
),
);
createList($listOptions);
}
$context['sub_template'] = 'browse';
$context['default_list'] = 'packages_lists';
$get_versions = $smcFunc['db_query']('', '
SELECT data FROM {db_prefix}admin_info_files WHERE filename={string:versionsfile} AND path={string:smf}',
array(
'versionsfile' => 'latest-versions.txt',
'smf' => '/smf/',
)
);
$data = $smcFunc['db_fetch_assoc']($get_versions);
$smcFunc['db_free_result']($get_versions);
$items = $smcFunc['json_decode']($data['data'], true);
$context['emulation_versions'] = preg_replace('~^SMF ~', '', $items);
$context['default_version'] = SMF_VERSION;
$context['emulation_versions'][] = $context['default_version'];
$context['selected_version'] = preg_replace('~^SMF ~', '', $context['forum_version']);
}
function list_getPackages($start, $items_per_page, $sort, $params)
{
global $scripturl, $packagesdir, $context;
static $installed_mods;
$packages = array();
$column = array();
if (!@is_writable($packagesdir))
create_chmod_control(array($packagesdir), array('destination_url' => $scripturl . '?action=admin;area=packages', 'crash_on_error' => true));
$the_version = SMF_VERSION;
if (isset($_GET['version_emulate']) && strtr($_GET['version_emulate'], array('SMF ' => '')) == $the_version)
{
unset($_SESSION['version_emulate']);
}
elseif (isset($_GET['version_emulate']))
{
if (($_GET['version_emulate'] === 0 || $_GET['version_emulate'] === SMF_FULL_VERSION) && isset($_SESSION['version_emulate']))
unset($_SESSION['version_emulate']);
elseif ($_GET['version_emulate'] !== 0)
$_SESSION['version_emulate'] = strtr($_GET['version_emulate'], array('-' => ' ', '+' => ' ', 'SMF ' => ''));
}
if (!empty($_SESSION['version_emulate']))
{
$context['forum_version'] = 'SMF ' . $_SESSION['version_emulate'];
$the_version = $_SESSION['version_emulate'];
}
if (isset($_SESSION['single_version_emulate']))
unset($_SESSION['single_version_emulate']);
if (empty($installed_mods))
{
$instmods = loadInstalledPackages();
$installed_mods = array();
foreach ($instmods as $installed_mod)
$installed_mods[$installed_mod['package_id']] = array(
'id' => $installed_mod['id'],
'version' => $installed_mod['version'],
'time_installed' => $installed_mod['time_installed'],
);
$context['installed_mods'] = array_keys($installed_mods);
}
if ($dir = @opendir($packagesdir))
{
$dirs = array();
$sort_id = array(
'modification' => 1,
'avatar' => 1,
'language' => 1,
'unknown' => 1,
);
call_integration_hook('integrate_packages_sort_id', array(&$sort_id, &$packages));
while ($package = readdir($dir))
{
if ($package == '.' || $package == '..' || $package == 'temp' || (!(is_dir($packagesdir . '/' . $package) && file_exists($packagesdir . '/' . $package . '/package-info.xml')) && substr(strtolower($package), -7) != '.tar.gz' && substr(strtolower($package), -4) != '.tgz' && substr(strtolower($package), -4) != '.zip'))
continue;
if (is_dir($packagesdir . '/' . $package))
{
if (in_array($package, $dirs))
continue;
$dirs[] = $package;
}
elseif (substr(strtolower($package), -7) == '.tar.gz')
{
if (in_array(substr($package, 0, -7), $dirs))
continue;
$dirs[] = substr($package, 0, -7);
}
elseif (substr(strtolower($package), -4) == '.zip' || substr(strtolower($package), -4) == '.tgz')
{
if (in_array(substr($package, 0, -4), $dirs))
continue;
$dirs[] = substr($package, 0, -4);
}
$packageInfo = getPackageInfo($package);
if (!is_array($packageInfo))
continue;
if (!empty($packageInfo))
{
if (!isset($sort_id[$packageInfo['type']]))
$packageInfo['sort_id'] = $sort_id['unknown'];
else
$packageInfo['sort_id'] = $sort_id[$packageInfo['type']];
$packageInfo['time_installed'] = 0;
$packageInfo['is_installed'] = isset($installed_mods[$packageInfo['id']]);
if ($packageInfo['is_installed'])
{
$packageInfo['is_current'] = $installed_mods[$packageInfo['id']]['version'] == $packageInfo['version'];
$packageInfo['is_newer'] = $installed_mods[$packageInfo['id']]['version'] > $packageInfo['version'];
$packageInfo['installed_id'] = $installed_mods[$packageInfo['id']]['id'];
if ($packageInfo['is_current'])
$packageInfo['time_installed'] = $installed_mods[$packageInfo['id']]['time_installed'];
}
$packageInfo['can_install'] = false;
$packageInfo['can_uninstall'] = false;
$packageInfo['can_upgrade'] = false;
$packageInfo['can_emulate_install'] = false;
$packageInfo['can_emulate_uninstall'] = false;
$column[] = $packageInfo[$sort];
if (!$packageInfo['is_installed'] && $packageInfo['xml']->exists('install'))
{
$installs = $packageInfo['xml']->set('install');
foreach ($installs as $install)
{
if (!$install->exists('@for') || matchPackageVersion($the_version, $install->fetch('@for')))
{
$packageInfo['can_install'] = true;
break;
}
}
if ($packageInfo['can_install'] === false && $install->exists('@for') && empty($_SESSION['version_emulate']))
{
$reset = true;
foreach ($installs as $install)
{
$packageInfo['can_emulate_install'] = matchHighestPackageVersion($install->fetch('@for'), $reset, $the_version);
$reset = false;
}
}
}
elseif ($packageInfo['is_installed'] && !$packageInfo['is_current'] && $packageInfo['xml']->exists('upgrade'))
{
$upgrades = $packageInfo['xml']->set('upgrade');
foreach ($upgrades as $upgrade)
{
if (!$upgrade->exists('@for') || matchPackageVersion($the_version, $upgrade->fetch('@for')))
if (!$upgrade->exists('@from') || matchPackageVersion($installed_mods[$packageInfo['id']]['version'], $upgrade->fetch('@from')))
{
$packageInfo['can_upgrade'] = true;
break;
}
}
}
elseif ($packageInfo['is_installed'] && $packageInfo['is_current'] && $packageInfo['xml']->exists('uninstall'))
{
$uninstalls = $packageInfo['xml']->set('uninstall');
foreach ($uninstalls as $uninstall)
{
if (!$uninstall->exists('@for') || matchPackageVersion($the_version, $uninstall->fetch('@for')))
{
$packageInfo['can_uninstall'] = true;
break;
}
}
if ($packageInfo['can_uninstall'] === false && $uninstall->exists('@for') && empty($_SESSION['version_emulate']))
{
$reset = true;
foreach ($uninstalls as $uninstall)
{
$packageInfo['can_emulate_uninstall'] = matchHighestPackageVersion($uninstall->fetch('@for'), $reset, $the_version);
$reset = false;
}
}
}
unset($packageInfo['xml']);
if (isset($sort_id[$packageInfo['type']]) && $params == $packageInfo['type'])
{
$sort_id[$packageInfo['type']]++;
$packages[] = $packageInfo;
}
elseif (!isset($sort_id[$packageInfo['type']]) && $params == 'unknown')
{
$packageInfo['sort_id'] = $sort_id['unknown'];
$sort_id['unknown']++;
$packages[] = $packageInfo;
}
}
}
closedir($dir);
}
$context['available_packages'] += count($packages);
array_multisort(
$column,
isset($_GET['desc']) ? SORT_DESC : SORT_ASC,
$packages
);
return $packages;
}
function PackageOptions()
{
global $txt, $context, $modSettings, $smcFunc;
if (isset($_POST['save']))
{
checkSession();
updateSettings(array(
'package_server' => trim($smcFunc['htmlspecialchars']($_POST['pack_server'])),
'package_port' => trim($smcFunc['htmlspecialchars']($_POST['pack_port'])),
'package_username' => trim($smcFunc['htmlspecialchars']($_POST['pack_user'])),
'package_make_backups' => !empty($_POST['package_make_backups']),
'package_make_full_backups' => !empty($_POST['package_make_full_backups'])
));
$_SESSION['adm-save'] = true;
redirectexit('action=admin;area=packages;sa=options');
}
if (preg_match('~^/home\d*/([^/]+?)/public_html~', $_SERVER['DOCUMENT_ROOT'], $match))
$default_username = $match[1];
else
$default_username = '';
$context['page_title'] = $txt['package_settings'];
$context['sub_template'] = 'install_options';
$context['package_ftp_server'] = isset($modSettings['package_server']) ? $modSettings['package_server'] : 'localhost';
$context['package_ftp_port'] = isset($modSettings['package_port']) ? $modSettings['package_port'] : '21';
$context['package_ftp_username'] = isset($modSettings['package_username']) ? $modSettings['package_username'] : $default_username;
$context['package_make_backups'] = !empty($modSettings['package_make_backups']);
$context['package_make_full_backups'] = !empty($modSettings['package_make_full_backups']);
if (!empty($_SESSION['adm-save']))
{
$context['saved_successful'] = true;
unset ($_SESSION['adm-save']);
}
}
function ViewOperations()
{
global $context, $txt, $sourcedir, $packagesdir, $smcFunc, $modSettings;
isAllowedTo('admin_forum');
if (!isset($_REQUEST['operation_key'], $_REQUEST['filename']) && !is_numeric($_REQUEST['operation_key']))
fatal_lang_error('operation_invalid', 'general');
require_once($sourcedir . '/Subs-Package.php');
$reverse = isset($_REQUEST['reverse']) ? true : false;
$context['filename'] = preg_replace('~[\.]+~', '.', $_REQUEST['package']);
if (is_file($packagesdir . '/' . $context['filename']))
{
$context['extracted_files'] = read_tgz_file($packagesdir . '/' . $context['filename'], $packagesdir . '/temp');
if ($context['extracted_files'] && !file_exists($packagesdir . '/temp/package-info.xml'))
foreach ($context['extracted_files'] as $file)
if (basename($file['filename']) == 'package-info.xml')
{
$context['base_path'] = dirname($file['filename']) . '/';
break;
}
if (!isset($context['base_path']))
$context['base_path'] = '';
}
elseif (is_dir($packagesdir . '/' . $context['filename']))
{
copytree($packagesdir . '/' . $context['filename'], $packagesdir . '/temp');
$context['extracted_files'] = listtree($packagesdir . '/temp');
$context['base_path'] = '';
}
$request = $smcFunc['db_query']('', '
SELECT id_theme, variable, value
FROM {db_prefix}themes
WHERE (id_theme = {int:default_theme} OR id_theme IN ({array_int:known_theme_list}))
AND variable IN ({string:name}, {string:theme_dir})',
array(
'known_theme_list' => explode(',', $modSettings['knownThemes']),
'default_theme' => 1,
'name' => 'name',
'theme_dir' => 'theme_dir',
)
);
$theme_paths = array();
while ($row = $smcFunc['db_fetch_assoc']($request))
$theme_paths[$row['id_theme']][$row['variable']] = $row['value'];
$smcFunc['db_free_result']($request);
if (isset($_REQUEST['reverse']) && !empty($_REQUEST['install_id']))
{
$install_id = (int) $_REQUEST['install_id'];
if ($install_id > 0)
{
$old_themes = array();
$request = $smcFunc['db_query']('', '
SELECT themes_installed
FROM {db_prefix}log_packages
WHERE id_install = {int:install_id}',
array(
'install_id' => $install_id,
)
);
if ($smcFunc['db_num_rows']($request) == 1)
{
list ($old_themes) = $smcFunc['db_fetch_row']($request);
$old_themes = explode(',', $old_themes);
foreach ($theme_paths as $id => $data)
if ($id != 1 && !in_array($id, $old_themes))
unset($theme_paths[$id]);
}
$smcFunc['db_free_result']($request);
}
}
if (isset($_REQUEST['boardmod']))
$mod_actions = parseBoardMod(@file_get_contents($packagesdir . '/temp/' . $context['base_path'] . $_REQUEST['filename']), true, $reverse, $theme_paths);
else
$mod_actions = parseModification(@file_get_contents($packagesdir . '/temp/' . $context['base_path'] . $_REQUEST['filename']), true, $reverse, $theme_paths);
$context['operations'] = array(
'search' => strtr($smcFunc['htmlspecialchars']($mod_actions[$_REQUEST['operation_key']]['search_original']), array('[' => '[', ']' => ']')),
'replace' => strtr($smcFunc['htmlspecialchars']($mod_actions[$_REQUEST['operation_key']]['replace_original']), array('[' => '[', ']' => ']')),
'position' => $mod_actions[$_REQUEST['operation_key']]['position'],
);
$operation_text = $context['operations']['position'] == 'replace' ? 'operation_replace' : ($context['operations']['position'] == 'before' ? 'operation_after' : 'operation_before');
$context['operations']['search'] = parse_bbc('[code=' . $txt['operation_find'] . ']' . ($context['operations']['position'] == 'end' ? '?>' : $context['operations']['search']) . '[/code]');
$context['operations']['replace'] = parse_bbc('[code=' . $txt[$operation_text] . ']' . $context['operations']['replace'] . '[/code]');
$context['template_layers'] = array();
$context['sub_template'] = 'view_operations';
}
function PackagePermissions()
{
global $context, $txt, $modSettings, $boarddir, $sourcedir, $cachedir, $smcFunc, $package_ftp;
checkSession('get');
if (isset($_GET['restore']))
{
create_chmod_control(array(), array(), true);
fatal_lang_error('no_access', false);
}
setMemoryLimit('128M');
@set_time_limit(600);
create_chmod_control();
if (empty($package_ftp) && !isset($_POST['skip_ftp']))
{
require_once($sourcedir . '/Class-Package.php');
$ftp = new ftp_connection(null);
list ($username, $detect_path, $found_path) = $ftp->detect_path($boarddir);
$context['package_ftp'] = array(
'server' => isset($modSettings['package_server']) ? $modSettings['package_server'] : 'localhost',
'port' => isset($modSettings['package_port']) ? $modSettings['package_port'] : '21',
'username' => empty($username) ? (isset($modSettings['package_username']) ? $modSettings['package_username'] : '') : $username,
'path' => $detect_path,
'form_elements_only' => true,
);
}
else
$context['ftp_connected'] = true;
$context['page_title'] = $txt['package_file_perms'];
$context['sub_template'] = 'file_permissions';
$context['file_tree'] = array(
strtr($boarddir, array('\\' => '/')) => array(
'type' => 'dir',
'contents' => array(
'agreement.txt' => array(
'type' => 'file',
'writable_on' => 'standard',
),
'Settings.php' => array(
'type' => 'file',
'writable_on' => 'restrictive',
),
'Settings_bak.php' => array(
'type' => 'file',
'writable_on' => 'restrictive',
),
'attachments' => array(
'type' => 'dir',
'writable_on' => 'restrictive',
),
'avatars' => array(
'type' => 'dir',
'writable_on' => 'standard',
),
'cache' => array(
'type' => 'dir',
'writable_on' => 'restrictive',
),
'custom_avatar_dir' => array(
'type' => 'dir',
'writable_on' => 'restrictive',
),
'Smileys' => array(
'type' => 'dir_recursive',
'writable_on' => 'standard',
),
'Sources' => array(
'type' => 'dir_recursive',
'list_contents' => true,
'writable_on' => 'standard',
'contents' => array(
'tasks' => array(
'type' => 'dir',
'list_contents' => true,
),
),
),
'Themes' => array(
'type' => 'dir_recursive',
'writable_on' => 'standard',
'contents' => array(
'default' => array(
'type' => 'dir_recursive',
'list_contents' => true,
'contents' => array(
'languages' => array(
'type' => 'dir',
'list_contents' => true,
),
),
),
),
),
'Packages' => array(
'type' => 'dir',
'writable_on' => 'standard',
'contents' => array(
'temp' => array(
'type' => 'dir',
),
'backup' => array(
'type' => 'dir',
),
),
),
),
),
);
if (substr($sourcedir, 0, strlen($boarddir)) != $boarddir)
{
unset($context['file_tree'][strtr($boarddir, array('\\' => '/'))]['contents']['Sources']);
$context['file_tree'][strtr($sourcedir, array('\\' => '/'))] = array(
'type' => 'dir',
'list_contents' => true,
'writable_on' => 'standard',
);
}
if (substr($cachedir, 0, strlen($boarddir)) != $boarddir)
{
unset($context['file_tree'][strtr($boarddir, array('\\' => '/'))]['contents']['cache']);
$context['file_tree'][strtr($cachedir, array('\\' => '/'))] = array(
'type' => 'dir',
'list_contents' => false,
'writable_on' => 'restrictive',
);
}
if (!empty($modSettings['currentAttachmentUploadDir']))
{
unset($context['file_tree'][strtr($boarddir, array('\\' => '/'))]['contents']['attachments']);
if (!is_array($modSettings['attachmentUploadDir']))
$modSettings['attachmentUploadDir'] = $smcFunc['json_decode']($modSettings['attachmentUploadDir'], true);
foreach ($modSettings['attachmentUploadDir'] as $dir)
$context['file_tree'][strtr($dir, array('\\' => '/'))] = array(
'type' => 'dir',
'writable_on' => 'restrictive',
);
}
elseif (substr($modSettings['attachmentUploadDir'], 0, strlen($boarddir)) != $boarddir)
{
unset($context['file_tree'][strtr($boarddir, array('\\' => '/'))]['contents']['attachments']);
$context['file_tree'][strtr($modSettings['attachmentUploadDir'], array('\\' => '/'))] = array(
'type' => 'dir',
'writable_on' => 'restrictive',
);
}
if (substr($modSettings['smileys_dir'], 0, strlen($boarddir)) != $boarddir)
{
unset($context['file_tree'][strtr($boarddir, array('\\' => '/'))]['contents']['Smileys']);
$context['file_tree'][strtr($modSettings['smileys_dir'], array('\\' => '/'))] = array(
'type' => 'dir_recursive',
'writable_on' => 'standard',
);
}
if (substr($modSettings['avatar_directory'], 0, strlen($boarddir)) != $boarddir)
{
unset($context['file_tree'][strtr($boarddir, array('\\' => '/'))]['contents']['avatars']);
$context['file_tree'][strtr($modSettings['avatar_directory'], array('\\' => '/'))] = array(
'type' => 'dir',
'writable_on' => 'standard',
);
}
if (isset($modSettings['custom_avatar_dir']) && substr($modSettings['custom_avatar_dir'], 0, strlen($boarddir)) != $boarddir)
{
unset($context['file_tree'][strtr($boarddir, array('\\' => '/'))]['contents']['custom_avatar_dir']);
$context['file_tree'][strtr($modSettings['custom_avatar_dir'], array('\\' => '/'))] = array(
'type' => 'dir',
'writable_on' => 'restrictive',
);
}
$request = $smcFunc['db_query']('', '
SELECT value
FROM {db_prefix}themes
WHERE id_theme > {int:default_theme_id}
AND id_member = {int:guest_id}
AND variable = {string:theme_dir}
ORDER BY value ASC',
array(
'default_theme_id' => 1,
'guest_id' => 0,
'theme_dir' => 'theme_dir',
)
);
while ($row = $smcFunc['db_fetch_assoc']($request))
{
if (substr(strtolower(strtr($row['value'], array('\\' => '/'))), 0, strlen($boarddir) + 7) == strtolower(strtr($boarddir, array('\\' => '/')) . '/Themes'))
$context['file_tree'][strtr($boarddir, array('\\' => '/'))]['contents']['Themes']['contents'][substr($row['value'], strlen($boarddir) + 8)] = array(
'type' => 'dir_recursive',
'list_contents' => true,
'contents' => array(
'languages' => array(
'type' => 'dir',
'list_contents' => true,
),
),
);
else
{
$context['file_tree'][strtr($row['value'], array('\\' => '/'))] = array(
'type' => 'dir_recursive',
'list_contents' => true,
'contents' => array(
'languages' => array(
'type' => 'dir',
'list_contents' => true,
),
),
);
}
}
$smcFunc['db_free_result']($request);
if (isset($_POST['action_changes']))
return PackagePermissionsAction();
$context['look_for'] = array();
if (!empty($_REQUEST['find']))
$context['look_for'][] = base64_decode($_REQUEST['find']);
$context['only_find'] = isset($_GET['xml']) && !empty($_REQUEST['onlyfind']) ? $_REQUEST['onlyfind'] : '';
if ($context['only_find'])
$context['look_for'][] = $context['only_find'];
if (!empty($_GET['back_look']))
{
$potententialTrees = $smcFunc['json_decode'](base64_decode($_GET['back_look']), true);
foreach ($potententialTrees as $tree)
$context['look_for'][] = $tree;
}
if (!empty($_POST['back_look']))
$context['only_find'] = array_merge($context['only_find'], $_POST['back_look']);
$context['back_look_data'] = base64_encode($smcFunc['json_encode'](array_slice($context['look_for'], 0, 15)));
$context['file_offset'] = !empty($_REQUEST['fileoffset']) ? (int) $_REQUEST['fileoffset'] : 0;
$context['file_limit'] = 150;
$context['default_level'] = empty($context['only_find']) ? 2 : 25;
$context['xml_data'] = array(
'roots' => array(
'identifier' => 'root',
'children' => array(
array(
'value' => preg_replace('~[^A-Za-z0-9_\-=:]~', ':-:', $context['only_find']),
),
),
),
'folders' => array(
'identifier' => 'folder',
'children' => array(),
),
);
foreach ($context['file_tree'] as $path => $data)
{
if (file_exists($path) && (empty($context['only_find']) || substr($context['only_find'], 0, strlen($path)) == $path))
{
fetchPerms__recursive($path, $context['file_tree'][$path], 1);
$context['file_tree'][$path]['perms'] = array(
'chmod' => @is_writable($path),
'perms' => @fileperms($path),
);
}
else
unset($context['file_tree'][$path]);
}
if (isset($_GET['xml']))
{
loadTemplate('Xml');
$context['sub_template'] = 'generic_xml';
$context['template_layers'] = array();
}
}
function fetchPerms__recursive($path, &$data, $level)
{
global $context;
$isLikelyPath = false;
foreach ($context['look_for'] as $possiblePath)
if (substr($possiblePath, 0, strlen($path)) == $path)
$isLikelyPath = true;
if (isset($_GET['xml']) && !empty($context['look_for']) && !$isLikelyPath)
return;
elseif ($level > $context['default_level'] && !$isLikelyPath)
return;
$save_data = empty($context['only_find']) || $context['only_find'] == $path;
if (!is_dir($path))
fatal_lang_error('no_access', false);
$foundData = array(
'files' => array(),
'folders' => array(),
);
$dh = opendir($path);
while ($entry = readdir($dh))
{
if (is_file($path . '/' . $entry))
{
if ($save_data && !empty($data['list_contents']) && substr($entry, -4) == '.php')
$foundData['files'][$entry] = true;
elseif ($save_data && isset($data['contents'][$entry]))
$foundData['files'][$entry] = true;
}
elseif ($entry != '.' && $entry != '..')
{
if ((!empty($data['type']) && $data['type'] == 'dir_recursive') || (isset($data['contents'][$entry]) && (!empty($data['contents'][$entry]['list_contents']) || (!empty($data['contents'][$entry]['type']) && $data['contents'][$entry]['type'] == 'dir_recursive'))))
{
if (!isset($data['contents'][$entry]))
$foundData['folders'][$entry] = 'dir_recursive';
else
$foundData['folders'][$entry] = true;
if (!isset($data['contents'][$entry]))
$data['contents'][$entry] = array(
'type' => 'dir_recursive',
);
fetchPerms__recursive($path . '/' . $entry, $data['contents'][$entry], $level + 1);
}
elseif (isset($data['contents'][$entry]))
$foundData['folders'][$entry] = true;
}
}
closedir($dh);
if (!$save_data)
return;
ksort($foundData['folders']);
foreach ($foundData['folders'] as $folder => $type)
{
$additional_data = array(
'perms' => array(
'chmod' => @is_writable($path . '/' . $folder),
'perms' => @fileperms($path . '/' . $folder),
),
);
if ($type !== true)
$additional_data['type'] = $type;
if (isset($_GET['xml']) && $context['file_offset'] == 0)
{
$context['xml_data']['folders']['children'][] = array(
'attributes' => array(
'writable' => $additional_data['perms']['chmod'] ? 1 : 0,
'permissions' => substr(sprintf('%o', $additional_data['perms']['perms']), -4),
'folder' => 1,
'path' => $context['only_find'],
'level' => $level,
'more' => 0,
'offset' => $context['file_offset'],
'my_ident' => preg_replace('~[^A-Za-z0-9_\-=:]~', ':-:', $context['only_find'] . '/' . $folder),
'ident' => preg_replace('~[^A-Za-z0-9_\-=:]~', ':-:', $context['only_find']),
),
'value' => $folder,
);
}
elseif (!isset($_GET['xml']))
{
if (isset($data['contents'][$folder]))
$data['contents'][$folder] = array_merge($data['contents'][$folder], $additional_data);
else
$data['contents'][$folder] = $additional_data;
}
}
ksort($foundData['files']);
$counter = -1;
foreach ($foundData['files'] as $file => $dummy)
{
$counter++;
if ($context['file_offset'] > $counter)
continue;
if ($counter > ($context['file_offset'] + $context['file_limit']))
continue;
$additional_data = array(
'perms' => array(
'chmod' => @is_writable($path . '/' . $file),
'perms' => @fileperms($path . '/' . $file),
),
);
if (isset($_GET['xml']))
{
$context['xml_data']['folders']['children'][] = array(
'attributes' => array(
'writable' => $additional_data['perms']['chmod'] ? 1 : 0,
'permissions' => substr(sprintf('%o', $additional_data['perms']['perms']), -4),
'folder' => 0,
'path' => $context['only_find'],
'level' => $level,
'more' => $counter == ($context['file_offset'] + $context['file_limit']) ? 1 : 0,
'offset' => $context['file_offset'],
'my_ident' => preg_replace('~[^A-Za-z0-9_\-=:]~', ':-:', $context['only_find'] . '/' . $file),
'ident' => preg_replace('~[^A-Za-z0-9_\-=:]~', ':-:', $context['only_find']),
),
'value' => $file,
);
}
elseif ($counter != ($context['file_offset'] + $context['file_limit']))
{
if (isset($data['contents'][$file]))
$data['contents'][$file] = array_merge($data['contents'][$file], $additional_data);
else
$data['contents'][$file] = $additional_data;
}
}
}
function PackagePermissionsAction()
{
global $smcFunc, $context, $txt, $package_ftp;
umask(0);
$timeout_limit = 5;
$context['method'] = $_POST['method'] == 'individual' ? 'individual' : 'predefined';
$context['sub_template'] = 'action_permissions';
$context['page_title'] = $txt['package_file_perms_applying'];
$context['back_look_data'] = isset($_POST['back_look']) ? $_POST['back_look'] : array();
if (empty($package_ftp))
$context['skip_ftp'] = true;
if ($context['method'] == 'individual')
{
$legal_roots = array_keys($context['file_tree']);
$context['custom_value'] = (int) $_POST['custom_value'];
if (isset($_POST['toProcess']))
$_POST['permStatus'] = $smcFunc['json_decode'](base64_decode($_POST['toProcess']), true);
if (isset($_POST['permStatus']))
{
$context['to_process'] = array();
$validate_custom = false;
foreach ($_POST['permStatus'] as $path => $status)
{
if ($status == 'no_change')
continue;
$legal = false;
foreach ($legal_roots as $root)
if (substr($path, 0, strlen($root)) == $root)
$legal = true;
if (!$legal)
continue;
if (!file_exists($path))
continue;
if ($status == 'custom')
$validate_custom = true;
$context['to_process'][$path] = $status;
}
$context['total_items'] = isset($_POST['totalItems']) ? (int) $_POST['totalItems'] : count($context['to_process']);
if ($validate_custom)
{
if (preg_match('~^[4567][4567][4567]$~', $context['custom_value']) == false)
fatal_error($txt['chmod_value_invalid']);
}
if (empty($context['to_process']))
redirectexit('action=admin;area=packages;sa=perms' . (!empty($context['back_look_data']) ? ';back_look=' . base64_encode($smcFunc['json_encode']($context['back_look_data'])) : '') . ';' . $context['session_var'] . '=' . $context['session_id']);
}
else
fatal_lang_error('no_access', false);
$custom_value = octdec('0' . $context['custom_value']);
foreach ($context['to_process'] as $path => $status)
{
if (in_array($status, array('execute', 'writable', 'read')))
package_chmod($path, $status);
elseif ($status == 'custom' && !empty($custom_value))
{
if (!empty($package_ftp) && !empty($_SESSION['pack_ftp']))
{
$ftp_file = strtr($path, array($_SESSION['pack_ftp']['root'] => ''));
$package_ftp->chmod($ftp_file, $custom_value);
}
else
smf_chmod($path, $custom_value);
}
unset($context['to_process'][$path]);
if ((time() - TIME_START) > $timeout_limit)
{
$context['to_process_encode'] = base64_encode($smcFunc['json_encode']($context['to_process']));
return false;
}
}
$context['to_process_encode'] = base64_encode($smcFunc['json_encode']($context['to_process']));
}
else
{
$context['predefined_type'] = isset($_POST['predefined']) ? $_POST['predefined'] : 'restricted';
$context['total_items'] = isset($_POST['totalItems']) ? (int) $_POST['totalItems'] : 0;
$context['directory_list'] = isset($_POST['dirList']) ? $smcFunc['json_decode'](base64_decode($_POST['dirList']), true) : array();
$context['file_offset'] = isset($_POST['fileOffset']) ? (int) $_POST['fileOffset'] : 0;
if (empty($context['total_items']))
{
function count_directories__recursive($dir)
{
global $context;
$count = 0;
$dh = @opendir($dir);
while ($entry = readdir($dh))
{
if ($entry != '.' && $entry != '..' && is_dir($dir . '/' . $entry))
{
$context['directory_list'][$dir . '/' . $entry] = 1;
$count++;
$count += count_directories__recursive($dir . '/' . $entry);
}
}
closedir($dh);
return $count;
}
foreach ($context['file_tree'] as $path => $data)
{
if (is_dir($path))
{
$context['directory_list'][$path] = 1;
$context['total_items'] += count_directories__recursive($path);
$context['total_items']++;
}
}
}
if (!isset($_POST['specialFiles']) && $context['predefined_type'] != 'free')
{
$context['special_files'] = array();
function build_special_files__recursive($path, &$data)
{
global $context;
if (!empty($data['writable_on']))
if ($context['predefined_type'] == 'standard' || $data['writable_on'] == 'restrictive')
$context['special_files'][$path] = 1;
if (!empty($data['contents']))
foreach ($data['contents'] as $name => $contents)
build_special_files__recursive($path . '/' . $name, $contents);
}
foreach ($context['file_tree'] as $path => $data)
build_special_files__recursive($path, $data);
}
elseif ($context['predefined_type'] == 'free')
$context['special_files'] = array();
else
$context['special_files'] = $smcFunc['json_decode'](base64_decode($_POST['specialFiles']), true);
foreach ($context['directory_list'] as $path => $dummy)
{
$dh = @opendir($path);
$file_count = 0;
$dont_chmod = false;
while ($entry = readdir($dh))
{
$file_count++;
if (!$dont_chmod && !is_dir($path . '/' . $entry) && (empty($context['file_offset']) || $context['file_offset'] < $file_count))
{
$status = $context['predefined_type'] == 'free' || isset($context['special_files'][$path . '/' . $entry]) ? 'writable' : 'execute';
package_chmod($path . '/' . $entry, $status);
}
if (!$dont_chmod && (time() - TIME_START) > $timeout_limit)
{
$dont_chmod = true;
$context['file_offset'] = $file_count;
}
}
closedir($dh);
if ($dont_chmod)
{
$context['total_files'] = $file_count;
$context['directory_list_encode'] = base64_encode($smcFunc['json_encode']($context['directory_list']));
$context['special_files_encode'] = base64_encode($smcFunc['json_encode']($context['special_files']));
return false;
}
$status = $context['predefined_type'] == 'free' || isset($context['special_files'][$path]) ? 'writable' : 'execute';
package_chmod($path, $status);
$context['file_offset'] = 0;
unset($context['directory_list'][$path]);
if ((time() - TIME_START) > $timeout_limit)
{
$context['directory_list_encode'] = base64_encode($smcFunc['json_encode']($context['directory_list']));
$context['special_files_encode'] = base64_encode($smcFunc['json_encode']($context['special_files']));
return false;
}
}
$context['directory_list_encode'] = base64_encode($smcFunc['json_encode']($context['directory_list']));
$context['special_files_encode'] = base64_encode($smcFunc['json_encode']($context['special_files']));
}
redirectexit('action=admin;area=packages;sa=perms' . (!empty($context['back_look_data']) ? ';back_look=' . base64_encode($smcFunc['json_encode']($context['back_look_data'])) : '') . ';' . $context['session_var'] . '=' . $context['session_id']);
}
function PackageFTPTest()
{
global $context, $txt, $package_ftp;
checkSession('get');
create_chmod_control(array(), array('force_find_error' => true));
loadTemplate('Xml');
$context['sub_template'] = 'generic_xml';
$context['template_layers'] = array();
$context['xml_data'] = array(
'results' => array(
'identifier' => 'result',
'children' => array(
array(
'attributes' => array(
'success' => !empty($package_ftp) ? 1 : 0,
),
'value' => !empty($package_ftp) ? $txt['package_ftp_test_success'] : (isset($context['package_ftp'], $context['package_ftp']['error']) ? $context['package_ftp']['error'] : $txt['package_ftp_test_failed']),
),
),
),
);
}
?>