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:
<?php
if (!defined('SMF'))
die('No direct access...');
function Ban()
{
global $context, $txt, $scripturl;
isAllowedTo('manage_bans');
loadTemplate('ManageBans');
$subActions = array(
'add' => 'BanEdit',
'browse' => 'BanBrowseTriggers',
'edittrigger' => 'BanEditTrigger',
'edit' => 'BanEdit',
'list' => 'BanList',
'log' => 'BanLog',
);
$_REQUEST['sa'] = isset($_REQUEST['sa']) && isset($subActions[$_REQUEST['sa']]) ? $_REQUEST['sa'] : 'list';
$context['page_title'] = $txt['ban_title'];
$context['sub_action'] = $_REQUEST['sa'];
$context[$context['admin_menu_name']]['tab_data'] = array(
'title' => $txt['ban_title'],
'help' => 'ban_members',
'description' => $txt['ban_description'],
'tabs' => array(
'list' => array(
'description' => $txt['ban_description'],
'href' => $scripturl . '?action=admin;area=ban;sa=list',
'is_selected' => $_REQUEST['sa'] == 'list' || $_REQUEST['sa'] == 'edit' || $_REQUEST['sa'] == 'edittrigger',
),
'add' => array(
'description' => $txt['ban_description'],
'href' => $scripturl . '?action=admin;area=ban;sa=add',
'is_selected' => $_REQUEST['sa'] == 'add',
),
'browse' => array(
'description' => $txt['ban_trigger_browse_description'],
'href' => $scripturl . '?action=admin;area=ban;sa=browse',
'is_selected' => $_REQUEST['sa'] == 'browse',
),
'log' => array(
'description' => $txt['ban_log_description'],
'href' => $scripturl . '?action=admin;area=ban;sa=log',
'is_selected' => $_REQUEST['sa'] == 'log',
'is_last' => true,
),
),
);
call_integration_hook('integrate_manage_bans', array(&$subActions));
call_helper($subActions[$_REQUEST['sa']]);
}
function BanList()
{
global $txt, $context, $scripturl;
global $user_info, $sourcedir, $modSettings;
if (!empty($_POST['removeBans']) && !empty($_POST['remove']) && is_array($_POST['remove']))
{
checkSession();
array_map('intval', $_POST['remove']);
removeBanGroups($_POST['remove']);
removeBanTriggers($_POST['remove']);
updateSettings(array('banLastUpdated' => time()));
updateBanMembers();
}
if (preg_match('~%[AaBbCcDdeGghjmuYy](?:[^%]*%[AaBbCcDdeGghjmuYy])*~', $user_info['time_format'], $matches) == 0 || empty($matches[0]))
$context['ban_time_format'] = $user_info['time_format'];
else
$context['ban_time_format'] = $matches[0];
$listOptions = array(
'id' => 'ban_list',
'title' => $txt['ban_title'],
'items_per_page' => $modSettings['defaultMaxListItems'],
'base_href' => $scripturl . '?action=admin;area=ban;sa=list',
'default_sort_col' => 'added',
'default_sort_dir' => 'desc',
'get_items' => array(
'function' => 'list_getBans',
),
'get_count' => array(
'function' => 'list_getNumBans',
),
'no_items_label' => $txt['ban_no_entries'],
'columns' => array(
'name' => array(
'header' => array(
'value' => $txt['ban_name'],
),
'data' => array(
'db' => 'name',
),
'sort' => array(
'default' => 'bg.name',
'reverse' => 'bg.name DESC',
),
),
'notes' => array(
'header' => array(
'value' => $txt['ban_notes'],
),
'data' => array(
'db' => 'notes',
'class' => 'smalltext',
),
'sort' => array(
'default' => 'LENGTH(bg.notes) > 0 DESC, bg.notes',
'reverse' => 'LENGTH(bg.notes) > 0, bg.notes DESC',
),
),
'reason' => array(
'header' => array(
'value' => $txt['ban_reason'],
),
'data' => array(
'db' => 'reason',
'class' => 'smalltext',
),
'sort' => array(
'default' => 'LENGTH(bg.reason) > 0 DESC, bg.reason',
'reverse' => 'LENGTH(bg.reason) > 0, bg.reason DESC',
),
),
'added' => array(
'header' => array(
'value' => $txt['ban_added'],
),
'data' => array(
'function' => function($rowData) use ($context)
{
return timeformat($rowData['ban_time'], empty($context['ban_time_format']) ? true : $context['ban_time_format']);
},
),
'sort' => array(
'default' => 'bg.ban_time',
'reverse' => 'bg.ban_time DESC',
),
),
'expires' => array(
'header' => array(
'value' => $txt['ban_expires'],
),
'data' => array(
'function' => function($rowData) use ($txt)
{
if ($rowData['expire_time'] === null)
return $txt['never'];
elseif ($rowData['expire_time'] < time())
return sprintf('<span class="red">%1$s</span>', $txt['ban_expired']);
else
return sprintf('%1$d %2$s', ceil(($rowData['expire_time'] - time()) / (60 * 60 * 24)), $txt['ban_days']);
},
),
'sort' => array(
'default' => 'COALESCE(bg.expire_time, 1=1) DESC, bg.expire_time DESC',
'reverse' => 'COALESCE(bg.expire_time, 1=1), bg.expire_time',
),
),
'num_triggers' => array(
'header' => array(
'value' => $txt['ban_triggers'],
),
'data' => array(
'db' => 'num_triggers',
),
'sort' => array(
'default' => 'num_triggers DESC',
'reverse' => 'num_triggers',
),
),
'actions' => array(
'header' => array(
'value' => $txt['ban_actions'],
'class' => 'centercol',
),
'data' => array(
'sprintf' => array(
'format' => '<a href="' . $scripturl . '?action=admin;area=ban;sa=edit;bg=%1$d">' . $txt['modify'] . '</a>',
'params' => array(
'id_ban_group' => false,
),
),
'class' => 'centercol',
),
),
'check' => array(
'header' => array(
'value' => '<input type="checkbox" onclick="invertAll(this, this.form);">',
'class' => 'centercol',
),
'data' => array(
'sprintf' => array(
'format' => '<input type="checkbox" name="remove[]" value="%1$d">',
'params' => array(
'id_ban_group' => false,
),
),
'class' => 'centercol',
),
),
),
'form' => array(
'href' => $scripturl . '?action=admin;area=ban;sa=list',
),
'additional_rows' => array(
array(
'position' => 'top_of_list',
'value' => '<input type="submit" name="removeBans" value="' . $txt['ban_remove_selected'] . '" class="button">',
),
array(
'position' => 'bottom_of_list',
'value' => '<input type="submit" name="removeBans" value="' . $txt['ban_remove_selected'] . '" class="button">',
),
),
'javascript' => '
var removeBans = $("input[name=\'removeBans\']");
removeBans.on( "click", function(e) {
var removeItems = $("input[name=\'remove[]\']:checked").length;
if (removeItems == 0)
{
e.preventDefault();
return alert("' . $txt['select_item_check'] . '");
}
return confirm("' . $txt['ban_remove_selected_confirm'] . '");
});',
);
require_once($sourcedir . '/Subs-List.php');
createList($listOptions);
$context['sub_template'] = 'show_list';
$context['default_list'] = 'ban_list';
}
function list_getBans($start, $items_per_page, $sort)
{
global $smcFunc;
$request = $smcFunc['db_query']('', '
SELECT bg.id_ban_group, bg.name, bg.ban_time, bg.expire_time, bg.reason, bg.notes, COUNT(bi.id_ban) AS num_triggers
FROM {db_prefix}ban_groups AS bg
LEFT JOIN {db_prefix}ban_items AS bi ON (bi.id_ban_group = bg.id_ban_group)
GROUP BY bg.id_ban_group, bg.name, bg.ban_time, bg.expire_time, bg.reason, bg.notes
ORDER BY {raw:sort}
LIMIT {int:offset}, {int:limit}',
array(
'sort' => $sort,
'offset' => $start,
'limit' => $items_per_page,
)
);
$bans = array();
while ($row = $smcFunc['db_fetch_assoc']($request))
$bans[] = $row;
$smcFunc['db_free_result']($request);
return $bans;
}
function list_getNumBans()
{
global $smcFunc;
$request = $smcFunc['db_query']('', '
SELECT COUNT(*) AS num_bans
FROM {db_prefix}ban_groups',
array(
)
);
list ($numBans) = $smcFunc['db_fetch_row']($request);
$smcFunc['db_free_result']($request);
return $numBans;
}
function BanEdit()
{
global $txt, $modSettings, $context, $scripturl, $smcFunc, $sourcedir;
if ((isset($_POST['add_ban']) || isset($_POST['modify_ban']) || isset($_POST['remove_selection'])) && empty($context['ban_errors']))
BanEdit2();
$ban_group_id = isset($context['ban']['id']) ? $context['ban']['id'] : (isset($_REQUEST['bg']) ? (int) $_REQUEST['bg'] : 0);
loadLanguage('Errors');
createToken('admin-bet');
$context['form_url'] = $scripturl . '?action=admin;area=ban;sa=edit';
if (!empty($context['ban_errors']))
foreach ($context['ban_errors'] as $error)
$context['error_messages'][$error] = $txt[$error];
else
{
if (!empty($ban_group_id))
{
$context['ban_group_id'] = $ban_group_id;
require_once($sourcedir . '/Subs-List.php');
$listOptions = array(
'id' => 'ban_items',
'base_href' => $scripturl . '?action=admin;area=ban;sa=edit;bg=' . $ban_group_id,
'no_items_label' => $txt['ban_no_triggers'],
'items_per_page' => $modSettings['defaultMaxListItems'],
'get_items' => array(
'function' => 'list_getBanItems',
'params' => array(
'ban_group_id' => $ban_group_id,
),
),
'get_count' => array(
'function' => 'list_getNumBanItems',
'params' => array(
'ban_group_id' => $ban_group_id,
),
),
'columns' => array(
'type' => array(
'header' => array(
'value' => $txt['ban_banned_entity'],
'style' => 'width: 60%;text-align: left;',
),
'data' => array(
'function' => function($ban_item) use ($txt)
{
if (in_array($ban_item['type'], array('ip', 'hostname', 'email')))
return '<strong>' . $txt[$ban_item['type']] . ':</strong> ' . $ban_item[$ban_item['type']];
elseif ($ban_item['type'] == 'user')
return '<strong>' . $txt['username'] . ':</strong> ' . $ban_item['user']['link'];
else
return '<strong>' . $txt['unknown'] . ':</strong> ' . $ban_item['no_bantype_selected'];
},
'style' => 'text-align: left;',
),
),
'hits' => array(
'header' => array(
'value' => $txt['ban_hits'],
'style' => 'width: 15%; text-align: center;',
),
'data' => array(
'db' => 'hits',
'style' => 'text-align: center;',
),
),
'id' => array(
'header' => array(
'value' => $txt['ban_actions'],
'style' => 'width: 15%; text-align: center;',
),
'data' => array(
'function' => function($ban_item) use ($txt, $context, $scripturl)
{
return '<a href="' . $scripturl . '?action=admin;area=ban;sa=edittrigger;bg=' . $context['ban_group_id'] . ';bi=' . $ban_item['id'] . '">' . $txt['ban_edit_trigger'] . '</a>';
},
'style' => 'text-align: center;',
),
),
'checkboxes' => array(
'header' => array(
'value' => '<input type="checkbox" onclick="invertAll(this, this.form, \'ban_items\');">',
'style' => 'width: 5%; text-align: center;',
),
'data' => array(
'sprintf' => array(
'format' => '<input type="checkbox" name="ban_items[]" value="%1$d">',
'params' => array(
'id' => false,
),
),
'style' => 'text-align: center;',
),
),
),
'form' => array(
'href' => $scripturl . '?action=admin;area=ban;sa=edit;bg=' . $ban_group_id,
),
'additional_rows' => array(
array(
'position' => 'above_table_headers',
'value' => '
<input type="submit" name="remove_selection" value="' . $txt['ban_remove_selected_triggers'] . '" class="button"> <a class="button" href="' . $scripturl . '?action=admin;area=ban;sa=edittrigger;bg=' . $ban_group_id . '">' . $txt['ban_add_trigger'] . '</a>',
'style' => 'text-align: right;',
),
array(
'position' => 'above_table_headers',
'value' => '
<input type="hidden" name="bg" value="' . $ban_group_id . '">
<input type="hidden" name="' . $context['session_var'] . '" value="' . $context['session_id'] . '">
<input type="hidden" name="' . $context['admin-bet_token_var'] . '" value="' . $context['admin-bet_token'] . '">',
),
array(
'position' => 'below_table_data',
'value' => '
<input type="submit" name="remove_selection" value="' . $txt['ban_remove_selected_triggers'] . '" class="button"> <a class="button" href="' . $scripturl . '?action=admin;area=ban;sa=edittrigger;bg=' . $ban_group_id . '">' . $txt['ban_add_trigger'] . '</a>',
'style' => 'text-align: right;',
),
array(
'position' => 'below_table_data',
'value' => '
<input type="hidden" name="bg" value="' . $ban_group_id . '">
<input type="hidden" name="' . $context['session_var'] . '" value="' . $context['session_id'] . '">
<input type="hidden" name="' . $context['admin-bet_token_var'] . '" value="' . $context['admin-bet_token'] . '">',
),
),
'javascript' => '
var removeBans = $("input[name=\'remove_selection\']");
removeBans.on( "click", function(e) {
var removeItems = $("input[name=\'ban_items[]\']:checked").length;
if (removeItems == 0)
{
e.preventDefault();
return alert("' . $txt['select_item_check'] . '");
}
return confirm("' . $txt['ban_remove_selected_confirm'] . '");
});',
);
call_integration_hook('integrate_ban_edit_list', array(&$listOptions));
createList($listOptions);
}
else
{
$context['ban'] = array(
'id' => 0,
'name' => '',
'expiration' => array(
'status' => 'never',
'days' => 0
),
'reason' => '',
'notes' => '',
'ban_days' => 0,
'cannot' => array(
'access' => true,
'post' => false,
'register' => false,
'login' => false,
),
'is_new' => true,
);
$context['ban_suggestions'] = array(
'main_ip' => '',
'hostname' => '',
'email' => '',
'member' => array(
'id' => 0,
),
);
if (!empty($_REQUEST['u']))
{
$request = $smcFunc['db_query']('', '
SELECT id_member, real_name, member_ip, email_address
FROM {db_prefix}members
WHERE id_member = {int:current_user}
LIMIT 1',
array(
'current_user' => (int) $_REQUEST['u'],
)
);
if ($smcFunc['db_num_rows']($request) > 0)
{
list ($context['ban_suggestions']['member']['id'], $context['ban_suggestions']['member']['name'], $context['ban_suggestions']['main_ip'], $context['ban_suggestions']['email']) = $smcFunc['db_fetch_row']($request);
$context['ban_suggestions']['main_ip'] = inet_dtop($context['ban_suggestions']['main_ip']);
}
$smcFunc['db_free_result']($request);
if (!empty($context['ban_suggestions']['member']['id']))
{
$context['ban_suggestions']['href'] = $scripturl . '?action=profile;u=' . $context['ban_suggestions']['member']['id'];
$context['ban_suggestions']['member']['link'] = '<a href="' . $context['ban_suggestions']['href'] . '">' . $context['ban_suggestions']['member']['name'] . '</a>';
$context['ban']['name'] = $context['ban_suggestions']['member']['name'];
$context['ban']['from_user'] = true;
if ((preg_match('/^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/', $context['ban_suggestions']['main_ip']) == 1 || isValidIPv6($context['ban_suggestions']['main_ip'])) && empty($modSettings['disableHostnameLookup']))
$context['ban_suggestions']['hostname'] = host_from_ip($context['ban_suggestions']['main_ip']);
$context['ban_suggestions']['other_ips'] = banLoadAdditionalIPs($context['ban_suggestions']['member']['id']);
}
}
elseif (isset($_GET['msg']) && !empty($_GET['msg']))
{
$request = $smcFunc['db_query']('', '
SELECT poster_name, poster_ip, poster_email
FROM {db_prefix}messages
WHERE id_msg = {int:message}
LIMIT 1',
array(
'message' => (int) $_REQUEST['msg'],
)
);
if ($smcFunc['db_num_rows']($request) > 0)
{
list ($context['ban_suggestions']['member']['name'], $context['ban_suggestions']['main_ip'], $context['ban_suggestions']['email']) = $smcFunc['db_fetch_row']($request);
$context['ban_suggestions']['main_ip'] = inet_dtop($context['ban_suggestions']['main_ip']);
}
$smcFunc['db_free_result']($request);
$context['ban']['name'] = $context['ban_suggestions']['member']['name'];
$context['ban']['from_user'] = true;
}
call_integration_hook('integrate_ban_edit_new', array());
}
}
loadJavaScriptFile('suggest.js', array('minimize' => true), 'smf_suggest');
$context['sub_template'] = 'ban_edit';
}
function list_getBanItems($start = 0, $items_per_page = 0, $sort = 0, $ban_group_id = 0)
{
global $context, $smcFunc, $scripturl;
$ban_items = array();
$request = $smcFunc['db_query']('', '
SELECT
bi.id_ban, bi.hostname, bi.email_address, bi.id_member, bi.hits,
bi.ip_low, bi.ip_high,
bg.id_ban_group, bg.name, bg.ban_time, COALESCE(bg.expire_time, 0) AS expire_time, bg.reason, bg.notes, bg.cannot_access, bg.cannot_register, bg.cannot_login, bg.cannot_post,
COALESCE(mem.id_member, 0) AS id_member, mem.member_name, mem.real_name
FROM {db_prefix}ban_groups AS bg
LEFT JOIN {db_prefix}ban_items AS bi ON (bi.id_ban_group = bg.id_ban_group)
LEFT JOIN {db_prefix}members AS mem ON (mem.id_member = bi.id_member)
WHERE bg.id_ban_group = {int:current_ban}
LIMIT {int:start}, {int:items_per_page}',
array(
'current_ban' => $ban_group_id,
'start' => $start,
'items_per_page' => $items_per_page,
)
);
if ($smcFunc['db_num_rows']($request) == 0)
fatal_lang_error('ban_not_found', false);
while ($row = $smcFunc['db_fetch_assoc']($request))
{
if (!isset($context['ban']))
{
$context['ban'] = array(
'id' => $row['id_ban_group'],
'name' => $row['name'],
'expiration' => array(
'status' => empty($row['expire_time']) ? 'never' : ($row['expire_time'] < time() ? 'expired' : 'one_day'),
'days' => $row['expire_time'] > time() ? ($row['expire_time'] - time() < 86400 ? 1 : ceil(($row['expire_time'] - time()) / 86400)) : 0
),
'reason' => $row['reason'],
'notes' => $row['notes'],
'cannot' => array(
'access' => !empty($row['cannot_access']),
'post' => !empty($row['cannot_post']),
'register' => !empty($row['cannot_register']),
'login' => !empty($row['cannot_login']),
),
'is_new' => false,
'hostname' => '',
'email' => '',
);
}
if (!empty($row['id_ban']))
{
$ban_items[$row['id_ban']] = array(
'id' => $row['id_ban'],
'hits' => $row['hits'],
);
if (!empty($row['ip_high']))
{
$ban_items[$row['id_ban']]['type'] = 'ip';
$ban_items[$row['id_ban']]['ip'] = range2ip($row['ip_low'], $row['ip_high']);
}
elseif (!empty($row['hostname']))
{
$ban_items[$row['id_ban']]['type'] = 'hostname';
$ban_items[$row['id_ban']]['hostname'] = str_replace('%', '*', $row['hostname']);
}
elseif (!empty($row['email_address']))
{
$ban_items[$row['id_ban']]['type'] = 'email';
$ban_items[$row['id_ban']]['email'] = str_replace('%', '*', $row['email_address']);
}
elseif (!empty($row['id_member']))
{
$ban_items[$row['id_ban']]['type'] = 'user';
$ban_items[$row['id_ban']]['user'] = array(
'id' => $row['id_member'],
'name' => $row['real_name'],
'href' => $scripturl . '?action=profile;u=' . $row['id_member'],
'link' => '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '">' . $row['real_name'] . '</a>',
);
}
else
{
unset($ban_items[$row['id_ban']]);
removeBanTriggers($row['id_ban']);
}
}
}
$smcFunc['db_free_result']($request);
call_integration_hook('integrate_ban_list', array(&$ban_items));
return $ban_items;
}
function list_getNumBanItems()
{
global $smcFunc, $context;
$ban_group_id = isset($context['ban_group_id']) ? $context['ban_group_id'] : 0;
$request = $smcFunc['db_query']('', '
SELECT COUNT(bi.id_ban)
FROM {db_prefix}ban_groups AS bg
LEFT JOIN {db_prefix}ban_items AS bi ON (bi.id_ban_group = bg.id_ban_group)
LEFT JOIN {db_prefix}members AS mem ON (mem.id_member = bi.id_member)
WHERE bg.id_ban_group = {int:current_ban}',
array(
'current_ban' => $ban_group_id,
)
);
list($banNumber) = $smcFunc['db_fetch_row']($request);
$smcFunc['db_free_result']($request);
return $banNumber;
}
function banLoadAdditionalIPs($member_id)
{
loadLanguage('Profile');
$search_list = array();
call_integration_hook('integrate_load_addtional_ip_ban', array(&$search_list));
$search_list += array('ips_in_messages' => 'banLoadAdditionalIPsMember', 'ips_in_errors' => 'banLoadAdditionalIPsError');
$return = array();
foreach ($search_list as $key => $callable)
if (is_callable($callable))
$return[$key] = call_user_func($callable, $member_id);
return $return;
}
function banLoadAdditionalIPsMember($member_id)
{
global $smcFunc;
$message_ips = array();
$request = $smcFunc['db_query']('', '
SELECT DISTINCT poster_ip
FROM {db_prefix}messages
WHERE id_member = {int:current_user}
AND poster_ip IS NOT NULL
ORDER BY poster_ip',
array(
'current_user' => $member_id,
)
);
while ($row = $smcFunc['db_fetch_assoc']($request))
$message_ips[] = inet_dtop($row['poster_ip']);
$smcFunc['db_free_result']($request);
return $message_ips;
}
function banLoadAdditionalIPsError($member_id)
{
global $smcFunc;
$error_ips = array();
$request = $smcFunc['db_query']('', '
SELECT DISTINCT ip
FROM {db_prefix}log_errors
WHERE id_member = {int:current_user}
AND ip IS NOT NULL
ORDER BY ip',
array(
'current_user' => $member_id,
)
);
while ($row = $smcFunc['db_fetch_assoc']($request))
$error_ips[] = inet_dtop($row['ip']);
$smcFunc['db_free_result']($request);
return $error_ips;
}
function banEdit2()
{
global $smcFunc, $context;
checkSession();
validateToken('admin-bet');
$context['ban_errors'] = array();
if (isset($_POST['add_ban']) || isset($_POST['modify_ban']))
{
$ban_info['id'] = isset($_REQUEST['bg']) ? (int) $_REQUEST['bg'] : 0;
$ban_info['is_new'] = empty($ban_info['id']);
$ban_info['expire_date'] = !empty($_POST['expire_date']) ? (int) $_POST['expire_date'] : 0;
$ban_info['expiration'] = array(
'status' => isset($_POST['expiration']) && in_array($_POST['expiration'], array('never', 'one_day', 'expired')) ? $_POST['expiration'] : 'never',
'days' => $ban_info['expire_date'],
);
$ban_info['db_expiration'] = $ban_info['expiration']['status'] == 'never' ? 'NULL' : ($ban_info['expiration']['status'] == 'one_day' ? time() + 24 * 60 * 60 * $ban_info['expire_date'] : 0);
$ban_info['full_ban'] = empty($_POST['full_ban']) ? 0 : 1;
$ban_info['reason'] = !empty($_POST['reason']) ? $smcFunc['htmlspecialchars']($_POST['reason'], ENT_QUOTES) : '';
$ban_info['name'] = !empty($_POST['ban_name']) ? $smcFunc['htmlspecialchars']($_POST['ban_name'], ENT_QUOTES) : '';
$ban_info['notes'] = isset($_POST['notes']) ? $smcFunc['htmlspecialchars']($_POST['notes'], ENT_QUOTES) : '';
$ban_info['notes'] = str_replace(array("\r", "\n", ' '), array('', '<br>', ' '), $ban_info['notes']);
$ban_info['cannot']['access'] = empty($ban_info['full_ban']) ? 0 : 1;
$ban_info['cannot']['post'] = !empty($ban_info['full_ban']) || empty($_POST['cannot_post']) ? 0 : 1;
$ban_info['cannot']['register'] = !empty($ban_info['full_ban']) || empty($_POST['cannot_register']) ? 0 : 1;
$ban_info['cannot']['login'] = !empty($ban_info['full_ban']) || empty($_POST['cannot_login']) ? 0 : 1;
call_integration_hook('integrate_edit_bans', array(&$ban_info, empty($_REQUEST['bg'])));
if (empty($_REQUEST['bg']))
$ban_group_id = insertBanGroup($ban_info);
else
$ban_group_id = updateBanGroup($ban_info);
if (is_numeric($ban_group_id))
{
$ban_info['id'] = $ban_group_id;
$ban_info['is_new'] = false;
}
$context['ban'] = $ban_info;
}
if (isset($_POST['ban_suggestions']))
$saved_triggers = saveTriggers($_POST['ban_suggestions'], $ban_info['id'], isset($_REQUEST['u']) ? (int) $_REQUEST['u'] : 0, isset($_REQUEST['bi']) ? (int) $_REQUEST['bi'] : 0);
if (!empty($context['ban_errors']))
{
$context['ban_suggestions'] = !empty($saved_triggers) ? $saved_triggers : array();
$context['ban']['from_user'] = true;
$context['ban_suggestions'] = array_merge($context['ban_suggestions'], getMemberData((int) $_REQUEST['u']));
if (!empty($context['ban_suggestions']['member']['id']))
$context['ban_suggestions']['other_ips'] = banLoadAdditionalIPs($context['ban_suggestions']['member']['id']);
return BanEdit();
}
$context['ban_suggestions']['saved_triggers'] = !empty($saved_triggers) ? $saved_triggers : array();
if (isset($_POST['ban_items']))
{
$ban_group_id = isset($_REQUEST['bg']) ? (int) $_REQUEST['bg'] : 0;
array_map('intval', $_POST['ban_items']);
removeBanTriggers($_POST['ban_items'], $ban_group_id);
}
call_integration_hook('integrate_edit_bans_post', array());
updateSettings(array('banLastUpdated' => time()));
updateBanMembers();
redirectexit('action=admin;area=ban;sa=edit;bg=' . $ban_group_id);
}
function saveTriggers($suggestions = array(), $ban_group, $member = 0, $ban_id = 0)
{
global $context;
$triggers = array(
'main_ip' => '',
'hostname' => '',
'email' => '',
'member' => array(
'id' => $member,
)
);
foreach ($suggestions as $key => $value)
{
if (is_array($value))
$triggers[$key] = $value;
else
$triggers[$value] = !empty($_POST[$value]) ? $_POST[$value] : '';
}
$ban_triggers = validateTriggers($triggers);
call_integration_hook('integrate_save_triggers', array(&$ban_triggers, &$ban_group));
if (!empty($ban_triggers['ban_triggers']) && empty($context['ban_errors']))
{
if (empty($ban_id))
addTriggers($ban_group, $ban_triggers['ban_triggers'], $ban_triggers['log_info']);
else
updateTriggers($ban_id, $ban_group, array_shift($ban_triggers['ban_triggers']), $ban_triggers['log_info']);
}
if (!empty($context['ban_errors']))
return $triggers;
else
return false;
}
function removeBanTriggers($items_ids = array(), $group_id = false)
{
global $smcFunc, $scripturl;
if ($group_id !== false)
$group_id = (int) $group_id;
if (empty($group_id) && empty($items_ids))
return false;
if (!is_array($items_ids))
$items_ids = array($items_ids);
$log_info = array();
$ban_items = array();
call_integration_hook('integrate_remove_triggers', array(&$items_ids, $group_id));
$request = $smcFunc['db_query']('', '
SELECT
bi.id_ban, bi.hostname, bi.email_address, bi.id_member, bi.hits,
bi.ip_low, bi.ip_high,
COALESCE(mem.id_member, 0) AS id_member, mem.member_name, mem.real_name
FROM {db_prefix}ban_items AS bi
LEFT JOIN {db_prefix}members AS mem ON (mem.id_member = bi.id_member)
WHERE bi.id_ban IN ({array_int:ban_list})',
array(
'ban_list' => $items_ids,
)
);
while ($row = $smcFunc['db_fetch_assoc']($request))
{
if (!empty($row['id_ban']))
{
$ban_items[$row['id_ban']] = array(
'id' => $row['id_ban'],
);
if (!empty($row['ip_high']))
{
$ban_items[$row['id_ban']]['type'] = 'ip';
$ban_items[$row['id_ban']]['ip'] = range2ip($row['ip_low'], $row['ip_high']);
$is_range = (strpos($ban_items[$row['id_ban']]['ip'], '-') !== false || strpos($ban_items[$row['id_ban']]['ip'], '*') !== false);
$log_info[] = array(
'bantype' => ($is_range ? 'ip_range' : 'main_ip'),
'value' => $ban_items[$row['id_ban']]['ip'],
);
}
elseif (!empty($row['hostname']))
{
$ban_items[$row['id_ban']]['type'] = 'hostname';
$ban_items[$row['id_ban']]['hostname'] = str_replace('%', '*', $row['hostname']);
$log_info[] = array(
'bantype' => 'hostname',
'value' => $row['hostname'],
);
}
elseif (!empty($row['email_address']))
{
$ban_items[$row['id_ban']]['type'] = 'email';
$ban_items[$row['id_ban']]['email'] = str_replace('%', '*', $row['email_address']);
$log_info[] = array(
'bantype' => 'email',
'value' => $ban_items[$row['id_ban']]['email'],
);
}
elseif (!empty($row['id_member']))
{
$ban_items[$row['id_ban']]['type'] = 'user';
$ban_items[$row['id_ban']]['user'] = array(
'id' => $row['id_member'],
'name' => $row['real_name'],
'href' => $scripturl . '?action=profile;u=' . $row['id_member'],
'link' => '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '">' . $row['real_name'] . '</a>',
);
$log_info[] = array(
'bantype' => 'user',
'value' => $row['id_member'],
);
}
}
}
logTriggersUpdates($log_info, false, true);
$smcFunc['db_free_result']($request);
if ($group_id !== false)
{
$smcFunc['db_query']('', '
DELETE FROM {db_prefix}ban_items
WHERE id_ban IN ({array_int:ban_list})
AND id_ban_group = {int:ban_group}',
array(
'ban_list' => $items_ids,
'ban_group' => $group_id,
)
);
}
elseif (!empty($items_ids))
{
$smcFunc['db_query']('', '
DELETE FROM {db_prefix}ban_items
WHERE id_ban IN ({array_int:ban_list})',
array(
'ban_list' => $items_ids,
)
);
}
return true;
}
function removeBanGroups($group_ids)
{
global $smcFunc;
if (!is_array($group_ids))
$group_ids = array($group_ids);
$group_ids = array_unique($group_ids);
if (empty($group_ids))
return false;
$smcFunc['db_query']('', '
DELETE FROM {db_prefix}ban_groups
WHERE id_ban_group IN ({array_int:ban_list})',
array(
'ban_list' => $group_ids,
)
);
return true;
}
function removeBanLogs($ids = array())
{
global $smcFunc;
if (empty($ids))
$smcFunc['db_query']('truncate_table', '
TRUNCATE {db_prefix}log_banned',
array(
)
);
else
{
if (!is_array($ids))
$ids = array($ids);
$ids = array_unique($ids);
if (empty($ids))
return false;
$smcFunc['db_query']('', '
DELETE FROM {db_prefix}log_banned
WHERE id_ban_log IN ({array_int:ban_list})',
array(
'ban_list' => $ids,
)
);
}
return true;
}
function validateTriggers(&$triggers)
{
global $context, $smcFunc;
if (empty($triggers))
$context['ban_erros'][] = 'ban_empty_triggers';
$ban_triggers = array();
$log_info = array();
foreach ($triggers as $key => $value)
{
if (!empty($value))
{
if ($key == 'member')
continue;
if ($key == 'main_ip')
{
$value = trim($value);
$ip_parts = ip2range($value);
if (!checkExistingTriggerIP($ip_parts, $value))
$context['ban_erros'][] = 'invalid_ip';
else
{
$ban_triggers['main_ip'] = array(
'ip_low' => $ip_parts['low'],
'ip_high' => $ip_parts['high']
);
}
}
elseif ($key == 'hostname')
{
if (preg_match('/[^\w.\-*]/', $value) == 1)
$context['ban_erros'][] = 'invalid_hostname';
else
{
$value = substr(str_replace('*', '%', $value), 0, 255);
$ban_triggers['hostname']['hostname'] = $value;
}
}
elseif ($key == 'email')
{
if (preg_match('/[^\w.\-\+*@]/', $value) == 1)
$context['ban_erros'][] = 'invalid_email';
$request = $smcFunc['db_query']('', '
SELECT id_member
FROM {db_prefix}members
WHERE (id_group = {int:admin_group} OR FIND_IN_SET({int:admin_group}, additional_groups) != 0)
AND email_address LIKE {string:email}
LIMIT 1',
array(
'admin_group' => 1,
'email' => $value,
)
);
if ($smcFunc['db_num_rows']($request) != 0)
$context['ban_erros'][] = 'no_ban_admin';
$smcFunc['db_free_result']($request);
$value = substr(strtolower(str_replace('*', '%', $value)), 0, 255);
$ban_triggers['email']['email_address'] = $value;
}
elseif ($key == 'user')
{
$user = preg_replace('~&#(\d{4,5}|[2-9]\d{2,4}|1[2-9]\d);~', '&#$1;', $smcFunc['htmlspecialchars']($value, ENT_QUOTES));
$request = $smcFunc['db_query']('', '
SELECT id_member, (id_group = {int:admin_group} OR FIND_IN_SET({int:admin_group}, additional_groups) != 0) AS isAdmin
FROM {db_prefix}members
WHERE member_name = {string:username} OR real_name = {string:username}
LIMIT 1',
array(
'admin_group' => 1,
'username' => $user,
)
);
if ($smcFunc['db_num_rows']($request) == 0)
$context['ban_erros'][] = 'invalid_username';
list ($value, $isAdmin) = $smcFunc['db_fetch_row']($request);
$smcFunc['db_free_result']($request);
if ($isAdmin && strtolower($isAdmin) != 'f')
{
unset($value);
$context['ban_erros'][] = 'no_ban_admin';
}
else
$ban_triggers['user']['id_member'] = $value;
}
elseif (in_array($key, array('ips_in_messages', 'ips_in_errors')))
{
$values = array_unique($value);
if (isset($triggers['main_ip']))
$values = array_diff($values, array($triggers['main_ip']));
unset($value);
foreach ($values as $val)
{
$val = trim($val);
$ip_parts = ip2range($val);
if (!checkExistingTriggerIP($ip_parts, $val))
$context['ban_erros'][] = 'invalid_ip';
else
{
$ban_triggers[$key][] = array(
'ip_low' => $ip_parts['low'],
'ip_high' => $ip_parts['high'],
);
$log_info[] = array(
'value' => $val,
'bantype' => 'ip_range',
);
}
}
}
else
$context['ban_erros'][] = 'no_bantype_selected';
if (isset($value) && !is_array($value))
$log_info[] = array(
'value' => $value,
'bantype' => $key,
);
}
}
return array('ban_triggers' => $ban_triggers, 'log_info' => $log_info);
}
function addTriggers($group_id = 0, $triggers = array(), $logs = array())
{
global $smcFunc, $context;
if (empty($group_id))
$context['ban_errors'][] = 'ban_id_empty';
$values = array(
'id_ban_group' => $group_id,
'hostname' => '',
'email_address' => '',
'id_member' => 0,
'ip_low' => 'null',
'ip_high' => 'null',
);
$insertKeys = array(
'id_ban_group' => 'int',
'hostname' => 'string',
'email_address' => 'string',
'id_member' => 'int',
'ip_low' => 'inet',
'ip_high' => 'inet',
);
$insertTriggers = array();
foreach ($triggers as $key => $trigger)
{
if (in_array($key, array('ips_in_messages', 'ips_in_errors')))
foreach ($trigger as $real_trigger)
$insertTriggers[] = array_merge($values, $real_trigger);
else
$insertTriggers[] = array_merge($values, $trigger);
}
if (empty($insertTriggers))
$context['ban_errors'][] = 'ban_no_triggers';
if (!empty($context['ban_errors']))
return false;
$smcFunc['db_insert']('',
'{db_prefix}ban_items',
$insertKeys,
$insertTriggers,
array('id_ban')
);
logTriggersUpdates($logs, true);
return true;
}
function updateTriggers($ban_item = 0, $group_id = 0, $trigger = array(), $logs = array())
{
global $smcFunc, $context;
if (empty($ban_item))
$context['ban_errors'][] = 'ban_ban_item_empty';
if (empty($group_id))
$context['ban_errors'][] = 'ban_id_empty';
if (empty($trigger))
$context['ban_errors'][] = 'ban_no_triggers';
if (!empty($context['ban_errors']))
return;
$values = array(
'id_ban_group' => $group_id,
'hostname' => '',
'email_address' => '',
'id_member' => 0,
'ip_low' => 'null',
'ip_high' => 'null',
);
$trigger = array_merge($values, $trigger);
$smcFunc['db_query']('', '
UPDATE {db_prefix}ban_items
SET
hostname = {string:hostname}, email_address = {string:email_address}, id_member = {int:id_member},
ip_low = {inet:ip_low}, ip_high = {inet:ip_high}
WHERE id_ban = {int:ban_item}
AND id_ban_group = {int:id_ban_group}',
array_merge($trigger, array(
'id_ban_group' => $group_id,
'ban_item' => $ban_item,
))
);
logTriggersUpdates($logs, false);
}
function logTriggersUpdates($logs, $new = true, $removal = false)
{
if (empty($logs))
return;
$log_name_map = array(
'main_ip' => 'ip_range',
'hostname' => 'hostname',
'email' => 'email',
'user' => 'member',
'ip_range' => 'ip_range',
);
foreach ($logs as $log)
logAction('ban' . ($removal == true ? 'remove' : ''), array(
$log_name_map[$log['bantype']] => $log['value'],
'new' => empty($new) ? 0 : 1,
'remove' => empty($removal) ? 0 : 1,
'type' => $log['bantype'],
));
}
function updateBanGroup($ban_info = array())
{
global $smcFunc, $context;
if (empty($ban_info['name']))
$context['ban_errors'][] = 'ban_name_empty';
if (empty($ban_info['id']))
$context['ban_errors'][] = 'ban_id_empty';
if (empty($ban_info['cannot']['access']) && empty($ban_info['cannot']['register']) && empty($ban_info['cannot']['post']) && empty($ban_info['cannot']['login']))
$context['ban_errors'][] = 'ban_unknown_restriction_type';
if (!empty($ban_info['id']))
{
$request = $smcFunc['db_query']('', '
SELECT id_ban_group
FROM {db_prefix}ban_groups
WHERE id_ban_group = {int:ban_group}
LIMIT 1',
array(
'ban_group' => $ban_info['id']
)
);
if ($smcFunc['db_num_rows']($request) == 0)
$context['ban_errors'][] = 'ban_not_found';
$smcFunc['db_free_result']($request);
}
if (!empty($ban_info['name']))
{
$request = $smcFunc['db_query']('', '
SELECT id_ban_group
FROM {db_prefix}ban_groups
WHERE name = {string:new_ban_name}
AND id_ban_group != {int:ban_group}
LIMIT 1',
array(
'ban_group' => empty($ban_info['id']) ? 0 : $ban_info['id'],
'new_ban_name' => $ban_info['name'],
)
);
if ($smcFunc['db_num_rows']($request) != 0)
$context['ban_errors'][] = 'ban_name_exists';
$smcFunc['db_free_result']($request);
}
if (!empty($context['ban_errors']))
return $ban_info['id'];
$smcFunc['db_query']('', '
UPDATE {db_prefix}ban_groups
SET
name = {string:ban_name},
reason = {string:reason},
notes = {string:notes},
expire_time = {raw:expiration},
cannot_access = {int:cannot_access},
cannot_post = {int:cannot_post},
cannot_register = {int:cannot_register},
cannot_login = {int:cannot_login}
WHERE id_ban_group = {int:id_ban_group}',
array(
'expiration' => $ban_info['db_expiration'],
'cannot_access' => $ban_info['cannot']['access'],
'cannot_post' => $ban_info['cannot']['post'],
'cannot_register' => $ban_info['cannot']['register'],
'cannot_login' => $ban_info['cannot']['login'],
'id_ban_group' => $ban_info['id'],
'ban_name' => $ban_info['name'],
'reason' => $ban_info['reason'],
'notes' => $ban_info['notes'],
)
);
return $ban_info['id'];
}
function insertBanGroup($ban_info = array())
{
global $smcFunc, $context;
if (empty($ban_info['name']))
$context['ban_errors'][] = 'ban_name_empty';
if (empty($ban_info['cannot']['access']) && empty($ban_info['cannot']['register']) && empty($ban_info['cannot']['post']) && empty($ban_info['cannot']['login']))
$context['ban_errors'][] = 'ban_unknown_restriction_type';
if (!empty($ban_info['name']))
{
$request = $smcFunc['db_query']('', '
SELECT id_ban_group
FROM {db_prefix}ban_groups
WHERE name = {string:new_ban_name}' . '
LIMIT 1',
array(
'new_ban_name' => $ban_info['name'],
)
);
if ($smcFunc['db_num_rows']($request) == 1)
$context['ban_errors'][] = 'ban_name_exists';
$smcFunc['db_free_result']($request);
}
if (!empty($context['ban_errors']))
return;
$ban_info['id'] = $smcFunc['db_insert']('',
'{db_prefix}ban_groups',
array(
'name' => 'string-20', 'ban_time' => 'int', 'expire_time' => 'raw', 'cannot_access' => 'int', 'cannot_register' => 'int',
'cannot_post' => 'int', 'cannot_login' => 'int', 'reason' => 'string-255', 'notes' => 'string-65534',
),
array(
$ban_info['name'], time(), $ban_info['db_expiration'], $ban_info['cannot']['access'], $ban_info['cannot']['register'],
$ban_info['cannot']['post'], $ban_info['cannot']['login'], $ban_info['reason'], $ban_info['notes'],
),
array('id_ban_group'),
1
);
if (empty($ban_info['id']))
$context['ban_errors'][] = 'impossible_insert_new_bangroup';
return $ban_info['id'];
}
function BanEditTrigger()
{
global $context, $smcFunc, $scripturl;
$context['sub_template'] = 'ban_edit_trigger';
$context['form_url'] = $scripturl . '?action=admin;area=ban;sa=edittrigger';
$ban_group = isset($_REQUEST['bg']) ? (int) $_REQUEST['bg'] : 0;
$ban_id = isset($_REQUEST['bi']) ? (int) $_REQUEST['bi'] : 0;
if (empty($ban_group))
fatal_lang_error('ban_not_found', false);
if (isset($_POST['add_new_trigger']) && !empty($_POST['ban_suggestions']))
{
saveTriggers($_POST['ban_suggestions'], $ban_group, 0, $ban_id);
redirectexit('action=admin;area=ban;sa=edit' . (!empty($ban_group) ? ';bg=' . $ban_group : ''));
}
elseif (isset($_POST['edit_trigger']) && !empty($_POST['ban_suggestions']))
{
saveTriggers(array_shift($_POST['ban_suggestions']), $ban_group, 0, $ban_id);
if (!empty($_POST['ban_suggestions']))
saveTriggers($_POST['ban_suggestions'], $ban_group);
redirectexit('action=admin;area=ban;sa=edit' . (!empty($ban_group) ? ';bg=' . $ban_group : ''));
}
elseif (isset($_POST['edit_trigger']))
{
removeBanTriggers($ban_id);
redirectexit('action=admin;area=ban;sa=edit' . (!empty($ban_group) ? ';bg=' . $ban_group : ''));
}
loadJavaScriptFile('suggest.js', array('minimize' => true), 'smf_suggest');
if (empty($ban_id))
{
$context['ban_trigger'] = array(
'id' => 0,
'group' => $ban_group,
'ip' => array(
'value' => '',
'selected' => true,
),
'hostname' => array(
'selected' => false,
'value' => '',
),
'email' => array(
'value' => '',
'selected' => false,
),
'banneduser' => array(
'value' => '',
'selected' => false,
),
'is_new' => true,
);
}
else
{
$request = $smcFunc['db_query']('', '
SELECT
bi.id_ban, bi.id_ban_group, bi.hostname, bi.email_address, bi.id_member,
bi.ip_low, bi.ip_high,
mem.member_name, mem.real_name
FROM {db_prefix}ban_items AS bi
LEFT JOIN {db_prefix}members AS mem ON (mem.id_member = bi.id_member)
WHERE bi.id_ban = {int:ban_item}
AND bi.id_ban_group = {int:ban_group}
LIMIT 1',
array(
'ban_item' => $ban_id,
'ban_group' => $ban_group,
)
);
if ($smcFunc['db_num_rows']($request) == 0)
fatal_lang_error('ban_not_found', false);
$row = $smcFunc['db_fetch_assoc']($request);
$smcFunc['db_free_result']($request);
$context['ban_trigger'] = array(
'id' => $row['id_ban'],
'group' => $row['id_ban_group'],
'ip' => array(
'value' => empty($row['ip_low']) ? '' : range2ip($row['ip_low'], $row['ip_high']),
'selected' => !empty($row['ip_low']),
),
'hostname' => array(
'value' => str_replace('%', '*', $row['hostname']),
'selected' => !empty($row['hostname']),
),
'email' => array(
'value' => str_replace('%', '*', $row['email_address']),
'selected' => !empty($row['email_address'])
),
'banneduser' => array(
'value' => $row['member_name'],
'selected' => !empty($row['member_name'])
),
'is_new' => false,
);
}
createToken('admin-bet');
}
function BanBrowseTriggers()
{
global $modSettings, $context, $scripturl, $smcFunc, $txt;
global $sourcedir, $settings;
if (!empty($_POST['remove_triggers']) && !empty($_POST['remove']) && is_array($_POST['remove']))
{
checkSession();
removeBanTriggers($_POST['remove']);
if ($_REQUEST['entity'] == 'member')
updateBanMembers();
updateSettings(array('banLastUpdated' => time()));
}
$context['selected_entity'] = isset($_REQUEST['entity']) && in_array($_REQUEST['entity'], array('ip', 'hostname', 'email', 'member')) ? $_REQUEST['entity'] : 'ip';
$listOptions = array(
'id' => 'ban_trigger_list',
'title' => $txt['ban_trigger_browse'],
'items_per_page' => $modSettings['defaultMaxListItems'],
'base_href' => $scripturl . '?action=admin;area=ban;sa=browse;entity=' . $context['selected_entity'],
'default_sort_col' => 'banned_entity',
'no_items_label' => $txt['ban_no_triggers'],
'get_items' => array(
'function' => 'list_getBanTriggers',
'params' => array(
$context['selected_entity'],
),
),
'get_count' => array(
'function' => 'list_getNumBanTriggers',
'params' => array(
$context['selected_entity'],
),
),
'columns' => array(
'banned_entity' => array(
'header' => array(
'value' => $txt['ban_banned_entity'],
),
),
'ban_name' => array(
'header' => array(
'value' => $txt['ban_name'],
),
'data' => array(
'sprintf' => array(
'format' => '<a href="' . $scripturl . '?action=admin;area=ban;sa=edit;bg=%1$d">%2$s</a>',
'params' => array(
'id_ban_group' => false,
'name' => false,
),
),
),
'sort' => array(
'default' => 'bg.name',
'reverse' => 'bg.name DESC',
),
),
'hits' => array(
'header' => array(
'value' => $txt['ban_hits'],
),
'data' => array(
'db' => 'hits',
),
'sort' => array(
'default' => 'bi.hits DESC',
'reverse' => 'bi.hits',
),
),
'check' => array(
'header' => array(
'value' => '<input type="checkbox" onclick="invertAll(this, this.form);">',
'class' => 'centercol',
),
'data' => array(
'sprintf' => array(
'format' => '<input type="checkbox" name="remove[]" value="%1$d">',
'params' => array(
'id_ban' => false,
),
),
'class' => 'centercol',
),
),
),
'form' => array(
'href' => $scripturl . '?action=admin;area=ban;sa=browse;entity=' . $context['selected_entity'],
'include_start' => true,
'include_sort' => true,
),
'additional_rows' => array(
array(
'position' => 'above_column_headers',
'value' => '<a href="' . $scripturl . '?action=admin;area=ban;sa=browse;entity=ip">' . ($context['selected_entity'] == 'ip' ? '<img src="' . $settings['images_url'] . '/selected.png" alt=">"> ' : '') . $txt['ip'] . '</a> | <a href="' . $scripturl . '?action=admin;area=ban;sa=browse;entity=hostname">' . ($context['selected_entity'] == 'hostname' ? '<img src="' . $settings['images_url'] . '/selected.png" alt=">"> ' : '') . $txt['hostname'] . '</a> | <a href="' . $scripturl . '?action=admin;area=ban;sa=browse;entity=email">' . ($context['selected_entity'] == 'email' ? '<img src="' . $settings['images_url'] . '/selected.png" alt=">"> ' : '') . $txt['email'] . '</a> | <a href="' . $scripturl . '?action=admin;area=ban;sa=browse;entity=member">' . ($context['selected_entity'] == 'member' ? '<img src="' . $settings['images_url'] . '/selected.png" alt=">"> ' : '') . $txt['username'] . '</a>',
),
array(
'position' => 'bottom_of_list',
'value' => '<input type="submit" name="remove_triggers" value="' . $txt['ban_remove_selected_triggers'] . '" data-confirm="' . $txt['ban_remove_selected_triggers_confirm'] . '" class="button you_sure">',
),
),
);
if ($context['selected_entity'] === 'ip')
{
$listOptions['columns']['banned_entity']['data'] = array(
'function' => function($rowData)
{
return range2ip(
$rowData['ip_low']
,
$rowData['ip_high']
);
},
);
$listOptions['columns']['banned_entity']['sort'] = array(
'default' => 'bi.ip_low, bi.ip_high, bi.ip_low',
'reverse' => 'bi.ip_low DESC, bi.ip_high DESC',
);
}
elseif ($context['selected_entity'] === 'hostname')
{
$listOptions['columns']['banned_entity']['data'] = array(
'function' => function($rowData) use ($smcFunc)
{
return strtr($smcFunc['htmlspecialchars']($rowData['hostname']), array('%' => '*'));
},
);
$listOptions['columns']['banned_entity']['sort'] = array(
'default' => 'bi.hostname',
'reverse' => 'bi.hostname DESC',
);
}
elseif ($context['selected_entity'] === 'email')
{
$listOptions['columns']['banned_entity']['data'] = array(
'function' => function($rowData) use ($smcFunc)
{
return strtr($smcFunc['htmlspecialchars']($rowData['email_address']), array('%' => '*'));
},
);
$listOptions['columns']['banned_entity']['sort'] = array(
'default' => 'bi.email_address',
'reverse' => 'bi.email_address DESC',
);
}
elseif ($context['selected_entity'] === 'member')
{
$listOptions['columns']['banned_entity']['data'] = array(
'sprintf' => array(
'format' => '<a href="' . $scripturl . '?action=profile;u=%1$d">%2$s</a>',
'params' => array(
'id_member' => false,
'real_name' => false,
),
),
);
$listOptions['columns']['banned_entity']['sort'] = array(
'default' => 'mem.real_name',
'reverse' => 'mem.real_name DESC',
);
}
require_once($sourcedir . '/Subs-List.php');
createList($listOptions);
$context['sub_template'] = 'show_list';
$context['default_list'] = 'ban_trigger_list';
}
function list_getBanTriggers($start, $items_per_page, $sort, $trigger_type)
{
global $smcFunc;
$where = array(
'ip' => 'bi.ip_low is not null',
'hostname' => 'bi.hostname != {string:blank_string}',
'email' => 'bi.email_address != {string:blank_string}',
);
$request = $smcFunc['db_query']('', '
SELECT
bi.id_ban, bi.ip_low, bi.ip_high, bi.hostname, bi.email_address, bi.hits,
bg.id_ban_group, bg.name' . ($trigger_type === 'member' ? ',
mem.id_member, mem.real_name' : '') . '
FROM {db_prefix}ban_items AS bi
INNER JOIN {db_prefix}ban_groups AS bg ON (bg.id_ban_group = bi.id_ban_group)' . ($trigger_type === 'member' ? '
INNER JOIN {db_prefix}members AS mem ON (mem.id_member = bi.id_member)' : '
WHERE ' . $where[$trigger_type]) . '
ORDER BY {raw:sort}
LIMIT {int:start}, {int:max}',
array(
'blank_string' => '',
'sort' => $sort,
'start' => $start,
'max' => $items_per_page,
)
);
$ban_triggers = array();
while ($row = $smcFunc['db_fetch_assoc']($request))
$ban_triggers[] = $row;
$smcFunc['db_free_result']($request);
return $ban_triggers;
}
function list_getNumBanTriggers($trigger_type)
{
global $smcFunc;
$where = array(
'ip' => 'bi.ip_low is not null',
'hostname' => 'bi.hostname != {string:blank_string}',
'email' => 'bi.email_address != {string:blank_string}',
);
$request = $smcFunc['db_query']('', '
SELECT COUNT(*)
FROM {db_prefix}ban_items AS bi' . ($trigger_type === 'member' ? '
INNER JOIN {db_prefix}members AS mem ON (mem.id_member = bi.id_member)' : '
WHERE ' . $where[$trigger_type]),
array(
'blank_string' => '',
)
);
list ($num_triggers) = $smcFunc['db_fetch_row']($request);
$smcFunc['db_free_result']($request);
return $num_triggers;
}
function BanLog()
{
global $scripturl, $context, $sourcedir, $txt, $modSettings;
if (!empty($_POST['removeAll']) || (!empty($_POST['removeSelected']) && !empty($_POST['remove'])))
{
checkSession();
validateToken('admin-bl');
if (!empty($_POST['removeAll']))
removeBanLogs();
else
{
array_map('intval', $_POST['remove']);
removeBanLogs($_POST['remove']);
}
}
$listOptions = array(
'id' => 'ban_log',
'title' => $txt['ban_log'],
'items_per_page' => $modSettings['defaultMaxListItems'],
'base_href' => $context['admin_area'] == 'ban' ? $scripturl . '?action=admin;area=ban;sa=log' : $scripturl . '?action=admin;area=logs;sa=banlog',
'default_sort_col' => 'date',
'get_items' => array(
'function' => 'list_getBanLogEntries',
),
'get_count' => array(
'function' => 'list_getNumBanLogEntries',
),
'no_items_label' => $txt['ban_log_no_entries'],
'columns' => array(
'ip' => array(
'header' => array(
'value' => $txt['ban_log_ip'],
),
'data' => array(
'sprintf' => array(
'format' => '<a href="' . $scripturl . '?action=trackip;searchip=%1$s">%1$s</a>',
'params' => array(
'ip' => false,
),
),
),
'sort' => array(
'default' => 'lb.ip',
'reverse' => 'lb.ip DESC',
),
),
'email' => array(
'header' => array(
'value' => $txt['ban_log_email'],
),
'data' => array(
'db_htmlsafe' => 'email',
),
'sort' => array(
'default' => 'lb.email = \'\', lb.email',
'reverse' => 'lb.email != \'\', lb.email DESC',
),
),
'member' => array(
'header' => array(
'value' => $txt['ban_log_member'],
),
'data' => array(
'sprintf' => array(
'format' => '<a href="' . $scripturl . '?action=profile;u=%1$d">%2$s</a>',
'params' => array(
'id_member' => false,
'real_name' => false,
),
),
),
'sort' => array(
'default' => 'COALESCE(mem.real_name, 1=1), mem.real_name',
'reverse' => 'COALESCE(mem.real_name, 1=1) DESC, mem.real_name DESC',
),
),
'date' => array(
'header' => array(
'value' => $txt['ban_log_date'],
),
'data' => array(
'function' => function($rowData)
{
return timeformat($rowData['log_time']);
},
),
'sort' => array(
'default' => 'lb.log_time DESC',
'reverse' => 'lb.log_time',
),
),
'check' => array(
'header' => array(
'value' => '<input type="checkbox" onclick="invertAll(this, this.form);">',
'class' => 'centercol',
),
'data' => array(
'sprintf' => array(
'format' => '<input type="checkbox" name="remove[]" value="%1$d">',
'params' => array(
'id_ban_log' => false,
),
),
'class' => 'centercol',
),
),
),
'form' => array(
'href' => $context['admin_area'] == 'ban' ? $scripturl . '?action=admin;area=ban;sa=log' : $scripturl . '?action=admin;area=logs;sa=banlog',
'include_start' => true,
'include_sort' => true,
'token' => 'admin-bl',
),
'additional_rows' => array(
array(
'position' => 'top_of_list',
'value' => '
<input type="submit" name="removeSelected" value="' . $txt['ban_log_remove_selected'] . '" data-confirm="' . $txt['ban_log_remove_selected_confirm'] . '" class="button you_sure">
<input type="submit" name="removeAll" value="' . $txt['ban_log_remove_all'] . '" data-confirm="' . $txt['ban_log_remove_all_confirm'] . '" class="button you_sure">',
),
array(
'position' => 'bottom_of_list',
'value' => '
<input type="submit" name="removeSelected" value="' . $txt['ban_log_remove_selected'] . '" data-confirm="' . $txt['ban_log_remove_selected_confirm'] . '" class="button you_sure">
<input type="submit" name="removeAll" value="' . $txt['ban_log_remove_all'] . '" data-confirm="' . $txt['ban_log_remove_all_confirm'] . '" class="button you_sure">',
),
),
);
createToken('admin-bl');
require_once($sourcedir . '/Subs-List.php');
createList($listOptions);
$context['page_title'] = $txt['ban_log'];
$context['sub_template'] = 'show_list';
$context['default_list'] = 'ban_log';
}
function list_getBanLogEntries($start, $items_per_page, $sort)
{
global $smcFunc;
$dash = '-';
$request = $smcFunc['db_query']('', '
SELECT lb.id_ban_log, lb.id_member, lb.ip AS ip, COALESCE(lb.email, {string:dash}) AS email, lb.log_time, COALESCE(mem.real_name, {string:blank_string}) AS real_name
FROM {db_prefix}log_banned AS lb
LEFT JOIN {db_prefix}members AS mem ON (mem.id_member = lb.id_member)
ORDER BY {raw:sort}
LIMIT {int:start}, {int:items}',
array(
'blank_string' => '',
'dash' => $dash,
'sort' => $sort,
'start' => $start,
'items' => $items_per_page,
)
);
$log_entries = array();
while ($row = $smcFunc['db_fetch_assoc']($request))
{
$row['ip'] = $row['ip'] === null ? $dash : inet_dtop($row['ip']);
$log_entries[] = $row;
}
$smcFunc['db_free_result']($request);
return $log_entries;
}
function list_getNumBanLogEntries()
{
global $smcFunc;
$request = $smcFunc['db_query']('', '
SELECT COUNT(*)
FROM {db_prefix}log_banned AS lb',
array(
)
);
list ($num_entries) = $smcFunc['db_fetch_row']($request);
$smcFunc['db_free_result']($request);
return $num_entries;
}
function range2ip($low, $high)
{
$low = inet_dtop($low);
$high = inet_dtop($high);
if ($low == '255.255.255.255') return 'unknown';
if ($low == $high)
return $low;
else
return $low . '-' . $high;
}
function checkExistingTriggerIP($ip_array, $fullip = '')
{
global $smcFunc, $scripturl;
$values = array(
'ip_low' => $ip_array['low'],
'ip_high' => $ip_array['high']
);
$request = $smcFunc['db_query']('', '
SELECT bg.id_ban_group, bg.name
FROM {db_prefix}ban_groups AS bg
INNER JOIN {db_prefix}ban_items AS bi ON
(bi.id_ban_group = bg.id_ban_group)
AND ip_low = {inet:ip_low} AND ip_high = {inet:ip_high}
LIMIT 1',
$values
);
if ($smcFunc['db_num_rows']($request) != 0)
{
list ($error_id_ban, $error_ban_name) = $smcFunc['db_fetch_row']($request);
fatal_lang_error('ban_trigger_already_exists', false, array(
$fullip,
'<a href="' . $scripturl . '?action=admin;area=ban;sa=edit;bg=' . $error_id_ban . '">' . $error_ban_name . '</a>',
));
}
$smcFunc['db_free_result']($request);
return $values;
}
function updateBanMembers()
{
global $smcFunc;
$updates = array();
$allMembers = array();
$newMembers = array();
$request = $smcFunc['db_query']('', '
SELECT bi.id_member, bi.email_address
FROM {db_prefix}ban_items AS bi
INNER JOIN {db_prefix}ban_groups AS bg ON (bg.id_ban_group = bi.id_ban_group)
WHERE (bi.id_member > {int:no_member} OR bi.email_address != {string:blank_string})
AND bg.cannot_access = {int:cannot_access_on}
AND (bg.expire_time IS NULL OR bg.expire_time > {int:current_time})',
array(
'no_member' => 0,
'cannot_access_on' => 1,
'current_time' => time(),
'blank_string' => '',
)
);
$memberIDs = array();
$memberEmails = array();
$memberEmailWild = array();
while ($row = $smcFunc['db_fetch_assoc']($request))
{
if ($row['id_member'])
$memberIDs[$row['id_member']] = $row['id_member'];
if ($row['email_address'])
{
if (strpos($row['email_address'], '%') !== false)
$memberEmailWild[$row['email_address']] = $row['email_address'];
else
$memberEmails[$row['email_address']] = $row['email_address'];
}
}
$smcFunc['db_free_result']($request);
$queryPart = array();
$queryValues = array();
if (!empty($memberIDs))
{
$queryPart[] = 'mem.id_member IN ({array_string:member_ids})';
$queryValues['member_ids'] = $memberIDs;
}
if (!empty($memberEmails))
{
$queryPart[] = 'mem.email_address IN ({array_string:member_emails})';
$queryValues['member_emails'] = $memberEmails;
}
$count = 0;
foreach ($memberEmailWild as $email)
{
$queryPart[] = 'mem.email_address LIKE {string:wild_' . $count . '}';
$queryValues['wild_' . $count++] = $email;
}
if (!empty($queryPart))
{
$request = $smcFunc['db_query']('', '
SELECT mem.id_member, mem.is_activated
FROM {db_prefix}members AS mem
WHERE ' . implode(' OR ', $queryPart),
$queryValues
);
while ($row = $smcFunc['db_fetch_assoc']($request))
{
if (!in_array($row['id_member'], $allMembers))
{
$allMembers[] = $row['id_member'];
if ($row['is_activated'] < 10)
{
$updates[($row['is_activated'] + 10)][] = $row['id_member'];
$newMembers[] = $row['id_member'];
}
}
}
$smcFunc['db_free_result']($request);
}
if (!empty($newMembers))
$smcFunc['db_query']('', '
DELETE FROM {db_prefix}log_online
WHERE id_member IN ({array_int:new_banned_members})',
array(
'new_banned_members' => $newMembers,
)
);
$request = $smcFunc['db_query']('', '
SELECT mem.id_member, mem.is_activated - 10 AS new_value
FROM {db_prefix}members AS mem
LEFT JOIN {db_prefix}ban_items AS bi ON (bi.id_member = mem.id_member OR mem.email_address LIKE bi.email_address)
LEFT JOIN {db_prefix}ban_groups AS bg ON (bg.id_ban_group = bi.id_ban_group AND bg.cannot_access = {int:cannot_access_activated} AND (bg.expire_time IS NULL OR bg.expire_time > {int:current_time}))
WHERE (bi.id_ban IS NULL OR bg.id_ban_group IS NULL)
AND mem.is_activated >= {int:ban_flag}',
array(
'cannot_access_activated' => 1,
'current_time' => time(),
'ban_flag' => 10,
)
);
while ($row = $smcFunc['db_fetch_assoc']($request))
{
if (!in_array($row['id_member'], $allMembers))
{
$updates[$row['new_value']][] = $row['id_member'];
$allMembers[] = $row['id_member'];
}
}
$smcFunc['db_free_result']($request);
if (!empty($updates))
foreach ($updates as $newStatus => $members)
updateMemberData($members, array('is_activated' => $newStatus));
updateStats('member');
}
function getMemberData($id)
{
global $smcFunc;
$suggestions = array();
$request = $smcFunc['db_query']('', '
SELECT id_member, real_name, member_ip, email_address
FROM {db_prefix}members
WHERE id_member = {int:current_user}
LIMIT 1',
array(
'current_user' => $id,
)
);
if ($smcFunc['db_num_rows']($request) > 0)
{
list ($suggestions['member']['id'], $suggestions['member']['name'], $suggestions['main_ip'], $suggestions['email']) = $smcFunc['db_fetch_row']($request);
$suggestions['main_ip'] = inet_dtop($suggestions['main_ip']);
}
$smcFunc['db_free_result']($request);
return $suggestions;
}
?>