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: 2689: 2690: 2691: 2692: 2693: 2694: 2695: 2696: 2697: 2698: 2699: 2700: 2701: 2702: 2703: 2704: 2705: 2706: 2707: 2708: 2709: 2710: 2711: 2712: 2713: 2714: 2715: 2716: 2717: 2718: 2719: 2720: 2721: 2722: 2723: 2724: 2725: 2726: 2727: 2728: 2729: 2730: 2731: 2732: 2733: 2734: 2735: 2736: 2737: 2738: 2739: 2740: 2741: 2742: 2743: 2744: 2745: 2746: 2747: 2748: 2749: 2750: 2751: 2752: 2753: 2754: 2755: 2756: 2757: 2758: 2759: 2760: 2761: 2762: 2763: 2764: 2765: 2766: 2767: 2768: 2769: 2770: 2771: 2772: 2773: 2774: 2775: 2776: 2777: 2778: 2779: 2780: 2781: 2782: 2783: 2784: 2785: 2786: 2787: 2788: 2789: 2790: 2791: 2792: 2793: 2794: 2795: 2796: 2797: 2798: 2799: 2800: 2801: 2802: 2803: 2804: 2805: 2806: 2807: 2808: 2809: 2810: 2811: 2812: 2813: 2814: 2815: 2816: 2817: 2818: 2819: 2820: 2821: 2822: 2823: 2824: 2825: 2826: 2827: 2828: 2829: 2830: 2831: 2832: 2833: 2834: 2835: 2836: 2837: 2838: 2839: 2840: 2841: 2842: 2843: 2844: 2845: 2846: 2847: 2848: 2849: 2850: 2851: 2852: 2853: 2854: 2855: 2856: 2857: 2858: 2859: 2860: 2861: 2862: 2863: 2864: 2865: 2866: 2867: 2868: 2869: 2870: 2871: 2872: 2873: 2874: 2875: 2876: 2877: 2878: 2879: 2880: 2881: 2882: 2883: 2884: 2885: 2886: 2887: 2888: 2889: 2890: 2891: 2892: 2893: 2894: 2895: 2896: 2897: 2898: 2899: 2900: 2901: 2902: 2903: 2904: 2905: 2906: 2907: 2908: 2909: 2910: 2911: 2912: 2913: 2914: 2915: 2916: 2917: 2918: 2919: 2920: 2921: 2922: 2923: 2924: 2925: 2926: 2927: 2928: 2929: 2930: 2931: 2932: 2933: 2934: 2935: 2936: 2937: 2938: 2939: 2940: 2941: 2942: 2943: 2944: 2945: 2946: 2947: 2948: 2949: 2950: 2951: 2952: 2953: 2954: 2955: 2956: 2957: 2958: 2959: 2960: 2961: 2962: 2963: 2964: 2965: 2966: 2967: 2968: 2969: 2970: 2971: 2972: 2973: 2974: 2975: 2976: 2977: 2978: 2979: 2980: 2981: 2982: 2983: 2984: 2985: 2986: 2987: 2988: 2989: 2990: 2991: 2992: 2993: 2994: 2995: 2996: 2997: 2998: 2999: 3000: 3001: 3002: 3003: 3004: 3005: 3006: 3007: 3008: 3009: 3010: 3011: 3012: 3013: 3014: 3015: 3016: 3017: 3018: 3019: 3020: 3021: 3022: 3023: 3024: 3025: 3026: 3027: 3028: 3029: 3030: 3031: 3032: 3033: 3034: 3035: 3036: 3037: 3038: 3039: 3040: 3041: 3042: 3043: 3044: 3045: 3046: 3047: 3048: 3049: 3050: 3051: 3052: 3053: 3054: 3055: 3056: 3057: 3058: 3059: 3060: 3061: 3062: 3063: 3064: 3065: 3066: 3067: 3068: 3069: 3070: 3071: 3072: 3073: 3074: 3075: 3076: 3077: 3078: 3079: 3080: 3081: 3082: 3083: 3084: 3085: 3086: 3087: 3088: 3089: 3090: 3091: 3092: 3093: 3094: 3095: 3096: 3097: 3098: 3099: 3100: 3101: 3102: 3103: 3104: 3105: 3106: 3107: 3108: 3109: 3110: 3111: 3112: 3113: 3114: 3115: 3116: 3117: 3118: 3119: 3120: 3121: 3122: 3123: 3124: 3125: 3126: 3127: 3128: 3129: 3130: 3131: 3132: 3133: 3134: 3135: 3136: 3137: 3138: 3139: 3140: 3141: 3142: 3143: 3144: 3145: 3146: 3147: 3148: 3149: 3150: 3151: 3152: 3153: 3154: 3155: 3156: 3157: 3158: 3159: 3160: 3161: 3162: 3163: 3164: 3165: 3166: 3167: 3168: 3169: 3170: 3171: 3172: 3173: 3174: 3175: 3176: 3177: 3178: 3179: 3180: 3181: 3182: 3183: 3184: 3185: 3186: 3187: 3188: 3189: 3190: 3191: 3192: 3193: 3194: 3195: 3196:
<?php
if (!defined('SMF'))
die('No direct access...');
function Post($post_errors = array())
{
global $txt, $scripturl, $topic, $modSettings, $board;
global $user_info, $context, $settings;
global $sourcedir, $smcFunc, $language;
loadLanguage('Post');
if (!empty($modSettings['drafts_post_enabled']))
loadLanguage('Drafts');
if (isset($_REQUEST['poll']) && !empty($topic) && !isset($_REQUEST['msg']))
unset($_REQUEST['poll']);
$context['make_event'] = isset($_REQUEST['calendar']);
$context['robot_no_index'] = true;
call_integration_hook('integrate_post_start');
require_once($sourcedir . '/Subs-Notify.php');
$temp = getNotifyPrefs($user_info['id']);
$context['notify_prefs'] = (array) array_pop($temp);
$context['auto_notify'] = !empty($context['notify_prefs']['msg_auto_notify']);
if (empty($board) || $context['make_event'])
{
$post_permissions = array('post_new');
if ($modSettings['postmod_active'])
$post_permissions[] = 'post_unapproved_topics';
$boards = boardsAllowedTo($post_permissions);
if (empty($boards))
fatal_lang_error('cannot_post_new', false);
require_once($sourcedir . '/Subs-MessageIndex.php');
$boardListOptions = array(
'included_boards' => in_array(0, $boards) ? null : $boards,
'not_redirection' => true,
'use_permissions' => true,
'selected_board' => !empty($board) ? $board : ($context['make_event'] && !empty($modSettings['cal_defaultboard']) ? $modSettings['cal_defaultboard'] : $boards[0]),
);
$board_list = getBoardList($boardListOptions);
}
else
$boards = array($board);
require_once($sourcedir . '/Subs-Post.php');
if (isset($_REQUEST['xml']))
{
$context['sub_template'] = 'post';
$context['preview_message'] = '';
$context['preview_subject'] = '';
}
if (empty($topic) && !empty($_REQUEST['msg']))
{
$request = $smcFunc['db_query']('', '
SELECT id_topic
FROM {db_prefix}messages
WHERE id_msg = {int:msg}',
array(
'msg' => (int) $_REQUEST['msg'],
)
);
if ($smcFunc['db_num_rows']($request) != 1)
unset($_REQUEST['msg'], $_POST['msg'], $_GET['msg']);
else
list ($topic) = $smcFunc['db_fetch_row']($request);
$smcFunc['db_free_result']($request);
}
if (!empty($topic))
{
$request = $smcFunc['db_query']('', '
SELECT
t.locked, t.approved, COALESCE(ln.id_topic, 0) AS notify, t.is_sticky, t.id_poll, t.id_last_msg, mf.id_member,
t.id_first_msg, mf.subject, ml.modified_reason,
CASE WHEN ml.poster_time > ml.modified_time THEN ml.poster_time ELSE ml.modified_time END AS last_post_time
FROM {db_prefix}topics AS t
LEFT JOIN {db_prefix}log_notify AS ln ON (ln.id_topic = t.id_topic AND ln.id_member = {int:current_member})
LEFT JOIN {db_prefix}messages AS mf ON (mf.id_msg = t.id_first_msg)
LEFT JOIN {db_prefix}messages AS ml ON (ml.id_msg = t.id_last_msg)
WHERE t.id_topic = {int:current_topic}
LIMIT 1',
array(
'current_member' => $user_info['id'],
'current_topic' => $topic,
)
);
list ($locked, $topic_approved, $context['notify'], $sticky, $pollID, $context['topic_last_message'], $id_member_poster, $id_first_msg, $first_subject, $editReason, $lastPostTime) = $smcFunc['db_fetch_row']($request);
$smcFunc['db_free_result']($request);
if (isset($_REQUEST['poll']) && $pollID > 0)
unset($_REQUEST['poll']);
if (empty($_REQUEST['msg']))
{
if ($user_info['is_guest'] && !allowedTo('post_reply_any') && (!$modSettings['postmod_active'] || !allowedTo('post_unapproved_replies_any')))
is_not_guest();
$context['becomes_approved'] = true;
if ($id_member_poster != $user_info['id'] || $user_info['is_guest'])
{
if ($modSettings['postmod_active'] && allowedTo('post_unapproved_replies_any') && !allowedTo('post_reply_any'))
$context['becomes_approved'] = false;
else
isAllowedTo('post_reply_any');
}
elseif (!allowedTo('post_reply_any'))
{
if ($modSettings['postmod_active'] && ((allowedTo('post_unapproved_replies_own') && !allowedTo('post_reply_own')) || allowedTo('post_unapproved_replies_any')))
$context['becomes_approved'] = false;
else
isAllowedTo('post_reply_own');
}
}
else
$context['becomes_approved'] = true;
$context['can_lock'] = allowedTo('lock_any') || ($user_info['id'] == $id_member_poster && allowedTo('lock_own'));
$context['can_sticky'] = allowedTo('make_sticky');
$context['can_move'] = allowedTo('move_any');
$context['can_announce'] = allowedTo('announce_topic') && $context['becomes_approved'];
$context['show_approval'] = !allowedTo('approve_posts') ? 0 : ($context['becomes_approved'] ? 2 : 1);
$context['already_locked'] = $locked;
$context['already_sticky'] = $sticky;
$context['sticky'] = isset($_REQUEST['sticky']) ? !empty($_REQUEST['sticky']) : $sticky;
if (!empty($modSettings['oldTopicDays']) && $lastPostTime + $modSettings['oldTopicDays'] * 86400 < time() && empty($sticky) && !isset($_REQUEST['subject']))
$post_errors[] = array('old_topic', array($modSettings['oldTopicDays']));
}
else
{
$context['becomes_approved'] = true;
if ($modSettings['postmod_active'] && !allowedTo('post_new', $boards, true) && allowedTo('post_unapproved_topics', $boards, true))
$context['becomes_approved'] = false;
else
isAllowedTo('post_new', $boards, true);
$locked = 0;
$context['already_locked'] = 0;
$context['already_sticky'] = 0;
$context['sticky'] = !empty($_REQUEST['sticky']);
$context['can_lock'] = allowedTo(array('lock_any', 'lock_own'), $boards, true);
$context['can_sticky'] = allowedTo('make_sticky', $boards, true);
$context['can_move'] = allowedTo('move_any', $boards, true);
$context['can_announce'] = allowedTo('announce_topic', $boards, true) && $context['becomes_approved'];
$context['show_approval'] = !allowedTo('approve_posts', $boards, true) ? 0 : ($context['becomes_approved'] ? 2 : 1);
}
$context['notify'] = !empty($context['notify']);
$context['can_notify'] = !$context['user']['is_guest'];
$context['move'] = !empty($_REQUEST['move']);
$context['announce'] = !empty($_REQUEST['announce']);
$context['locked'] = !empty($locked) || !empty($_REQUEST['lock']);
$context['can_quote'] = empty($modSettings['disabledBBC']) || !in_array('quote', explode(',', $modSettings['disabledBBC']));
$context['current_attachments'] = array();
if (empty($_REQUEST['message']) && empty($_REQUEST['preview']) && !empty($_SESSION['already_attached']))
{
require_once($sourcedir . '/ManageAttachments.php');
foreach ($_SESSION['already_attached'] as $attachID => $attachment)
removeAttachments(array('id_attach' => $attachID));
unset($_SESSION['already_attached']);
}
if ($locked && !allowedTo('moderate_board'))
fatal_lang_error('topic_locked', false);
if (isset($_REQUEST['poll']) && $modSettings['pollMode'] == '1')
{
if (empty($topic))
isAllowedTo('poll_post');
elseif ($user_info['id'] == $id_member_poster && !allowedTo('poll_add_any'))
isAllowedTo('poll_add_own');
else
isAllowedTo('poll_add_any');
if (!empty($board))
{
require_once($sourcedir . '/Subs-Members.php');
$allowedVoteGroups = groupsAllowedTo('poll_vote', $board);
$guest_vote_enabled = in_array(-1, $allowedVoteGroups['allowed']);
}
else
$guest_vote_enabled = true;
$context['poll_options'] = array(
'max_votes' => empty($_POST['poll_max_votes']) ? '1' : max(1, $_POST['poll_max_votes']),
'hide' => empty($_POST['poll_hide']) ? 0 : $_POST['poll_hide'],
'expire' => !isset($_POST['poll_expire']) ? '' : $_POST['poll_expire'],
'change_vote' => isset($_POST['poll_change_vote']),
'guest_vote' => isset($_POST['poll_guest_vote']),
'guest_vote_enabled' => $guest_vote_enabled,
);
$context['choices'] = array(
array('id' => 0, 'number' => 1, 'label' => '', 'is_last' => false),
array('id' => 1, 'number' => 2, 'label' => '', 'is_last' => false),
array('id' => 2, 'number' => 3, 'label' => '', 'is_last' => false),
array('id' => 3, 'number' => 4, 'label' => '', 'is_last' => false),
array('id' => 4, 'number' => 5, 'label' => '', 'is_last' => true)
);
$context['last_choice_id'] = 4;
}
if ($context['make_event'])
{
if (!isset($context['current_board']))
$context['current_board'] = 0;
$context['event'] = array();
$context['event']['title'] = isset($_REQUEST['evtitle']) ? $smcFunc['htmlspecialchars'](stripslashes($_REQUEST['evtitle'])) : '';
$context['event']['location'] = isset($_REQUEST['event_location']) ? $smcFunc['htmlspecialchars'](stripslashes($_REQUEST['event_location'])) : '';
$context['event']['id'] = isset($_REQUEST['eventid']) ? (int) $_REQUEST['eventid'] : -1;
$context['event']['new'] = $context['event']['id'] == -1;
isAllowedTo('calendar_post');
require_once($sourcedir . '/Subs-Calendar.php');
$time_string = strtr(get_date_or_time_format('time'), array(
'%I' => '%l',
'%H' => '%k',
'%S' => '',
'%r' => '%l:%M %p',
'%R' => '%k:%M',
'%T' => '%l:%M',
));
if (empty($context['event']['new']) && !isset($_REQUEST['subject']))
{
if ((empty($id_member_poster) || $id_member_poster != $user_info['id'] || !allowedTo('modify_own')) && !allowedTo('modify_any'))
{
require_once($sourcedir . '/Calendar.php');
return CalendarPost();
}
$eventProperties = getEventProperties($context['event']['id']);
$context['event'] = array_merge($context['event'], $eventProperties);
}
else
{
$eventProperties = getNewEventDatetimes();
$context['event'] = array_merge($context['event'], $eventProperties);
if ($context['event']['month'] < 1 || $context['event']['month'] > 12)
fatal_lang_error('invalid_month', false);
if ($context['event']['year'] < $modSettings['cal_minyear'] || $context['event']['year'] > $modSettings['cal_maxyear'])
fatal_lang_error('invalid_year', false);
$context['event']['categories'] = $board_list;
}
$context['event']['last_day'] = (int) strftime('%d', mktime(0, 0, 0, $context['event']['month'] == 12 ? 1 : $context['event']['month'] + 1, 0, $context['event']['month'] == 12 ? $context['event']['year'] + 1 : $context['event']['year']));
if ($context['event']['allday'] == true)
{
$context['event']['tz'] = getUserTimezone();
$context['event']['start_time'] = timeformat(time(), $time_string);
$context['event']['end_time'] = timeformat(time() + 3600, $time_string);
}
else
{
$context['event']['start_time'] = $context['event']['start_time_orig'];
$context['event']['end_time'] = $context['event']['end_time_orig'];
}
$context['all_timezones'] = smf_list_timezones($context['event']['start_date']);
if (!isset($context['all_timezones'][$context['event']['tz']]))
{
$later = strtotime('@' . $context['event']['start_timestamp'] . ' + 1 year');
$tzinfo = timezone_transitions_get(timezone_open($context['event']['tz']), $context['event']['start_timestamp'], $later);
$found = false;
foreach ($context['all_timezones'] as $possible_tzid => $dummy)
{
$possible_tzinfo = timezone_transitions_get(timezone_open($possible_tzid), $context['event']['start_timestamp'], $later);
if ($tzinfo === $possible_tzinfo)
{
$context['event']['tz'] = $possible_tzid;
$found = true;
break;
}
}
if (!$found)
{
$d = date_create($context['event']['start_datetime'] . ' ' . $context['event']['tz']);
$context['all_timezones'] = array($context['event']['tz'] => '[UTC' . date_format($d, 'P') . '] - ' . $context['event']['tz']) + $context['all_timezones'];
}
}
loadDatePicker('#event_time_input .date_input');
loadTimePicker('#event_time_input .date_input', $time_string);
loadDatePair('#event_time_input', 'date_input', 'time_input');
addInlineJavaScript('
$("#allday").click(function(){
$("#start_time").attr("disabled", this.checked);
$("#end_time").attr("disabled", this.checked);
$("#tz").attr("disabled", this.checked);
}); ', true);
$context['event']['board'] = !empty($board) ? $board : $modSettings['cal_defaultboard'];
$context['event']['topic'] = !empty($topic) ? $topic : 0;
}
if (empty($_REQUEST['msg']) && !empty($topic))
{
if (isset($_REQUEST['last_msg']) && $context['topic_last_message'] > $_REQUEST['last_msg'])
{
$request = $smcFunc['db_query']('', '
SELECT COUNT(*)
FROM {db_prefix}messages
WHERE id_topic = {int:current_topic}
AND id_msg > {int:last_msg}' . (!$modSettings['postmod_active'] || allowedTo('approve_posts') ? '' : '
AND approved = {int:approved}') . '
LIMIT 1',
array(
'current_topic' => $topic,
'last_msg' => (int) $_REQUEST['last_msg'],
'approved' => 1,
)
);
list ($context['new_replies']) = $smcFunc['db_fetch_row']($request);
$smcFunc['db_free_result']($request);
if (!empty($context['new_replies']))
{
if ($context['new_replies'] == 1)
$txt['error_new_replies'] = isset($_GET['last_msg']) ? $txt['error_new_reply_reading'] : $txt['error_new_reply'];
else
$txt['error_new_replies'] = sprintf(isset($_GET['last_msg']) ? $txt['error_new_replies_reading'] : $txt['error_new_replies'], $context['new_replies']);
$post_errors[] = 'new_replies';
$modSettings['topicSummaryPosts'] = $context['new_replies'] > $modSettings['topicSummaryPosts'] ? max($modSettings['topicSummaryPosts'], 5) : $modSettings['topicSummaryPosts'];
}
}
}
if (!isset($context['response_prefix']) && !($context['response_prefix'] = cache_get_data('response_prefix')))
{
if ($language === $user_info['language'])
$context['response_prefix'] = $txt['response_prefix'];
else
{
loadLanguage('index', $language, false);
$context['response_prefix'] = $txt['response_prefix'];
loadLanguage('index');
}
cache_put_data('response_prefix', $context['response_prefix'], 600);
}
if (isset($_REQUEST['message']) || isset($_REQUEST['quickReply']) || !empty($context['post_error']))
{
if (isset($_REQUEST['quickReply']))
$_REQUEST['message'] = $_REQUEST['quickReply'];
if (empty($context['post_error']))
{
$really_previewing = true;
}
else
{
if (!isset($_REQUEST['subject']))
$_REQUEST['subject'] = '';
if (!isset($_REQUEST['message']))
$_REQUEST['message'] = '';
if (!isset($_REQUEST['icon']))
$_REQUEST['icon'] = 'xx';
$really_previewing = !empty($_POST['preview']);
}
$context['becomes_approved'] = empty($_REQUEST['not_approved']);
$context['show_approval'] = isset($_REQUEST['approve']) ? ($_REQUEST['approve'] ? 2 : 1) : (allowedTo('approve_posts') ? 2 : 0);
$context['can_announce'] &= $context['becomes_approved'];
$form_subject = strtr($smcFunc['htmlspecialchars']($_REQUEST['subject']), array("\r" => '', "\n" => '', "\t" => ''));
$form_message = $smcFunc['htmlspecialchars']($_REQUEST['message'], ENT_QUOTES);
if ($smcFunc['strlen']($form_subject) > 100)
$form_subject = $smcFunc['substr']($form_subject, 0, 100);
if (isset($_REQUEST['poll']))
{
$context['question'] = isset($_REQUEST['question']) ? $smcFunc['htmlspecialchars'](trim($_REQUEST['question'])) : '';
$context['choices'] = array();
$choice_id = 0;
$_POST['options'] = empty($_POST['options']) ? array() : htmlspecialchars__recursive($_POST['options']);
foreach ($_POST['options'] as $option)
{
if (trim($option) == '')
continue;
$context['choices'][] = array(
'id' => $choice_id++,
'number' => $choice_id,
'label' => $option,
'is_last' => false
);
}
$context['choices'][] = array(
'id' => $choice_id++,
'number' => $choice_id,
'label' => '',
'is_last' => false
);
if (count($context['choices']) < 2)
{
$context['choices'][] = array(
'id' => $choice_id++,
'number' => $choice_id,
'label' => '',
'is_last' => false
);
}
$context['last_choice_id'] = $choice_id;
$context['choices'][count($context['choices']) - 1]['is_last'] = true;
}
if ($user_info['is_guest'])
{
$_REQUEST['guestname'] = !isset($_REQUEST['guestname']) ? '' : trim($_REQUEST['guestname']);
$_REQUEST['email'] = !isset($_REQUEST['email']) ? '' : trim($_REQUEST['email']);
$_REQUEST['guestname'] = $smcFunc['htmlspecialchars']($_REQUEST['guestname']);
$context['name'] = $_REQUEST['guestname'];
$_REQUEST['email'] = $smcFunc['htmlspecialchars']($_REQUEST['email']);
$context['email'] = $_REQUEST['email'];
$user_info['name'] = $_REQUEST['guestname'];
}
if (($really_previewing == true || isset($_REQUEST['xml'])) && !isset($_REQUEST['save_draft']))
{
$context['preview_message'] = $form_message;
preparsecode($form_message, true);
preparsecode($context['preview_message']);
$context['preview_message'] = parse_bbc($context['preview_message'], isset($_REQUEST['ns']) ? 0 : 1);
censorText($context['preview_message']);
if ($form_subject != '')
{
$context['preview_subject'] = $form_subject;
censorText($context['preview_subject']);
}
else
$context['preview_subject'] = '<em>' . $txt['no_subject'] . '</em>';
call_integration_hook('integrate_preview_post', array(&$form_message, &$form_subject));
if (isset($_REQUEST['xml']))
$context['preview_message'] = strtr($context['preview_message'], array(']]>' => ']]]]><![CDATA[>'));
}
$context['notify'] = !empty($_REQUEST['notify']);
$context['use_smileys'] = !isset($_REQUEST['ns']);
$context['icon'] = isset($_REQUEST['icon']) ? preg_replace('~[\./\\\\*\':"<>]~', '', $_REQUEST['icon']) : 'xx';
$context['destination'] = 'post2;start=' . $_REQUEST['start'] . (isset($_REQUEST['msg']) ? ';msg=' . $_REQUEST['msg'] . ';' . $context['session_var'] . '=' . $context['session_id'] : '') . (isset($_REQUEST['poll']) ? ';poll' : '');
$context['submit_label'] = isset($_REQUEST['msg']) ? $txt['save'] : $txt['post'];
if (isset($_REQUEST['msg']) && !empty($topic))
{
$request = $smcFunc['db_query']('', '
SELECT
m.id_member, m.modified_time, m.smileys_enabled, m.body,
m.poster_name, m.poster_email, m.subject, m.icon, m.approved,
COALESCE(a.size, -1) AS filesize, a.filename, a.id_attach,
a.approved AS attachment_approved, t.id_member_started AS id_member_poster,
m.poster_time, log.id_action
FROM {db_prefix}messages AS m
INNER JOIN {db_prefix}topics AS t ON (t.id_topic = {int:current_topic})
LEFT JOIN {db_prefix}attachments AS a ON (a.id_msg = m.id_msg AND a.attachment_type = {int:attachment_type})
LEFT JOIN {db_prefix}log_actions AS log ON (m.id_topic = log.id_topic AND log.action = {string:announce_action})
WHERE m.id_msg = {int:id_msg}
AND m.id_topic = {int:current_topic}',
array(
'current_topic' => $topic,
'attachment_type' => 0,
'id_msg' => $_REQUEST['msg'],
'announce_action' => 'announce_topic',
)
);
if ($smcFunc['db_num_rows']($request) == 0)
fatal_lang_error('no_board', false);
$row = $smcFunc['db_fetch_assoc']($request);
$attachment_stuff = array($row);
while ($row2 = $smcFunc['db_fetch_assoc']($request))
$attachment_stuff[] = $row2;
$smcFunc['db_free_result']($request);
if ($row['id_member'] == $user_info['id'] && !allowedTo('modify_any'))
{
if ($row['approved'] && !empty($modSettings['edit_disable_time']) && $row['poster_time'] + ($modSettings['edit_disable_time'] + 5) * 60 < time())
fatal_lang_error('modify_post_time_passed', false);
elseif ($row['id_member_poster'] == $user_info['id'] && !allowedTo('modify_own'))
isAllowedTo('modify_replies');
else
isAllowedTo('modify_own');
}
elseif ($row['id_member_poster'] == $user_info['id'] && !allowedTo('modify_any'))
isAllowedTo('modify_replies');
else
isAllowedTo('modify_any');
if ($context['can_announce'] && !empty($row['id_action']))
{
loadLanguage('Errors');
$context['post_error']['messages'][] = $txt['error_topic_already_announced'];
}
if (!empty($modSettings['attachmentEnable']))
{
$request = $smcFunc['db_query']('', '
SELECT COALESCE(size, -1) AS filesize, filename, id_attach, approved, mime_type, id_thumb
FROM {db_prefix}attachments
WHERE id_msg = {int:id_msg}
AND attachment_type = {int:attachment_type}
ORDER BY id_attach',
array(
'id_msg' => (int) $_REQUEST['msg'],
'attachment_type' => 0,
)
);
while ($row = $smcFunc['db_fetch_assoc']($request))
{
if ($row['filesize'] <= 0)
continue;
$context['current_attachments'][$row['id_attach']] = array(
'name' => $smcFunc['htmlspecialchars']($row['filename']),
'size' => $row['filesize'],
'attachID' => $row['id_attach'],
'approved' => $row['approved'],
'mime_type' => $row['mime_type'],
'thumb' => $row['id_thumb'],
);
}
$smcFunc['db_free_result']($request);
}
if (allowedTo('moderate_forum') && !empty($topic))
{
$request = $smcFunc['db_query']('', '
SELECT id_member, poster_name, poster_email
FROM {db_prefix}messages
WHERE id_msg = {int:id_msg}
AND id_topic = {int:current_topic}
LIMIT 1',
array(
'current_topic' => $topic,
'id_msg' => (int) $_REQUEST['msg'],
)
);
$row = $smcFunc['db_fetch_assoc']($request);
$smcFunc['db_free_result']($request);
if (empty($row['id_member']))
{
$context['name'] = $smcFunc['htmlspecialchars']($row['poster_name']);
$context['email'] = $smcFunc['htmlspecialchars']($row['poster_email']);
}
}
}
checkSubmitOnce('free');
}
elseif (isset($_REQUEST['msg']) && !empty($topic))
{
$context['editing'] = true;
$_REQUEST['msg'] = (int) $_REQUEST['msg'];
$request = $smcFunc['db_query']('', '
SELECT
m.id_member, m.modified_time, m.modified_name, m.modified_reason, m.smileys_enabled, m.body,
m.poster_name, m.poster_email, m.subject, m.icon, m.approved,
COALESCE(a.size, -1) AS filesize, a.filename, a.id_attach, a.mime_type, a.id_thumb,
a.approved AS attachment_approved, t.id_member_started AS id_member_poster,
m.poster_time, log.id_action
FROM {db_prefix}messages AS m
INNER JOIN {db_prefix}topics AS t ON (t.id_topic = {int:current_topic})
LEFT JOIN {db_prefix}attachments AS a ON (a.id_msg = m.id_msg AND a.attachment_type = {int:attachment_type})
LEFT JOIN {db_prefix}log_actions AS log ON (m.id_topic = log.id_topic AND log.action = {string:announce_action})
WHERE m.id_msg = {int:id_msg}
AND m.id_topic = {int:current_topic}',
array(
'current_topic' => $topic,
'attachment_type' => 0,
'id_msg' => $_REQUEST['msg'],
'announce_action' => 'announce_topic',
)
);
if ($smcFunc['db_num_rows']($request) == 0)
fatal_lang_error('no_message', false);
$row = $smcFunc['db_fetch_assoc']($request);
$attachment_stuff = array($row);
while ($row2 = $smcFunc['db_fetch_assoc']($request))
$attachment_stuff[] = $row2;
$smcFunc['db_free_result']($request);
if ($row['id_member'] == $user_info['id'] && !allowedTo('modify_any'))
{
if ($row['approved'] && !empty($modSettings['edit_disable_time']) && $row['poster_time'] + ($modSettings['edit_disable_time'] + 5) * 60 < time())
fatal_lang_error('modify_post_time_passed', false);
elseif ($row['id_member_poster'] == $user_info['id'] && !allowedTo('modify_own'))
isAllowedTo('modify_replies');
else
isAllowedTo('modify_own');
}
elseif ($row['id_member_poster'] == $user_info['id'] && !allowedTo('modify_any'))
isAllowedTo('modify_replies');
else
isAllowedTo('modify_any');
if ($context['can_announce'] && !empty($row['id_action']))
{
loadLanguage('Errors');
$context['post_error']['messages'][] = $txt['error_topic_already_announced'];
}
if (!empty($row['modified_time']))
{
$context['last_modified'] = timeformat($row['modified_time']);
$context['last_modified_reason'] = censorText($row['modified_reason']);
$context['last_modified_text'] = sprintf($txt['last_edit_by'], $context['last_modified'], $row['modified_name']) . empty($row['modified_reason']) ? '' : ' ' . $txt['last_edit_reason'] . ': ' . $row['modified_reason'];
}
$form_subject = $row['subject'];
$form_message = un_preparsecode($row['body']);
censorText($form_message);
censorText($form_subject);
$context['use_smileys'] = !empty($row['smileys_enabled']);
$context['icon'] = $row['icon'];
if (!$row['approved'] && !empty($context['show_approval']))
$context['show_approval'] = 1;
$temp = array();
foreach ($attachment_stuff as $attachment)
{
if ($attachment['filesize'] >= 0 && !empty($modSettings['attachmentEnable']))
$temp[$attachment['id_attach']] = $attachment;
}
ksort($temp);
foreach ($temp as $attachment)
{
$context['current_attachments'][$attachment['id_attach']] = array(
'name' => $smcFunc['htmlspecialchars']($attachment['filename']),
'size' => $attachment['filesize'],
'attachID' => $attachment['id_attach'],
'approved' => $attachment['attachment_approved'],
'mime_type' => $attachment['mime_type'],
'thumb' => $attachment['id_thumb'],
);
}
if (allowedTo('moderate_forum') && empty($row['id_member']))
{
$context['name'] = $smcFunc['htmlspecialchars']($row['poster_name']);
$context['email'] = $smcFunc['htmlspecialchars']($row['poster_email']);
}
$context['destination'] = 'post2;start=' . $_REQUEST['start'] . ';msg=' . $_REQUEST['msg'] . ';' . $context['session_var'] . '=' . $context['session_id'] . (isset($_REQUEST['poll']) ? ';poll' : '');
$context['submit_label'] = $txt['save'];
}
else
{
$context['use_smileys'] = true;
$context['icon'] = 'xx';
if ($user_info['is_guest'])
{
$context['name'] = isset($_SESSION['guest_name']) ? $_SESSION['guest_name'] : '';
$context['email'] = isset($_SESSION['guest_email']) ? $_SESSION['guest_email'] : '';
}
$context['destination'] = 'post2;start=' . $_REQUEST['start'] . (isset($_REQUEST['poll']) ? ';poll' : '');
$context['submit_label'] = $txt['post'];
if (!empty($topic) && !empty($_REQUEST['quote']))
{
$request = $smcFunc['db_query']('', '
SELECT m.subject, COALESCE(mem.real_name, m.poster_name) AS poster_name, m.poster_time, m.body
FROM {db_prefix}messages AS m
LEFT JOIN {db_prefix}members AS mem ON (mem.id_member = m.id_member)
WHERE {query_see_message_board}
AND m.id_msg = {int:id_msg}' . (!$modSettings['postmod_active'] || allowedTo('approve_posts') ? '' : '
AND m.approved = {int:is_approved}') . '
LIMIT 1',
array(
'id_msg' => (int) $_REQUEST['quote'],
'is_approved' => 1,
)
);
if ($smcFunc['db_num_rows']($request) == 0)
fatal_lang_error('quoted_post_deleted', false);
list ($form_subject, $mname, $mdate, $form_message) = $smcFunc['db_fetch_row']($request);
$smcFunc['db_free_result']($request);
if (trim($context['response_prefix']) != '' && $smcFunc['strpos']($form_subject, trim($context['response_prefix'])) !== 0)
$form_subject = $context['response_prefix'] . $form_subject;
censorText($form_message);
censorText($form_subject);
if (strpos($form_message, '[html]') !== false)
{
$parts = preg_split('~(\[/code\]|\[code(?:=[^\]]+)?\])~i', $form_message, -1, PREG_SPLIT_DELIM_CAPTURE);
for ($i = 0, $n = count($parts); $i < $n; $i++)
{
if ($i % 4 == 0)
$parts[$i] = preg_replace_callback('~\[html\](.+?)\[/html\]~is', function($m)
{
return '[html]' . preg_replace('~<br\s?/?' . '>~i', '<br /><br>', "$m[1]") . '[/html]';
}, $parts[$i]);
}
$form_message = implode('', $parts);
}
$form_message = preg_replace('~<br ?/?' . '>~i', "\n", $form_message);
if (!empty($modSettings['removeNestedQuotes']))
$form_message = preg_replace(array('~\n?\[quote.*?\].+?\[/quote\]\n?~is', '~^\n~', '~\[/quote\]~'), '', $form_message);
$form_message = '[quote author=' . $mname . ' link=msg=' . (int) $_REQUEST['quote'] . ' date=' . $mdate . ']' . "\n" . rtrim($form_message) . "\n" . '[/quote]';
}
elseif (!empty($topic) && empty($_REQUEST['quote']))
{
$form_subject = $first_subject;
if (trim($context['response_prefix']) != '' && $form_subject != '' && $smcFunc['strpos']($form_subject, trim($context['response_prefix'])) !== 0)
$form_subject = $context['response_prefix'] . $form_subject;
censorText($form_subject);
$form_message = '';
}
else
{
$form_subject = isset($_GET['subject']) ? $_GET['subject'] : '';
$form_message = '';
}
}
$context['can_post_attachment'] = !empty($modSettings['attachmentEnable']) && $modSettings['attachmentEnable'] == 1 && (allowedTo('post_attachment', $boards, true) || ($modSettings['postmod_active'] && allowedTo('post_unapproved_attachments', $boards, true)));
if ($context['can_post_attachment'])
{
$context['attachments']['total_size'] = 0;
$context['attachments']['quantity'] = 0;
if (isset($_REQUEST['msg']))
{
$context['attachments']['quantity'] = count($context['current_attachments']);
foreach ($context['current_attachments'] as $attachment)
$context['attachments']['total_size'] += $attachment['size'];
}
if (!empty($_SESSION['temp_attachments']) && count($_SESSION['temp_attachments']) == 1)
unset($_SESSION['temp_attachments']);
if (!empty($_SESSION['temp_attachments']))
{
if (isset($_GET['delete_temp']))
{
foreach ($_SESSION['temp_attachments'] as $attachID => $attachment)
{
if (strpos($attachID, 'post_tmp_' . $user_info['id']) !== false)
if (file_exists($attachment['tmp_name']))
unlink($attachment['tmp_name']);
}
$post_errors[] = 'temp_attachments_gone';
$_SESSION['temp_attachments'] = array();
}
elseif ($context['current_action'] != 'post2' || !empty($_POST['from_qr']))
{
if ((empty($_REQUEST['msg']) && empty($_SESSION['temp_attachments']['post']['msg']) && $_SESSION['temp_attachments']['post']['board'] == (!empty($board) ? $board : 0)) || (!empty($_REQUEST['msg']) && $_SESSION['temp_attachments']['post']['msg'] == $_REQUEST['msg']))
{
foreach ($_SESSION['temp_attachments'] as $attachID => $attachment)
{
if (strpos($attachID, 'post_tmp_' . $user_info['id']) === false)
continue;
if (file_exists($attachment['tmp_name']))
{
$post_errors[] = 'temp_attachments_new';
$context['files_in_session_warning'] = $txt['attached_files_in_session'];
unset($_SESSION['temp_attachments']['post']['files']);
break;
}
}
}
else
{
if (!empty($topic))
$delete_url = $scripturl . '?action=post' . (!empty($_REQUEST['msg']) ? (';msg=' . $_REQUEST['msg']) : '') . (!empty($_REQUEST['last_msg']) ? (';last_msg=' . $_REQUEST['last_msg']) : '') . ';topic=' . $topic . ';delete_temp';
else
$delete_url = $scripturl . '?action=post' . (!empty($board) ? ';board=' . $board : '') . ';delete_temp';
$file_list = array();
foreach ($_SESSION['temp_attachments'] as $attachID => $attachment)
if (strpos($attachID, 'post_tmp_' . $user_info['id']) !== false)
$file_list[] = $attachment['name'];
$_SESSION['temp_attachments']['post']['files'] = $file_list;
$file_list = '<div class="attachments">' . implode('<br>', $file_list) . '</div>';
if (!empty($_SESSION['temp_attachments']['post']['msg']))
{
$goback_url = $scripturl . '?action=post' . (!empty($_SESSION['temp_attachments']['post']['msg']) ? (';msg=' . $_SESSION['temp_attachments']['post']['msg']) : '') . (!empty($_SESSION['temp_attachments']['post']['last_msg']) ? (';last_msg=' . $_SESSION['temp_attachments']['post']['last_msg']) : '') . ';topic=' . $_SESSION['temp_attachments']['post']['topic'] . ';additionalOptions';
$post_errors[] = array('temp_attachments_found', array($delete_url, $goback_url, $file_list));
$context['ignore_temp_attachments'] = true;
}
else
{
$post_errors[] = array('temp_attachments_lost', array($delete_url, $file_list));
$context['ignore_temp_attachments'] = true;
}
}
}
if (!empty($context['we_are_history']))
$post_errors[] = $context['we_are_history'];
foreach ($_SESSION['temp_attachments'] as $attachID => $attachment)
{
if (isset($context['ignore_temp_attachments']) || isset($_SESSION['temp_attachments']['post']['files']))
break;
if ($attachID != 'initial_error' && strpos($attachID, 'post_tmp_' . $user_info['id']) === false)
continue;
if ($attachID == 'initial_error')
{
$txt['error_attach_initial_error'] = $txt['attach_no_upload'] . '<div style="padding: 0 1em;">' . (is_array($attachment) ? vsprintf($txt[$attachment[0]], $attachment[1]) : $txt[$attachment]) . '</div>';
$post_errors[] = 'attach_initial_error';
unset($_SESSION['temp_attachments']);
break;
}
if (!empty($attachment['errors']))
{
$txt['error_attach_errors'] = empty($txt['error_attach_errors']) ? '<br>' : '';
$txt['error_attach_errors'] .= vsprintf($txt['attach_warning'], $attachment['name']) . '<div style="padding: 0 1em;">';
foreach ($attachment['errors'] as $error)
$txt['error_attach_errors'] .= (is_array($error) ? vsprintf($txt[$error[0]], $error[1]) : $txt[$error]) . '<br >';
$txt['error_attach_errors'] .= '</div>';
$post_errors[] = 'attach_errors';
unset($_SESSION['temp_attachments'][$attachID]);
if (file_exists($attachment['tmp_name']))
unlink($attachment['tmp_name']);
continue;
}
if (!file_exists($attachment['tmp_name']))
{
unset($_SESSION['temp_attachments'][$attachID]);
continue;
}
$context['attachments']['quantity']++;
$context['attachments']['total_size'] += $attachment['size'];
if (!isset($context['files_in_session_warning']))
$context['files_in_session_warning'] = $txt['attached_files_in_session'];
$context['current_attachments'][$attachID] = array(
'name' => $smcFunc['htmlspecialchars']($attachment['name']),
'size' => $attachment['size'],
'attachID' => $attachID,
'unchecked' => false,
'approved' => 1,
'mime_type' => '',
'thumb' => 0,
);
}
}
}
$context['require_verification'] = !$user_info['is_mod'] && !$user_info['is_admin'] && !empty($modSettings['posts_require_captcha']) && ($user_info['posts'] < $modSettings['posts_require_captcha'] || ($user_info['is_guest'] && $modSettings['posts_require_captcha'] == -1));
if ($context['require_verification'])
{
require_once($sourcedir . '/Subs-Editor.php');
$verificationOptions = array(
'id' => 'post',
);
$context['require_verification'] = create_control_verification($verificationOptions);
$context['visual_verification_id'] = $verificationOptions['id'];
}
if (!empty($_REQUEST['from_qr']) && !empty($context['require_verification']))
$post_errors[] = 'need_qr_verification';
$minor_errors = array('not_approved', 'new_replies', 'old_topic', 'need_qr_verification', 'no_subject', 'topic_locked', 'topic_unlocked', 'topic_stickied', 'topic_unstickied', 'cannot_post_attachment');
call_integration_hook('integrate_post_errors', array(&$post_errors, &$minor_errors, $form_message, $form_subject));
if (!empty($post_errors))
{
loadLanguage('Errors');
$context['error_type'] = 'minor';
foreach ($post_errors as $post_error)
if (is_array($post_error))
{
$post_error_id = $post_error[0];
$context['post_error'][$post_error_id] = vsprintf($txt['error_' . $post_error_id], $post_error[1]);
if (!in_array($post_error_id, $minor_errors))
$context['error_type'] = 'serious';
}
else
{
$context['post_error'][$post_error] = $txt['error_' . $post_error];
if (!in_array($post_error, $minor_errors))
$context['error_type'] = 'serious';
}
}
if (isset($_REQUEST['poll']))
$context['page_title'] = $txt['new_poll'];
elseif ($context['make_event'])
$context['page_title'] = $context['event']['id'] == -1 ? $txt['calendar_post_event'] : $txt['calendar_edit'];
elseif (isset($_REQUEST['msg']))
$context['page_title'] = $txt['modify_msg'];
elseif (isset($_REQUEST['subject'], $context['preview_subject']))
$context['page_title'] = $txt['preview'] . ' - ' . strip_tags($context['preview_subject']);
elseif (empty($topic))
$context['page_title'] = $txt['start_new_topic'];
else
$context['page_title'] = $txt['post_reply'];
if (empty($topic))
$context['linktree'][] = array(
'name' => '<em>' . $txt['start_new_topic'] . '</em>'
);
else
$context['linktree'][] = array(
'url' => $scripturl . '?topic=' . $topic . '.' . $_REQUEST['start'],
'name' => $form_subject,
'extra_before' => '<span><strong class="nav">' . $context['page_title'] . ' (</strong></span>',
'extra_after' => '<span><strong class="nav">)</strong></span>'
);
$context['subject'] = addcslashes($form_subject, '"');
$context['message'] = str_replace(array('"', '<', '>', ' '), array('"', '<', '>', ' '), $form_message);
$context['drafts_save'] = !empty($modSettings['drafts_post_enabled']) && allowedTo('post_draft');
$context['drafts_autosave'] = !empty($context['drafts_save']) && !empty($modSettings['drafts_autosave_enabled']) && allowedTo('post_autosave_draft');
if (!empty($context['drafts_save']))
{
require_once($sourcedir . '/Drafts.php');
ShowDrafts($user_info['id'], $topic);
}
require_once($sourcedir . '/Subs-Editor.php');
$editorOptions = array(
'id' => 'message',
'value' => $context['message'],
'labels' => array(
'post_button' => $context['submit_label'],
),
'height' => '175px',
'width' => '100%',
'preview_type' => 2,
'required' => true,
);
create_control_richedit($editorOptions);
$context['post_box_name'] = $editorOptions['id'];
$context['attached'] = '';
$context['make_poll'] = isset($_REQUEST['poll']);
$context['icons'] = getMessageIcons(!empty($board) ? $board : 0);
if (!empty($context['icons']))
$context['icons'][count($context['icons']) - 1]['is_last'] = true;
if (isset($_REQUEST['poll']))
{
foreach ($context['icons'] as $icons)
{
if (isset($icons['value']) && $icons['value'] == 'poll')
{
$context['icon'] = 'poll';
break;
}
}
}
$context['icon_url'] = '';
for ($i = 0, $n = count($context['icons']); $i < $n; $i++)
{
$context['icons'][$i]['selected'] = $context['icon'] == $context['icons'][$i]['value'];
if ($context['icons'][$i]['selected'])
$context['icon_url'] = $context['icons'][$i]['url'];
}
if (empty($context['icon_url']))
{
$context['icon_url'] = $settings[file_exists($settings['theme_dir'] . '/images/post/' . $context['icon'] . '.png') ? 'images_url' : 'default_images_url'] . '/post/' . $context['icon'] . '.png';
array_unshift($context['icons'], array(
'value' => $context['icon'],
'name' => $txt['current_icon'],
'url' => $context['icon_url'],
'is_last' => empty($context['icons']),
'selected' => true,
));
}
if (!empty($topic) && !empty($modSettings['topicSummaryPosts']))
getTopic();
if ($context['can_post_attachment'])
{
$context['num_allowed_attachments'] = min(ini_get('max_file_uploads'), (empty($modSettings['attachmentNumPerPostLimit']) ? 50 : $modSettings['attachmentNumPerPostLimit'] - count($context['current_attachments'])));
$context['can_post_attachment_unapproved'] = allowedTo('post_attachment');
$context['attachment_restrictions'] = array();
$context['allowed_extensions'] = !empty($modSettings['attachmentCheckExtensions']) ? (strtr(strtolower($modSettings['attachmentExtensions']), array(',' => ', '))) : '';
$attachmentRestrictionTypes = array('attachmentNumPerPostLimit', 'attachmentPostLimit', 'attachmentSizeLimit');
foreach ($attachmentRestrictionTypes as $type)
if (!empty($modSettings[$type]))
{
if ($type == 'attachmentNumPerPostLimit')
$context['attachment_restrictions'][] = sprintf($txt['attach_remaining'], $modSettings['attachmentNumPerPostLimit'] - $context['attachments']['quantity']);
}
}
$context['back_to_topic'] = isset($_REQUEST['goback']) || (isset($_REQUEST['msg']) && !isset($_REQUEST['subject']));
$context['show_additional_options'] = !empty($_POST['additional_options']) || isset($_SESSION['temp_attachments']['post']) || isset($_GET['additionalOptions']);
$context['is_new_topic'] = empty($topic);
$context['is_new_post'] = !isset($_REQUEST['msg']);
$context['is_first_post'] = $context['is_new_topic'] || (isset($_REQUEST['msg']) && $_REQUEST['msg'] == $id_first_msg);
checkSubmitOnce('register');
if (!empty($modSettings['enable_mentions']) && allowedTo('mention'))
{
loadJavaScriptFile('jquery.caret.min.js', array('defer' => true), 'smf_caret');
loadJavaScriptFile('jquery.atwho.min.js', array('defer' => true), 'smf_atwho');
loadJavaScriptFile('mentions.js', array('defer' => true, 'minimize' => true), 'smf_mentions');
}
loadJavaScriptFile('quotedText.js', array('defer' => true, 'minimize' => true), 'smf_quotedText');
addInlineJavaScript('
var current_attachments = [];');
if (!empty($context['current_attachments']))
{
foreach ($context['current_attachments'] as $key => $mock)
addInlineJavaScript('
current_attachments.push({
name: ' . JavaScriptEscape($mock['name']) . ',
size: ' . $mock['size'] . ',
attachID: ' . $mock['attachID'] . ',
approved: ' . $mock['approved'] . ',
type: ' . JavaScriptEscape(!empty($mock['mime_type']) ? $mock['mime_type'] : '') . ',
thumbID: ' . (!empty($mock['thumb']) ? $mock['thumb'] : 0) . '
});');
}
if ($context['can_post_attachment'])
{
$acceptedFiles = empty($context['allowed_extensions']) ? '' : implode(',', array_map(function ($val) use ($smcFunc)
{
return !empty($val) ? ('.' . $smcFunc['htmltrim']($val)) : '';
}, explode(',', $context['allowed_extensions'])));
loadJavaScriptFile('dropzone.min.js', array('defer' => true), 'smf_dropzone');
loadJavaScriptFile('smf_fileUpload.js', array('defer' => true, 'minimize' => true), 'smf_fileUpload');
addInlineJavaScript('
$(function() {
smf_fileUpload({
dictDefaultMessage : ' . JavaScriptEscape($txt['attach_drop_zone']) . ',
dictFallbackMessage : ' . JavaScriptEscape($txt['attach_drop_zone_no']) . ',
dictCancelUpload : ' . JavaScriptEscape($txt['modify_cancel']) . ',
genericError: ' . JavaScriptEscape($txt['attach_php_error']) . ',
text_attachLeft: ' . JavaScriptEscape($txt['attachments_left']) . ',
text_deleteAttach: ' . JavaScriptEscape($txt['attached_file_delete']) . ',
text_attachDeleted: ' . JavaScriptEscape($txt['attached_file_deleted']) . ',
text_insertBBC: ' . JavaScriptEscape($txt['attached_insert_bbc']) . ',
text_attachUploaded: ' . JavaScriptEscape($txt['attached_file_uploaded']) . ',
text_attach_unlimited: ' . JavaScriptEscape($txt['attach_drop_unlimited']) . ',
text_totalMaxSize: ' . JavaScriptEscape($txt['attach_max_total_file_size_current']) . ',
text_max_size_progress: ' . JavaScriptEscape($txt['attach_max_size_progress']) . ',
dictMaxFilesExceeded: ' . JavaScriptEscape($txt['more_attachments_error']) . ',
dictInvalidFileType: ' . JavaScriptEscape(sprintf($txt['cant_upload_type'], $context['allowed_extensions'])) . ',
dictFileTooBig: ' . JavaScriptEscape(sprintf($txt['file_too_big'], comma_format($modSettings['attachmentSizeLimit'], 0))) . ',
acceptedFiles: ' . JavaScriptEscape($acceptedFiles) . ',
thumbnailWidth: ' . (!empty($modSettings['attachmentThumbWidth']) ? $modSettings['attachmentThumbWidth'] : 'null') . ',
thumbnailHeight: ' . (!empty($modSettings['attachmentThumbHeight']) ? $modSettings['attachmentThumbHeight'] : 'null') . ',
limitMultiFileUploadSize:' . round(max($modSettings['attachmentPostLimit'] - ($context['attachments']['total_size'] / 1024), 0)) * 1024 . ',
maxFileAmount: ' . (!empty($context['num_allowed_attachments']) ? $context['num_allowed_attachments'] : 'null') . ',
maxTotalSize: ' . (!empty($modSettings['attachmentPostLimit']) ? $modSettings['attachmentPostLimit'] : '0') . ',
maxFileSize: ' . (!empty($modSettings['attachmentSizeLimit']) ? $modSettings['attachmentSizeLimit'] : '0') . ',
});
});', true);
}
addInlineJavaScript('
var current_board = ' . (empty($context['current_board']) ? 'null' : $context['current_board']) . ';', false);
$context['posting_fields'] = array();
if (isset($context['name']) && isset($context['email']))
{
$context['posting_fields']['guestname'] = array(
'label' => array(
'text' => $txt['name'],
'class' => isset($context['post_error']['long_name']) || isset($context['post_error']['no_name']) || isset($context['post_error']['bad_name']) ? 'error' : '',
),
'input' => array(
'type' => 'text',
'attributes' => array(
'size' => 25,
'value' => $context['name'],
'required' => true,
),
),
);
if (empty($modSettings['guest_post_no_email']))
{
$context['posting_fields']['email'] = array(
'label' => array(
'text' => $txt['email'],
'class' => isset($context['post_error']['no_email']) || isset($context['post_error']['bad_email']) ? 'error' : '',
),
'input' => array(
'type' => 'email',
'attributes' => array(
'size' => 25,
'value' => $context['email'],
'required' => true,
),
),
);
}
}
if (empty($board) && !$context['make_event'])
{
$context['posting_fields']['board'] = array(
'label' => array(
'text' => $txt['calendar_post_in'],
),
'input' => array(
'type' => 'select',
'options' => array(),
),
);
foreach ($board_list as $category)
{
$context['posting_fields']['board']['input']['options'][$category['name']] = array('options' => array());
foreach ($category['boards'] as $brd)
$context['posting_fields']['board']['input']['options'][$category['name']]['options'][$brd['name']] = array(
'value' => $brd['id'],
'selected' => (bool) $brd['selected'],
'label' => ($brd['child_level'] > 0 ? str_repeat('==', $brd['child_level'] - 1) . '=>' : '') . ' ' . $brd['name'],
);
}
}
$context['posting_fields']['subject'] = array(
'label' => array(
'text' => $txt['subject'],
'class' => isset($context['post_error']['no_subject']) ? 'error' : '',
),
'input' => array(
'type' => 'text',
'attributes' => array(
'size' => 80,
'maxlength' => !empty($topic) ? 84 : 80,
'value' => $context['subject'],
'required' => true,
),
),
);
$context['posting_fields']['icon'] = array(
'label' => array(
'text' => $txt['message_icon'],
),
'input' => array(
'type' => 'select',
'attributes' => array(
'id' => 'icon',
'onchange' => 'showimage();',
),
'options' => array(),
'after' => ' <img id="icons" src="' . $context['icon_url'] . '">',
),
);
foreach ($context['icons'] as $icon)
{
$context['posting_fields']['icon']['input']['options'][$icon['name']] = array(
'value' => $icon['value'],
'selected' => $icon['value'] == $context['icon'],
);
}
if (!isset($_REQUEST['xml']))
loadTemplate('Post');
call_integration_hook('integrate_post_end');
}
function Post2()
{
global $board, $topic, $txt, $modSettings, $sourcedir, $context;
global $user_info, $board_info, $smcFunc, $settings;
if (empty($_POST) && empty($topic))
{
if (empty($_SERVER['CONTENT_LENGTH']))
redirectexit('action=post;board=' . $board . '.0');
else
fatal_lang_error('post_upload_error', false);
}
elseif (empty($_POST) && !empty($topic))
redirectexit('action=post;topic=' . $topic . '.0');
$context['robot_no_index'] = true;
checkSubmitOnce('check');
$post_errors = array();
if (checkSession('post', '', false) != '')
$post_errors[] = 'session_timeout';
if (!$user_info['is_admin'] && !$user_info['is_mod'] && !empty($modSettings['posts_require_captcha']) && ($user_info['posts'] < $modSettings['posts_require_captcha'] || ($user_info['is_guest'] && $modSettings['posts_require_captcha'] == -1)))
{
require_once($sourcedir . '/Subs-Editor.php');
$verificationOptions = array(
'id' => 'post',
);
$context['require_verification'] = create_control_verification($verificationOptions, true);
if (is_array($context['require_verification']))
$post_errors = array_merge($post_errors, $context['require_verification']);
}
require_once($sourcedir . '/Subs-Post.php');
loadLanguage('Post');
call_integration_hook('integrate_post2_start', array(&$post_errors));
if (!empty($modSettings['drafts_post_enabled']) && (isset($_POST['save_draft']) || isset($_POST['id_draft'])))
require_once($sourcedir . '/Drafts.php');
if (isset($_POST['attach_del']))
{
$keep_temp = array();
$keep_ids = array();
foreach ($_POST['attach_del'] as $dummy)
if (strpos($dummy, 'post_tmp_' . $user_info['id']) !== false)
$keep_temp[] = $dummy;
else
$keep_ids[] = (int) $dummy;
if (isset($_SESSION['temp_attachments']))
foreach ($_SESSION['temp_attachments'] as $attachID => $attachment)
{
if ((isset($_SESSION['temp_attachments']['post']['files'], $attachment['name']) && in_array($attachment['name'], $_SESSION['temp_attachments']['post']['files'])) || in_array($attachID, $keep_temp) || strpos($attachID, 'post_tmp_' . $user_info['id']) === false)
continue;
unset($_SESSION['temp_attachments'][$attachID]);
unlink($attachment['tmp_name']);
}
if (!empty($_REQUEST['msg']))
{
require_once($sourcedir . '/ManageAttachments.php');
$attachmentQuery = array(
'attachment_type' => 0,
'id_msg' => (int) $_REQUEST['msg'],
'not_id_attach' => $keep_ids,
);
removeAttachments($attachmentQuery);
}
}
$context['can_post_attachment'] = !empty($modSettings['attachmentEnable']) && $modSettings['attachmentEnable'] == 1 && (allowedTo('post_attachment') || ($modSettings['postmod_active'] && allowedTo('post_unapproved_attachments')));
if ($context['can_post_attachment'] && empty($_POST['from_qr']))
{
require_once($sourcedir . '/Subs-Attachments.php');
processAttachments();
}
if (!$context['can_post_attachment'] && !empty($_SESSION['already_attached']))
{
require_once($sourcedir . '/ManageAttachments.php');
foreach ($_SESSION['already_attached'] as $attachID => $attachment)
removeAttachments(array('id_attach' => $attachID));
unset($_SESSION['already_attached']);
$post_errors[] = array('cannot_post_attachment', array($board_info['name']));
}
$can_approve = allowedTo('approve_posts');
if (!empty($topic))
{
$request = $smcFunc['db_query']('', '
SELECT locked, is_sticky, id_poll, approved, id_first_msg, id_last_msg, id_member_started, id_board
FROM {db_prefix}topics
WHERE id_topic = {int:current_topic}
LIMIT 1',
array(
'current_topic' => $topic,
)
);
$topic_info = $smcFunc['db_fetch_assoc']($request);
$smcFunc['db_free_result']($request);
if (!is_array($topic_info))
fatal_lang_error('topic_doesnt_exist', 404);
if ($topic_info['id_board'] != $board)
fatal_lang_error('not_a_topic');
$becomesApproved = true;
if (empty($topic_info['approved']) && !$can_approve)
{
$becomesApproved = false;
$_SESSION['becomesUnapproved'] = true;
}
}
if (!empty($topic) && !isset($_REQUEST['msg']))
{
if ($topic_info['locked'] != 0 && !allowedTo('moderate_board'))
fatal_lang_error('topic_locked', false);
if (isset($_REQUEST['poll']) && $topic_info['id_poll'] > 0)
unset($_REQUEST['poll']);
elseif ($topic_info['id_member_started'] != $user_info['id'])
{
if ($modSettings['postmod_active'] && allowedTo('post_unapproved_replies_any') && !allowedTo('post_reply_any'))
$becomesApproved = false;
else
isAllowedTo('post_reply_any');
}
elseif (!allowedTo('post_reply_any'))
{
if ($modSettings['postmod_active'] && allowedTo('post_unapproved_replies_own') && !allowedTo('post_reply_own'))
$becomesApproved = false;
else
isAllowedTo('post_reply_own');
}
if (isset($_POST['lock']))
{
if (empty($topic_info['locked']) == empty($_POST['lock']))
unset($_POST['lock']);
elseif (!allowedTo(array('lock_any', 'lock_own')) || (!allowedTo('lock_any') && $user_info['id'] != $topic_info['id_member_started']))
unset($_POST['lock']);
elseif (!allowedTo('lock_any'))
{
if ($topic_info['locked'] == 1)
unset($_POST['lock']);
else
$_POST['lock'] = empty($_POST['lock']) ? 0 : 2;
}
else
{
$_POST['lock'] = empty($_POST['lock']) ? 0 : 1;
if (isset($_POST['already_locked']) && $_POST['already_locked'] != $topic_info['locked'])
$post_errors[] = 'topic_' . (empty($topic_info['locked']) ? 'un' : '') . 'locked';
}
}
if (isset($_POST['sticky']) && ($_POST['sticky'] == $topic_info['is_sticky'] || !allowedTo('make_sticky')))
unset($_POST['sticky']);
elseif (isset($_POST['sticky']))
{
if (isset($_POST['already_sticky']) && $_POST['already_sticky'] != $topic_info['is_sticky'])
$post_errors[] = 'topic_' . (empty($topic_info['is_sticky']) ? 'un' : '') . 'sticky';
}
if (!empty($modSettings['drafts_post_enabled']) && isset($_POST['save_draft']))
{
SaveDraft($post_errors);
return Post();
}
if (isset($_POST['last_msg']) && $topic_info['id_last_msg'] > $_POST['last_msg'])
{
$_REQUEST['preview'] = true;
return Post();
}
$posterIsGuest = $user_info['is_guest'];
$context['is_own_post'] = true;
$context['poster_id'] = $user_info['id'];
}
elseif (empty($topic))
{
unset($_REQUEST['msg'], $_POST['msg'], $_GET['msg']);
$becomesApproved = true;
if ($modSettings['postmod_active'] && !allowedTo('post_new') && allowedTo('post_unapproved_topics'))
$becomesApproved = false;
else
isAllowedTo('post_new');
if (isset($_POST['lock']))
{
if (empty($_POST['lock']))
unset($_POST['lock']);
elseif (!allowedTo(array('lock_any', 'lock_own')))
unset($_POST['lock']);
else
$_POST['lock'] = allowedTo('lock_any') ? 1 : 2;
}
if (isset($_POST['sticky']) && (empty($_POST['sticky']) || !allowedTo('make_sticky')))
unset($_POST['sticky']);
if (!empty($modSettings['drafts_post_enabled']) && isset($_POST['save_draft']))
{
SaveDraft($post_errors);
return Post();
}
$posterIsGuest = $user_info['is_guest'];
$context['is_own_post'] = true;
$context['poster_id'] = $user_info['id'];
}
elseif (isset($_REQUEST['msg']) && !empty($topic))
{
$_REQUEST['msg'] = (int) $_REQUEST['msg'];
$request = $smcFunc['db_query']('', '
SELECT id_member, poster_name, poster_email, poster_time, approved
FROM {db_prefix}messages
WHERE id_msg = {int:id_msg}
LIMIT 1',
array(
'id_msg' => $_REQUEST['msg'],
)
);
if ($smcFunc['db_num_rows']($request) == 0)
fatal_lang_error('cant_find_messages', false);
$row = $smcFunc['db_fetch_assoc']($request);
$smcFunc['db_free_result']($request);
if (!empty($topic_info['locked']) && !allowedTo('moderate_board'))
fatal_lang_error('topic_locked', false);
if (isset($_POST['lock']))
{
if ((empty($_POST['lock']) && empty($topic_info['locked'])) || (!empty($_POST['lock']) && !empty($topic_info['locked'])))
unset($_POST['lock']);
elseif (!allowedTo(array('lock_any', 'lock_own')) || (!allowedTo('lock_any') && $user_info['id'] != $topic_info['id_member_started']))
unset($_POST['lock']);
elseif (!allowedTo('lock_any'))
{
if ($topic_info['locked'] == 1)
unset($_POST['lock']);
else
$_POST['lock'] = empty($_POST['lock']) ? 0 : 2;
}
else
{
$_POST['lock'] = empty($_POST['lock']) ? 0 : 1;
if (isset($_POST['already_locked']) && $_POST['already_locked'] != $topic_info['locked'])
$post_errors[] = 'topic_' . (empty($topic_info['locked']) ? 'un' : '') . 'locked';
}
}
if (isset($_POST['sticky']) && (!allowedTo('make_sticky') || $_POST['sticky'] == $topic_info['is_sticky']))
unset($_POST['sticky']);
elseif (isset($_POST['sticky']))
{
if (isset($_POST['already_sticky']) && $_POST['already_sticky'] != $topic_info['is_sticky'])
$post_errors[] = 'topic_' . (empty($topic_info['locked']) ? 'un' : '') . 'stickied';
}
if ($row['id_member'] == $user_info['id'] && !allowedTo('modify_any'))
{
if ((!$modSettings['postmod_active'] || $row['approved']) && !empty($modSettings['edit_disable_time']) && $row['poster_time'] + ($modSettings['edit_disable_time'] + 5) * 60 < time())
fatal_lang_error('modify_post_time_passed', false);
elseif ($topic_info['id_member_started'] == $user_info['id'] && !allowedTo('modify_own'))
isAllowedTo('modify_replies');
else
isAllowedTo('modify_own');
}
elseif ($topic_info['id_member_started'] == $user_info['id'] && !allowedTo('modify_any'))
{
isAllowedTo('modify_replies');
$moderationAction = true;
}
else
{
isAllowedTo('modify_any');
if ($row['id_member'] != $user_info['id'])
$moderationAction = true;
}
if (!empty($modSettings['drafts_post_enabled']) && isset($_POST['save_draft']))
{
SaveDraft($post_errors);
return Post();
}
$posterIsGuest = empty($row['id_member']);
$context['is_own_post'] = $user_info['id'] === (int) $row['id_member'];
$context['poster_id'] = (int) $row['id_member'];
$approve_checked = (!empty($REQUEST['approve']) ? 1 : 0);
$becomesApproved = $modSettings['postmod_active'] ? ($can_approve && !$row['approved'] ? $approve_checked : $row['approved']) : 1;
$approve_has_changed = $row['approved'] != $becomesApproved;
if (!allowedTo('moderate_forum') || !$posterIsGuest)
{
$_POST['guestname'] = $row['poster_name'];
$_POST['email'] = $row['poster_email'];
}
require_once($sourcedir . '/Search.php');
$searchAPI = findSearchAPI();
if ($searchAPI->supportsMethod('postRemoved'))
$searchAPI->postRemoved($_REQUEST['msg']);
}
if ($can_approve && $modSettings['postmod_active'])
{
$becomesApproved = isset($_POST['quickReply']) || !empty($_REQUEST['approve']) ? 1 : 0;
$approve_has_changed = isset($row['approved']) ? $row['approved'] != $becomesApproved : false;
}
if ($posterIsGuest)
{
$_POST['guestname'] = !isset($_POST['guestname']) ? '' : trim($_POST['guestname']);
$_POST['email'] = !isset($_POST['email']) ? '' : trim($_POST['email']);
if ($_POST['guestname'] == '' || $_POST['guestname'] == '_')
$post_errors[] = 'no_name';
if ($smcFunc['strlen']($_POST['guestname']) > 25)
$post_errors[] = 'long_name';
if (empty($modSettings['guest_post_no_email']))
{
if (!isset($row) || $row['poster_email'] != $_POST['email'])
{
if (!allowedTo('moderate_forum') && (!isset($_POST['email']) || $_POST['email'] == ''))
$post_errors[] = 'no_email';
if (!allowedTo('moderate_forum') && !filter_var($_POST['email'], FILTER_VALIDATE_EMAIL))
$post_errors[] = 'bad_email';
}
isBannedEmail($_POST['email'], 'cannot_post', sprintf($txt['you_are_post_banned'], $txt['guest_title']));
}
if (empty($post_errors))
{
$_SESSION['guest_name'] = $_POST['guestname'];
$_SESSION['guest_email'] = $_POST['email'];
}
}
if (isset($_POST['quickReply']))
$_POST['message'] = $_POST['quickReply'];
if (!isset($_POST['subject']) || $smcFunc['htmltrim']($smcFunc['htmlspecialchars']($_POST['subject'])) === '')
$post_errors[] = 'no_subject';
if (!isset($_POST['message']) || $smcFunc['htmltrim']($smcFunc['htmlspecialchars']($_POST['message']), ENT_QUOTES) === '')
$post_errors[] = 'no_message';
elseif (!empty($modSettings['max_messageLength']) && $smcFunc['strlen']($_POST['message']) > $modSettings['max_messageLength'])
$post_errors[] = array('long_message', array($modSettings['max_messageLength']));
else
{
$_POST['message'] = $smcFunc['htmlspecialchars']($_POST['message'], ENT_QUOTES);
if ($user_info['is_guest'])
$user_info['name'] = $_POST['guestname'];
preparsecode($_POST['message']);
if ($smcFunc['htmltrim'](strip_tags(parse_bbc($_POST['message'], false), implode('', $context['allowed_html_tags']))) === '' && (!allowedTo('bbc_html') || strpos($_POST['message'], '[html]') === false))
$post_errors[] = 'no_message';
}
if (isset($_POST['calendar']) && !isset($_REQUEST['deleteevent']) && $smcFunc['htmltrim']($_POST['evtitle']) === '')
$post_errors[] = 'no_event';
if (isset($_POST['message']) && strtolower($_POST['message']) == 'i am the administrator.' && !$user_info['is_admin'])
fatal_error('Knave! Masquerader! Charlatan!', false);
if (isset($_REQUEST['poll']) && $modSettings['pollMode'] == '1')
{
if (!empty($topic) && !isset($_REQUEST['msg']))
fatal_lang_error('no_access', false);
if (empty($topic))
isAllowedTo('poll_post');
elseif ($user_info['id'] == $topic_info['id_member_started'] && !allowedTo('poll_add_any'))
isAllowedTo('poll_add_own');
else
isAllowedTo('poll_add_any');
if (!isset($_POST['question']) || trim($_POST['question']) == '')
$post_errors[] = 'no_question';
$_POST['options'] = empty($_POST['options']) ? array() : htmltrim__recursive($_POST['options']);
foreach ($_POST['options'] as $k => $option)
if ($option == '')
unset($_POST['options'][$k], $_POST['options'][$k]);
if (count($_POST['options']) < 2)
$post_errors[] = 'poll_few';
elseif (count($_POST['options']) > 256)
$post_errors[] = 'poll_many';
}
if ($posterIsGuest)
{
require_once($sourcedir . '/Subs-Members.php');
if (isReservedName($_POST['guestname'], 0, true, false) && (!isset($row['poster_name']) || $_POST['guestname'] != $row['poster_name']))
$post_errors[] = 'bad_name';
}
elseif (!isset($_REQUEST['msg']))
{
$_POST['guestname'] = $user_info['username'];
$_POST['email'] = $user_info['email'];
}
call_integration_hook('integrate_post2_pre', array(&$post_errors));
if (!empty($post_errors))
{
$_REQUEST['preview'] = true;
return Post($post_errors);
}
if (isset($_REQUEST['preview']))
{
if (checkSession('post', '', false) != '')
{
loadLanguage('Errors');
$post_errors[] = 'session_timeout';
unset ($_POST['preview'], $_REQUEST['xml']);
}
return Post($post_errors);
}
if (!isset($_REQUEST['msg']))
spamProtection('post');
ignore_user_abort(true);
@set_time_limit(300);
$_POST['subject'] = strtr($smcFunc['htmlspecialchars']($_POST['subject']), array("\r" => '', "\n" => '', "\t" => ''));
$_POST['guestname'] = $smcFunc['htmlspecialchars']($_POST['guestname']);
$_POST['email'] = $smcFunc['htmlspecialchars']($_POST['email']);
$_POST['modify_reason'] = empty($_POST['modify_reason']) ? '' : strtr($smcFunc['htmlspecialchars']($_POST['modify_reason']), array("\r" => '', "\n" => '', "\t" => ''));
if ($smcFunc['strlen']($_POST['subject']) > 100)
$_POST['subject'] = $smcFunc['substr']($_POST['subject'], 0, 100);
if ($smcFunc['strlen']($_POST['modify_reason']) > 100)
$_POST['modify_reason'] = $smcFunc['substr']($_POST['modify_reason'], 0, 100);
if (isset($_REQUEST['poll']))
{
if (empty($_POST['poll_max_votes']) || $_POST['poll_max_votes'] <= 0)
$_POST['poll_max_votes'] = 1;
elseif ($_POST['poll_max_votes'] > count($_POST['options']))
$_POST['poll_max_votes'] = count($_POST['options']);
else
$_POST['poll_max_votes'] = (int) $_POST['poll_max_votes'];
$_POST['poll_expire'] = (int) $_POST['poll_expire'];
$_POST['poll_expire'] = $_POST['poll_expire'] > 9999 ? 9999 : ($_POST['poll_expire'] < 0 ? 0 : $_POST['poll_expire']);
if (!isset($_POST['poll_hide']))
$_POST['poll_hide'] = 0;
else
$_POST['poll_hide'] = (int) $_POST['poll_hide'];
$_POST['poll_change_vote'] = isset($_POST['poll_change_vote']) ? 1 : 0;
$_POST['poll_guest_vote'] = isset($_POST['poll_guest_vote']) ? 1 : 0;
if ($_POST['poll_guest_vote'])
{
require_once($sourcedir . '/Subs-Members.php');
$allowedVoteGroups = groupsAllowedTo('poll_vote', $board);
if (!in_array(-1, $allowedVoteGroups['allowed']))
$_POST['poll_guest_vote'] = 0;
}
if (!empty($_POST['poll_expire']) && $_POST['poll_expire'] < 1)
fatal_lang_error('poll_range_error', false);
elseif (empty($_POST['poll_expire']) && $_POST['poll_hide'] == 2)
$_POST['poll_hide'] = 1;
$_POST['question'] = $smcFunc['htmlspecialchars']($_POST['question']);
$_POST['question'] = $smcFunc['truncate']($_POST['question'], 255);
$_POST['question'] = preg_replace('~&#(\d{4,5}|[2-9]\d{2,4}|1[2-9]\d);~', '&#$1;', $_POST['question']);
$_POST['options'] = htmlspecialchars__recursive($_POST['options']);
}
if ($context['can_post_attachment'] && !empty($_SESSION['temp_attachments']) && empty($_POST['from_qr']))
{
$attachIDs = array();
$attach_errors = array();
if (!empty($context['we_are_history']))
$attach_errors[] = '<dd>' . $txt['error_temp_attachments_flushed'] . '<br><br></dd>';
foreach ($_SESSION['temp_attachments'] as $attachID => $attachment)
{
if ($attachID != 'initial_error' && strpos($attachID, 'post_tmp_' . $user_info['id']) === false)
continue;
if ($attachID == 'initial_error')
{
$attach_errors[] = '<dt>' . $txt['attach_no_upload'] . '</dt>';
$attach_errors[] = '<dd>' . (is_array($attachment) ? vsprintf($txt[$attachment[0]], $attachment[1]) : $txt[$attachment]) . '</dd>';
unset($_SESSION['temp_attachments']);
break;
}
$attachmentOptions = array(
'post' => isset($_REQUEST['msg']) ? $_REQUEST['msg'] : 0,
'poster' => $user_info['id'],
'name' => $attachment['name'],
'tmp_name' => $attachment['tmp_name'],
'size' => isset($attachment['size']) ? $attachment['size'] : 0,
'mime_type' => isset($attachment['type']) ? $attachment['type'] : '',
'id_folder' => isset($attachment['id_folder']) ? $attachment['id_folder'] : $modSettings['currentAttachmentUploadDir'],
'approved' => !$modSettings['postmod_active'] || allowedTo('post_attachment'),
'errors' => $attachment['errors'],
);
if (empty($attachment['errors']))
{
if (createAttachment($attachmentOptions))
{
$attachIDs[] = $attachmentOptions['id'];
if (!empty($attachmentOptions['thumb']))
$attachIDs[] = $attachmentOptions['thumb'];
}
}
else
$attach_errors[] = '<dt> </dt>';
if (!empty($attachmentOptions['errors']))
{
$attach_errors[] = '<dt>' . vsprintf($txt['attach_warning'], $attachment['name']) . '</dt>';
$log_these = array('attachments_no_create', 'attachments_no_write', 'attach_timeout', 'ran_out_of_space', 'cant_access_upload_path', 'attach_0_byte_file');
foreach ($attachmentOptions['errors'] as $error)
{
if (!is_array($error))
{
$attach_errors[] = '<dd>' . $txt[$error] . '</dd>';
if (in_array($error, $log_these))
log_error($attachment['name'] . ': ' . $txt[$error], 'critical');
}
else
$attach_errors[] = '<dd>' . vsprintf($txt[$error[0]], $error[1]) . '</dd>';
}
if (file_exists($attachment['tmp_name']))
unlink($attachment['tmp_name']);
}
}
unset($_SESSION['temp_attachments']);
}
if (isset($_REQUEST['poll']))
{
$id_poll = $smcFunc['db_insert']('',
'{db_prefix}polls',
array(
'question' => 'string-255', 'hide_results' => 'int', 'max_votes' => 'int', 'expire_time' => 'int', 'id_member' => 'int',
'poster_name' => 'string-255', 'change_vote' => 'int', 'guest_vote' => 'int'
),
array(
$_POST['question'], $_POST['poll_hide'], $_POST['poll_max_votes'], (empty($_POST['poll_expire']) ? 0 : time() + $_POST['poll_expire'] * 3600 * 24), $user_info['id'],
$_POST['guestname'], $_POST['poll_change_vote'], $_POST['poll_guest_vote'],
),
array('id_poll'),
1
);
$i = 0;
$pollOptions = array();
foreach ($_POST['options'] as $option)
{
$pollOptions[] = array($id_poll, $i, $option);
$i++;
}
$smcFunc['db_insert']('insert',
'{db_prefix}poll_choices',
array('id_poll' => 'int', 'id_choice' => 'int', 'label' => 'string-255'),
$pollOptions,
array('id_poll', 'id_choice')
);
call_integration_hook('integrate_poll_add_edit', array($id_poll, false));
}
else
$id_poll = 0;
$newTopic = empty($_REQUEST['msg']) && empty($topic);
if (!isset($_POST['icon']))
$_POST['icon'] = 'xx';
else
{
$_POST['icon'] = $smcFunc['htmlspecialchars']($_POST['icon']);
if ((!file_exists($settings['theme_dir'] . '/images/post/' . $_POST['icon'] . '.png')) && (!file_exists($settings['default_theme_dir'] . '/images/post/' . $_POST['icon'] . '.png')))
$_POST['icon'] = 'xx';
}
$msgOptions = array(
'id' => empty($_REQUEST['msg']) ? 0 : (int) $_REQUEST['msg'],
'subject' => $_POST['subject'],
'body' => $_POST['message'],
'icon' => preg_replace('~[\./\\\\*:"\'<>]~', '', $_POST['icon']),
'smileys_enabled' => !isset($_POST['ns']),
'attachments' => empty($attachIDs) ? array() : $attachIDs,
'approved' => $becomesApproved,
);
$topicOptions = array(
'id' => empty($topic) ? 0 : $topic,
'board' => $board,
'poll' => isset($_REQUEST['poll']) ? $id_poll : null,
'lock_mode' => isset($_POST['lock']) ? (int) $_POST['lock'] : null,
'sticky_mode' => isset($_POST['sticky']) ? (int) $_POST['sticky'] : null,
'mark_as_read' => true,
'is_approved' => !$modSettings['postmod_active'] || empty($topic) || !empty($board_info['cur_topic_approved']),
);
$posterOptions = array(
'id' => $user_info['id'],
'name' => $_POST['guestname'],
'email' => $_POST['email'],
'update_post_count' => !$user_info['is_guest'] && !isset($_REQUEST['msg']) && $board_info['posts_count'],
);
if (!empty($_REQUEST['msg']))
{
if (time() - $row['poster_time'] > $modSettings['edit_wait_time'] || $user_info['id'] != $row['id_member'])
{
$msgOptions['modify_time'] = time();
$msgOptions['modify_name'] = $user_info['name'];
$msgOptions['modify_reason'] = $_POST['modify_reason'];
}
if (empty($approve_has_changed))
unset($msgOptions['approved']);
modifyPost($msgOptions, $topicOptions, $posterOptions);
}
else
{
createPost($msgOptions, $topicOptions, $posterOptions);
if (isset($topicOptions['id']))
$topic = $topicOptions['id'];
}
if (!empty($msgOptions['id']) && !empty($_SESSION['already_attached']))
{
require_once($sourcedir . '/Subs-Attachments.php');
assignAttachments($_SESSION['already_attached'], $msgOptions['id']);
unset($_SESSION['already_attached']);
}
if (!empty($modSettings['drafts_post_enabled']) && !empty($_POST['id_draft']))
DeleteDraft($_POST['id_draft']);
if (isset($_POST['calendar']) && (!isset($_REQUEST['eventid']) || $_REQUEST['eventid'] == -1))
{
require_once($sourcedir . '/Subs-Calendar.php');
canLinkEvent();
$eventOptions = array(
'board' => $board,
'topic' => $topic,
'title' => $_POST['evtitle'],
'location' => $_POST['event_location'],
'member' => $user_info['id'],
);
insertEvent($eventOptions);
}
elseif (isset($_POST['calendar']))
{
$_REQUEST['eventid'] = (int) $_REQUEST['eventid'];
require_once($sourcedir . '/Subs-Calendar.php');
validateEventPost();
if (!allowedTo('calendar_edit_any'))
{
$request = $smcFunc['db_query']('', '
SELECT id_member
FROM {db_prefix}calendar
WHERE id_event = {int:id_event}',
array(
'id_event' => $_REQUEST['eventid'],
)
);
$row2 = $smcFunc['db_fetch_assoc']($request);
$smcFunc['db_free_result']($request);
isAllowedTo('calendar_edit_' . ($row2['id_member'] == $user_info['id'] ? 'own' : 'any'));
}
if (isset($_REQUEST['deleteevent']))
$smcFunc['db_query']('', '
DELETE FROM {db_prefix}calendar
WHERE id_event = {int:id_event}',
array(
'id_event' => $_REQUEST['eventid'],
)
);
else
{
$eventOptions = array(
'board' => $board,
'topic' => $topic,
'title' => $_POST['evtitle'],
'location' => $_POST['event_location'],
'member' => $user_info['id'],
);
modifyEvent($_REQUEST['eventid'], $eventOptions);
}
}
if (!$user_info['is_guest'] && !empty($board_info['parent_boards']))
{
$smcFunc['db_query']('', '
UPDATE {db_prefix}log_boards
SET id_msg = {int:id_msg}
WHERE id_member = {int:current_member}
AND id_board IN ({array_int:board_list})',
array(
'current_member' => $user_info['id'],
'board_list' => array_keys($board_info['parent_boards']),
'id_msg' => $modSettings['maxMsgID'],
)
);
}
if (!empty($_POST['notify']) && !$context['user']['is_guest'])
{
$smcFunc['db_insert']('ignore',
'{db_prefix}log_notify',
array('id_member' => 'int', 'id_topic' => 'int', 'id_board' => 'int'),
array($user_info['id'], $topic, 0),
array('id_member', 'id_topic', 'id_board')
);
}
elseif (!$newTopic)
$smcFunc['db_query']('', '
DELETE FROM {db_prefix}log_notify
WHERE id_member = {int:current_member}
AND id_topic = {int:current_topic}',
array(
'current_member' => $user_info['id'],
'current_topic' => $topic,
)
);
if (!empty($moderationAction))
logAction('modify', array('topic' => $topic, 'message' => (int) $_REQUEST['msg'], 'member' => $row['id_member'], 'board' => $board));
if (isset($_POST['lock']) && $_POST['lock'] != 2)
logAction(empty($_POST['lock']) ? 'unlock' : 'lock', array('topic' => $topicOptions['id'], 'board' => $topicOptions['board']));
if (isset($_POST['sticky']))
logAction(empty($_POST['sticky']) ? 'unsticky' : 'sticky', array('topic' => $topicOptions['id'], 'board' => $topicOptions['board']));
if (!empty($_REQUEST['goback']))
{
$smcFunc['db_query']('', '
UPDATE {db_prefix}log_boards
SET id_msg = {int:maxMsgID}
WHERE id_member = {int:current_member}
AND id_board = {int:current_board}',
array(
'current_board' => $board,
'current_member' => $user_info['id'],
'maxMsgID' => $modSettings['maxMsgID'],
)
);
}
if ($board_info['num_topics'] == 0)
cache_put_data('board-' . $board, null, 120);
call_integration_hook('integrate_post2_end');
if (!empty($_POST['announce_topic']) && allowedTo('announce_topic'))
redirectexit('action=announce;sa=selectgroup;topic=' . $topic . (!empty($_POST['move']) && allowedTo('move_any') ? ';move' : '') . (empty($_REQUEST['goback']) ? '' : ';goback'));
if (!empty($_POST['move']) && allowedTo('move_any'))
redirectexit('action=movetopic;topic=' . $topic . '.0' . (empty($_REQUEST['goback']) ? '' : ';goback'));
if (isset($_REQUEST['msg']) && !empty($_REQUEST['goback']))
redirectexit('topic=' . $topic . '.msg' . $_REQUEST['msg'] . '#msg' . $_REQUEST['msg'], isBrowser('ie'));
elseif (!empty($_REQUEST['goback']))
redirectexit('topic=' . $topic . '.new#new', isBrowser('ie'));
else
redirectexit('board=' . $board . '.0');
}
function AnnounceTopic()
{
global $context, $txt, $topic;
isAllowedTo('announce_topic');
validateSession();
if (empty($topic))
fatal_lang_error('topic_gone', false);
loadLanguage('Post');
loadTemplate('Post');
$subActions = array(
'selectgroup' => 'AnnouncementSelectMembergroup',
'send' => 'AnnouncementSend',
);
$context['page_title'] = $txt['announce_topic'];
$call = isset($_REQUEST['sa']) && isset($subActions[$_REQUEST['sa']]) ? $_REQUEST['sa'] : 'selectgroup';
call_helper($subActions[$call]);
}
function AnnouncementSelectMembergroup()
{
global $txt, $context, $topic, $board_info, $smcFunc;
$groups = array_merge($board_info['groups'], array(1));
foreach ($groups as $id => $group)
$groups[$id] = (int) $group;
$context['groups'] = array();
if (in_array(0, $groups))
{
$context['groups'][0] = array(
'id' => 0,
'name' => $txt['announce_regular_members'],
'member_count' => 'n/a',
);
}
$request = $smcFunc['db_query']('', '
SELECT mg.id_group, COUNT(mem.id_member) AS num_members
FROM {db_prefix}membergroups AS mg
LEFT JOIN {db_prefix}members AS mem ON (mem.id_group = mg.id_group OR FIND_IN_SET(mg.id_group, mem.additional_groups) != 0 OR mg.id_group = mem.id_post_group)
WHERE mg.id_group IN ({array_int:group_list})
GROUP BY mg.id_group',
array(
'group_list' => $groups,
'newbie_id_group' => 4,
)
);
while ($row = $smcFunc['db_fetch_assoc']($request))
{
$context['groups'][$row['id_group']] = array(
'id' => $row['id_group'],
'name' => '',
'member_count' => $row['num_members'],
);
}
$smcFunc['db_free_result']($request);
$request = $smcFunc['db_query']('', '
SELECT id_group, group_name
FROM {db_prefix}membergroups
WHERE id_group IN ({array_int:group_list})',
array(
'group_list' => $groups,
)
);
while ($row = $smcFunc['db_fetch_assoc']($request))
$context['groups'][$row['id_group']]['name'] = $row['group_name'];
$smcFunc['db_free_result']($request);
$request = $smcFunc['db_query']('', '
SELECT m.subject
FROM {db_prefix}topics AS t
INNER JOIN {db_prefix}messages AS m ON (m.id_msg = t.id_first_msg)
WHERE t.id_topic = {int:current_topic}',
array(
'current_topic' => $topic,
)
);
list ($context['topic_subject']) = $smcFunc['db_fetch_row']($request);
$smcFunc['db_free_result']($request);
censorText($context['announce_topic']['subject']);
$context['move'] = isset($_REQUEST['move']) ? 1 : 0;
$context['go_back'] = isset($_REQUEST['goback']) ? 1 : 0;
$context['sub_template'] = 'announce';
}
function AnnouncementSend()
{
global $topic, $board, $board_info, $context, $modSettings;
global $language, $scripturl, $sourcedir, $smcFunc, $txt;
checkSession();
$context['start'] = empty($_REQUEST['start']) ? 0 : (int) $_REQUEST['start'];
$groups = array_merge($board_info['groups'], array(1));
if (isset($_POST['membergroups']))
$_POST['who'] = explode(',', $_POST['membergroups']);
if (empty($_POST['who']))
fatal_lang_error('no_membergroup_selected');
foreach ($_POST['who'] as $id => $mg)
$_POST['who'][$id] = in_array((int) $mg, $groups) ? (int) $mg : 0;
$request = $smcFunc['db_query']('', '
SELECT m.id_msg, m.subject, m.body
FROM {db_prefix}topics AS t
INNER JOIN {db_prefix}messages AS m ON (m.id_msg = t.id_first_msg)
WHERE t.id_topic = {int:current_topic}',
array(
'current_topic' => $topic,
)
);
list ($id_msg, $context['topic_subject'], $message) = $smcFunc['db_fetch_row']($request);
$smcFunc['db_free_result']($request);
censorText($context['topic_subject']);
censorText($message);
$message = trim(un_htmlspecialchars(strip_tags(strtr(parse_bbc($message, false, $id_msg), array('<br>' => "\n", '</div>' => "\n", '</li>' => "\n", '[' => '[', ']' => ']')))));
require_once($sourcedir . '/Subs-Post.php');
$request = $smcFunc['db_query']('', '
SELECT mem.id_member, mem.email_address, mem.lngfile
FROM {db_prefix}members AS mem
WHERE (mem.id_group IN ({array_int:group_list}) OR mem.id_post_group IN ({array_int:group_list}) OR FIND_IN_SET({raw:additional_group_list}, mem.additional_groups) != 0)
AND mem.is_activated = {int:is_activated}
AND mem.id_member > {int:start}
ORDER BY mem.id_member
LIMIT {int:chunk_size}',
array(
'group_list' => $_POST['who'],
'is_activated' => 1,
'start' => $context['start'],
'additional_group_list' => implode(', mem.additional_groups) != 0 OR FIND_IN_SET(', $_POST['who']),
'chunk_size' => 500,
)
);
if ($smcFunc['db_num_rows']($request) == 0)
{
logAction('announce_topic', array('topic' => $topic), 'user');
if (!empty($_REQUEST['move']) && allowedTo('move_any'))
redirectexit('action=movetopic;topic=' . $topic . '.0' . (empty($_REQUEST['goback']) ? '' : ';goback'));
elseif (!empty($_REQUEST['goback']))
redirectexit('topic=' . $topic . '.new;boardseen#new', isBrowser('ie'));
else
redirectexit('board=' . $board . '.0');
}
$announcements = array();
$rows = array();
while ($row = $smcFunc['db_fetch_assoc']($request))
{
$rows[$row['id_member']] = $row;
}
$smcFunc['db_free_result']($request);
require_once($sourcedir . '/Subs-Notify.php');
$prefs = getNotifyPrefs(array_keys($rows), 'announcements', true);
foreach ($rows as $row)
{
$context['start'] = $row['id_member'];
if (empty($prefs[$row['id_member']]['announcements']) && !empty($modSettings['allow_disableAnnounce']))
continue;
$cur_language = empty($row['lngfile']) || empty($modSettings['userLanguage']) ? $language : $row['lngfile'];
if (!isset($announcements[$cur_language]))
{
loadLanguage('EmailTemplates', $cur_language);
$replacements = array(
'TOPICSUBJECT' => $context['topic_subject'],
'MESSAGE' => $message,
'TOPICLINK' => $scripturl . '?topic=' . $topic . '.0',
'UNSUB' => empty($modSettings['allow_disableAnnounce']) ? '' : $txt['new_announcement_unsub'] . "\n\n",
);
$emaildata = loadEmailTemplate('new_announcement', $replacements, $cur_language);
$announcements[$cur_language] = array(
'subject' => $emaildata['subject'],
'body' => $emaildata['body'],
'is_html' => $emaildata['is_html'],
'recipients' => array(),
);
}
$announcements[$cur_language]['recipients'][$row['id_member']] = $row['email_address'];
}
foreach ($announcements as $lang => $mail)
sendmail($mail['recipients'], $mail['subject'], $mail['body'], null, 'ann-' . $lang, $mail['is_html'], 5);
$context['percentage_done'] = round(100 * $context['start'] / $modSettings['latestMember'], 1);
$context['move'] = empty($_REQUEST['move']) ? 0 : 1;
$context['go_back'] = empty($_REQUEST['goback']) ? 0 : 1;
$context['membergroups'] = implode(',', $_POST['who']);
$context['sub_template'] = 'announcement_send';
if (!empty($modSettings['userLanguage']))
loadLanguage('Post');
}
function getTopic()
{
global $topic, $modSettings, $context, $smcFunc, $counter, $options;
if (isset($_REQUEST['xml']))
$limit = '
LIMIT ' . (empty($context['new_replies']) ? '0' : $context['new_replies']);
else
$limit = empty($modSettings['topicSummaryPosts']) ? '' : '
LIMIT ' . (int) $modSettings['topicSummaryPosts'];
$request = $smcFunc['db_query']('', '
SELECT
COALESCE(mem.real_name, m.poster_name) AS poster_name, m.poster_time,
m.body, m.smileys_enabled, m.id_msg, m.id_member
FROM {db_prefix}messages AS m
LEFT JOIN {db_prefix}members AS mem ON (mem.id_member = m.id_member)
WHERE m.id_topic = {int:current_topic}' . (isset($_REQUEST['msg']) ? '
AND m.id_msg < {int:id_msg}' : '') . (!$modSettings['postmod_active'] || allowedTo('approve_posts') ? '' : '
AND m.approved = {int:approved}') . '
ORDER BY m.id_msg DESC' . $limit,
array(
'current_topic' => $topic,
'id_msg' => isset($_REQUEST['msg']) ? (int) $_REQUEST['msg'] : 0,
'approved' => 1,
)
);
$context['previous_posts'] = array();
while ($row = $smcFunc['db_fetch_assoc']($request))
{
censorText($row['body']);
$row['body'] = parse_bbc($row['body'], $row['smileys_enabled'], $row['id_msg']);
call_integration_hook('integrate_getTopic_previous_post', array(&$row));
$context['previous_posts'][] = array(
'counter' => $counter++,
'poster' => $row['poster_name'],
'message' => $row['body'],
'time' => timeformat($row['poster_time']),
'timestamp' => forum_time(true, $row['poster_time']),
'id' => $row['id_msg'],
'is_new' => !empty($context['new_replies']),
'is_ignored' => !empty($modSettings['enable_buddylist']) && !empty($options['posts_apply_ignore_list']) && in_array($row['id_member'], $context['user']['ignoreusers']),
);
if (!empty($context['new_replies']))
$context['new_replies']--;
}
$smcFunc['db_free_result']($request);
}
function QuoteFast()
{
global $modSettings, $user_info, $context;
global $sourcedir, $smcFunc;
loadLanguage('Post');
if (!isset($_REQUEST['xml']))
loadTemplate('Post');
include_once($sourcedir . '/Subs-Post.php');
$moderate_boards = boardsAllowedTo('moderate_board');
$request = $smcFunc['db_query']('', '
SELECT COALESCE(mem.real_name, m.poster_name) AS poster_name, m.poster_time, m.body, m.id_topic, m.subject,
m.id_board, m.id_member, m.approved, m.modified_time, m.modified_name, m.modified_reason
FROM {db_prefix}messages AS m
INNER JOIN {db_prefix}topics AS t ON (t.id_topic = m.id_topic)
LEFT JOIN {db_prefix}members AS mem ON (mem.id_member = m.id_member)
WHERE {query_see_message_board}
AND m.id_msg = {int:id_msg}' . (isset($_REQUEST['modify']) || (!empty($moderate_boards) && $moderate_boards[0] == 0) ? '' : '
AND (t.locked = {int:not_locked}' . (empty($moderate_boards) ? '' : ' OR m.id_board IN ({array_int:moderation_board_list})') . ')') . '
LIMIT 1',
array(
'current_member' => $user_info['id'],
'moderation_board_list' => $moderate_boards,
'id_msg' => (int) $_REQUEST['quote'],
'not_locked' => 0,
)
);
$context['close_window'] = $smcFunc['db_num_rows']($request) == 0;
$row = $smcFunc['db_fetch_assoc']($request);
$smcFunc['db_free_result']($request);
$context['sub_template'] = 'quotefast';
if (!empty($row))
$can_view_post = $row['approved'] || ($row['id_member'] != 0 && $row['id_member'] == $user_info['id']) || allowedTo('approve_posts', $row['id_board']);
if (!empty($can_view_post))
{
$row['body'] = un_preparsecode($row['body']);
censorText($row['body']);
if (isset($_REQUEST['modify']))
{
censorText($row['subject']);
$context['sub_template'] = 'modifyfast';
$context['message'] = array(
'id' => $_REQUEST['quote'],
'body' => $row['body'],
'subject' => addcslashes($row['subject'], '"'),
'reason' => array(
'name' => $row['modified_name'],
'text' => $row['modified_reason'],
'time' => $row['modified_time'],
),
);
return;
}
if (!empty($modSettings['removeNestedQuotes']))
$row['body'] = preg_replace(array('~\n?\[quote.*?\].+?\[/quote\]\n?~is', '~^\n~', '~\[/quote\]~'), '', $row['body']);
$lb = "\n";
$context['quote']['xml'] = '[quote author=' . $row['poster_name'] . ' link=msg=' . (int) $_REQUEST['quote'] . ' date=' . $row['poster_time'] . ']' . $lb . $row['body'] . $lb . '[/quote]';
$context['quote']['text'] = strtr(un_htmlspecialchars($context['quote']['xml']), array('\'' => '\\\'', '\\' => '\\\\', "\n" => '\\n', '</script>' => '</\' + \'script>'));
$context['quote']['xml'] = strtr($context['quote']['xml'], array(' ' => ' ', '<' => '<', '>' => '>'));
$context['quote']['mozilla'] = strtr($smcFunc['htmlspecialchars']($context['quote']['text']), array('"' => '"'));
}
elseif (isset($_REQUEST['modify']))
{
$context['sub_template'] = 'modifyfast';
$context['message'] = array(
'id' => 0,
'body' => '',
'subject' => '',
'reason' => array(
'name' => '',
'text' => '',
'time' => '',
),
);
}
else
$context['quote'] = array(
'xml' => '',
'mozilla' => '',
'text' => '',
);
}
function JavaScriptModify()
{
global $sourcedir, $modSettings, $board, $topic, $txt;
global $user_info, $context, $smcFunc, $language, $board_info;
if (empty($topic))
obExit(false);
checkSession('get');
require_once($sourcedir . '/Subs-Post.php');
$request = $smcFunc['db_query']('', '
SELECT
t.locked, t.num_replies, t.id_member_started, t.id_first_msg,
m.id_msg, m.id_member, m.poster_time, m.subject, m.smileys_enabled, m.body, m.icon,
m.modified_time, m.modified_name, m.modified_reason, m.approved,
m.poster_name, m.poster_email
FROM {db_prefix}messages AS m
INNER JOIN {db_prefix}topics AS t ON (t.id_topic = {int:current_topic})
WHERE m.id_msg = {raw:id_msg}
AND m.id_topic = {int:current_topic}' . (allowedTo('modify_any') || allowedTo('approve_posts') ? '' : (!$modSettings['postmod_active'] ? '
AND (m.id_member != {int:guest_id} AND m.id_member = {int:current_member})' : '
AND (m.approved = {int:is_approved} OR (m.id_member != {int:guest_id} AND m.id_member = {int:current_member}))')),
array(
'current_member' => $user_info['id'],
'current_topic' => $topic,
'id_msg' => empty($_REQUEST['msg']) ? 't.id_first_msg' : (int) $_REQUEST['msg'],
'is_approved' => 1,
'guest_id' => 0,
)
);
if ($smcFunc['db_num_rows']($request) == 0)
fatal_lang_error('no_board', false);
$row = $smcFunc['db_fetch_assoc']($request);
$smcFunc['db_free_result']($request);
if (isset($_POST['message']) || isset($_POST['subject']) || isset($_REQUEST['icon']))
{
if (!empty($row['locked']))
isAllowedTo('moderate_board');
if ($row['id_member'] == $user_info['id'] && !allowedTo('modify_any'))
{
if ((!$modSettings['postmod_active'] || $row['approved']) && !empty($modSettings['edit_disable_time']) && $row['poster_time'] + ($modSettings['edit_disable_time'] + 5) * 60 < time())
fatal_lang_error('modify_post_time_passed', false);
elseif ($row['id_member_started'] == $user_info['id'] && !allowedTo('modify_own'))
isAllowedTo('modify_replies');
else
isAllowedTo('modify_own');
}
elseif ($row['id_member_started'] == $user_info['id'] && !allowedTo('modify_any'))
isAllowedTo('modify_replies');
else
isAllowedTo('modify_any');
$moderationAction = $row['id_member'] != $user_info['id'];
}
$post_errors = array();
if (isset($_POST['subject']) && $smcFunc['htmltrim']($smcFunc['htmlspecialchars']($_POST['subject'])) !== '')
{
$_POST['subject'] = strtr($smcFunc['htmlspecialchars']($_POST['subject']), array("\r" => '', "\n" => '', "\t" => ''));
if ($smcFunc['strlen']($_POST['subject']) > 100)
$_POST['subject'] = $smcFunc['substr']($_POST['subject'], 0, 100);
}
elseif (isset($_POST['subject']))
{
$post_errors[] = 'no_subject';
unset($_POST['subject']);
}
if (isset($_POST['message']))
{
if ($smcFunc['htmltrim']($smcFunc['htmlspecialchars']($_POST['message'])) === '')
{
$post_errors[] = 'no_message';
unset($_POST['message']);
}
elseif (!empty($modSettings['max_messageLength']) && $smcFunc['strlen']($_POST['message']) > $modSettings['max_messageLength'])
{
$post_errors[] = 'long_message';
unset($_POST['message']);
}
else
{
$_POST['message'] = $smcFunc['htmlspecialchars']($_POST['message'], ENT_QUOTES);
preparsecode($_POST['message']);
if ($smcFunc['htmltrim'](strip_tags(parse_bbc($_POST['message'], false), implode('', $context['allowed_html_tags']))) === '')
{
$post_errors[] = 'no_message';
unset($_POST['message']);
}
}
}
call_integration_hook('integrate_post_JavascriptModify', array(&$post_errors, $row));
if (isset($_POST['lock']))
{
if (!allowedTo(array('lock_any', 'lock_own')) || (!allowedTo('lock_any') && $user_info['id'] != $row['id_member']))
unset($_POST['lock']);
elseif (!allowedTo('lock_any'))
{
if ($row['locked'] == 1)
unset($_POST['lock']);
else
$_POST['lock'] = empty($_POST['lock']) ? 0 : 2;
}
elseif (!empty($row['locked']) && !empty($_POST['lock']) || $_POST['lock'] == $row['locked'])
unset($_POST['lock']);
else
$_POST['lock'] = empty($_POST['lock']) ? 0 : 1;
}
if (isset($_POST['sticky']) && !allowedTo('make_sticky'))
unset($_POST['sticky']);
if (isset($_POST['modify_reason']))
{
$_POST['modify_reason'] = strtr($smcFunc['htmlspecialchars']($_POST['modify_reason']), array("\r" => '', "\n" => '', "\t" => ''));
if ($smcFunc['strlen']($_POST['modify_reason']) > 100)
$_POST['modify_reason'] = $smcFunc['substr']($_POST['modify_reason'], 0, 100);
}
if (empty($post_errors))
{
$msgOptions = array(
'id' => $row['id_msg'],
'subject' => isset($_POST['subject']) ? $_POST['subject'] : null,
'body' => isset($_POST['message']) ? $_POST['message'] : null,
'icon' => isset($_REQUEST['icon']) ? preg_replace('~[\./\\\\*\':"<>]~', '', $_REQUEST['icon']) : null,
'modify_reason' => (isset($_POST['modify_reason']) ? $_POST['modify_reason'] : ''),
);
$topicOptions = array(
'id' => $topic,
'board' => $board,
'lock_mode' => isset($_POST['lock']) ? (int) $_POST['lock'] : null,
'sticky_mode' => isset($_POST['sticky']) ? (int) $_POST['sticky'] : null,
'mark_as_read' => true,
);
$posterOptions = array(
'id' => $user_info['id'],
'name' => $row['poster_name'],
'email' => $row['poster_email'],
'update_post_count' => !$user_info['is_guest'] && !isset($_REQUEST['msg']) && $board_info['posts_count'],
);
if ((isset($_POST['subject']) && $_POST['subject'] != $row['subject']) || (isset($_POST['message']) && $_POST['message'] != $row['body']) || (isset($_REQUEST['icon']) && $_REQUEST['icon'] != $row['icon']))
{
if (time() - $row['poster_time'] > $modSettings['edit_wait_time'] || $user_info['id'] != $row['id_member'])
{
$msgOptions['modify_time'] = time();
$msgOptions['modify_name'] = $user_info['name'];
}
}
else
$moderationAction = false;
modifyPost($msgOptions, $topicOptions, $posterOptions);
if (!isset($msgOptions['modify_time']) && !empty($row['modified_time']))
{
$msgOptions['modify_time'] = $row['modified_time'];
$msgOptions['modify_name'] = $row['modified_name'];
$msgOptions['modify_reason'] = $row['modified_reason'];
}
if (isset($_POST['subject']) && isset($_REQUEST['change_all_subjects']) && $row['id_first_msg'] == $row['id_msg'] && !empty($row['num_replies']) && (allowedTo('modify_any') || ($row['id_member_started'] == $user_info['id'] && allowedTo('modify_replies'))))
{
if (!isset($context['response_prefix']) && !($context['response_prefix'] = cache_get_data('response_prefix')))
{
if ($language === $user_info['language'])
$context['response_prefix'] = $txt['response_prefix'];
else
{
loadLanguage('index', $language, false);
$context['response_prefix'] = $txt['response_prefix'];
loadLanguage('index');
}
cache_put_data('response_prefix', $context['response_prefix'], 600);
}
$smcFunc['db_query']('', '
UPDATE {db_prefix}messages
SET subject = {string:subject}
WHERE id_topic = {int:current_topic}
AND id_msg != {int:id_first_msg}',
array(
'current_topic' => $topic,
'id_first_msg' => $row['id_first_msg'],
'subject' => $context['response_prefix'] . $_POST['subject'],
)
);
}
if (!empty($moderationAction))
logAction('modify', array('topic' => $topic, 'message' => $row['id_msg'], 'member' => $row['id_member'], 'board' => $board));
}
if (isset($_REQUEST['xml']))
{
$context['sub_template'] = 'modifydone';
if (empty($post_errors) && isset($msgOptions['subject']) && isset($msgOptions['body']))
{
$context['message'] = array(
'id' => $row['id_msg'],
'modified' => array(
'time' => isset($msgOptions['modify_time']) ? timeformat($msgOptions['modify_time']) : '',
'timestamp' => isset($msgOptions['modify_time']) ? forum_time(true, $msgOptions['modify_time']) : 0,
'name' => isset($msgOptions['modify_time']) ? $msgOptions['modify_name'] : '',
'reason' => $msgOptions['modify_reason'],
),
'subject' => $msgOptions['subject'],
'first_in_topic' => $row['id_msg'] == $row['id_first_msg'],
'body' => strtr($msgOptions['body'], array(']]>' => ']]]]><![CDATA[>')),
);
censorText($context['message']['subject']);
censorText($context['message']['body']);
$context['message']['body'] = parse_bbc($context['message']['body'], $row['smileys_enabled'], $row['id_msg']);
}
elseif (empty($post_errors))
{
$context['sub_template'] = 'modifytopicdone';
$context['message'] = array(
'id' => $row['id_msg'],
'modified' => array(
'time' => isset($msgOptions['modify_time']) ? timeformat($msgOptions['modify_time']) : '',
'timestamp' => isset($msgOptions['modify_time']) ? forum_time(true, $msgOptions['modify_time']) : 0,
'name' => isset($msgOptions['modify_time']) ? $msgOptions['modify_name'] : '',
),
'subject' => isset($msgOptions['subject']) ? $msgOptions['subject'] : '',
);
censorText($context['message']['subject']);
}
else
{
$context['message'] = array(
'id' => $row['id_msg'],
'errors' => array(),
'error_in_subject' => in_array('no_subject', $post_errors),
'error_in_body' => in_array('no_message', $post_errors) || in_array('long_message', $post_errors),
);
loadLanguage('Errors');
foreach ($post_errors as $post_error)
{
if ($post_error == 'long_message')
$context['message']['errors'][] = sprintf($txt['error_' . $post_error], $modSettings['max_messageLength']);
else
$context['message']['errors'][] = $txt['error_' . $post_error];
}
}
call_integration_hook('integrate_jsmodify_xml');
}
else
obExit(false);
}
?>