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:
<?php
if (!defined('SMF'))
die('No direct access...');
function AutoTask()
{
global $smcFunc;
if (isset($_GET['scheduled']) && $_GET['scheduled'] == 'mailq')
ReduceMailQueue();
else
{
$task_string = '';
$request = $smcFunc['db_query']('', '
SELECT id_task, task, next_time, time_offset, time_regularity, time_unit, callable
FROM {db_prefix}scheduled_tasks
WHERE disabled = {int:not_disabled}
AND next_time <= {int:current_time}
ORDER BY next_time ASC
LIMIT 1',
array(
'not_disabled' => 0,
'current_time' => time(),
)
);
if ($smcFunc['db_num_rows']($request) != 0)
{
$row = $smcFunc['db_fetch_assoc']($request);
$next_time = next_time($row['time_regularity'], $row['time_unit'], $row['time_offset']);
$duration = $row['time_regularity'];
if ($row['time_unit'] == 'm')
$duration *= 60;
elseif ($row['time_unit'] == 'h')
$duration *= 3600;
elseif ($row['time_unit'] == 'd')
$duration *= 86400;
elseif ($row['time_unit'] == 'w')
$duration *= 604800;
if (time() + ($duration / 2) > $next_time)
$next_time += $duration;
$smcFunc['db_query']('', '
UPDATE {db_prefix}scheduled_tasks
SET next_time = {int:next_time}
WHERE id_task = {int:id_task}
AND next_time = {int:current_next_time}',
array(
'next_time' => $next_time,
'id_task' => $row['id_task'],
'current_next_time' => $row['next_time'],
)
);
$affected_rows = $smcFunc['db_affected_rows']();
if (!empty($row['callable']))
$task_string = $row['callable'];
elseif (function_exists('scheduled_' . $row['task']))
$task_string = 'scheduled_' . $row['task'];
elseif (!empty($row['task']))
$task_string = $row['task'];
if (!empty($task_string) && (!isset($_GET['ts']) || $_GET['ts'] == $row['next_time']) && $affected_rows)
{
ignore_user_abort(true);
$callable_task = call_helper($task_string, true);
if (!empty($callable_task))
$completed = call_user_func($callable_task);
else
$completed = false;
if ($completed)
{
$total_time = round(microtime(true) - TIME_START, 3);
$smcFunc['db_insert']('',
'{db_prefix}log_scheduled_tasks',
array(
'id_task' => 'int', 'time_run' => 'int', 'time_taken' => 'float',
),
array(
$row['id_task'], time(), (int) $total_time,
),
array()
);
}
}
}
$smcFunc['db_free_result']($request);
$request = $smcFunc['db_query']('', '
SELECT next_time
FROM {db_prefix}scheduled_tasks
WHERE disabled = {int:not_disabled}
ORDER BY next_time ASC
LIMIT 1',
array(
'not_disabled' => 0,
)
);
if ($smcFunc['db_num_rows']($request) === 0)
$nextEvent = time() + 86400;
else
list ($nextEvent) = $smcFunc['db_fetch_row']($request);
$smcFunc['db_free_result']($request);
updateSettings(array('next_task_time' => $nextEvent));
}
if (!isset($_GET['scheduled']))
return true;
header('expires: Mon, 26 Jul 1997 05:00:00 GMT');
header('last-modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
header('content-type: image/gif');
die("\x47\x49\x46\x38\x39\x61\x01\x00\x01\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x21\xF9\x04\x01\x00\x00\x00\x00\x2C\x00\x00\x00\x00\x01\x00\x01\x00\x00\x02\x02\x44\x01\x00\x3B");
}
function scheduled_daily_maintenance()
{
global $smcFunc, $modSettings, $sourcedir, $boarddir, $db_type, $image_proxy_enabled;
clean_cache();
list (, , $modSettings['warning_decrement']) = explode(',', $modSettings['warning_settings']);
if ($modSettings['warning_decrement'])
{
$request = $smcFunc['db_query']('', '
SELECT id_member, warning
FROM {db_prefix}members
WHERE warning > {int:no_warning}',
array(
'no_warning' => 0,
)
);
$members = array();
while ($row = $smcFunc['db_fetch_assoc']($request))
$members[$row['id_member']] = $row['warning'];
$smcFunc['db_free_result']($request);
if (!empty($members))
{
$request = $smcFunc['db_query']('', '
SELECT id_recipient, MAX(log_time) AS last_warning
FROM {db_prefix}log_comments
WHERE id_recipient IN ({array_int:member_list})
AND comment_type = {string:warning}
GROUP BY id_recipient',
array(
'member_list' => array_keys($members),
'warning' => 'warning',
)
);
$member_changes = array();
while ($row = $smcFunc['db_fetch_assoc']($request))
{
if ($row['last_warning'] <= time() - 86400)
$member_changes[] = array(
'id' => $row['id_recipient'],
'warning' => $members[$row['id_recipient']] >= $modSettings['warning_decrement'] ? $members[$row['id_recipient']] - $modSettings['warning_decrement'] : 0,
);
}
$smcFunc['db_free_result']($request);
if (!empty($member_changes))
foreach ($member_changes as $change)
$smcFunc['db_query']('', '
UPDATE {db_prefix}members
SET warning = {int:warning}
WHERE id_member = {int:id_member}',
array(
'warning' => $change['warning'],
'id_member' => $change['id'],
)
);
}
}
if (!empty($modSettings['spider_mode']) && $modSettings['spider_mode'] > 1)
{
require_once($sourcedir . '/ManageSearchEngines.php');
consolidateSpiderStats();
}
$smcFunc['db_query']('', '
DELETE FROM {db_prefix}member_logins
WHERE time < {int:oldLogins}',
array(
'oldLogins' => time() - (!empty($modSettings['loginHistoryDays']) ? 60 * 60 * 24 * $modSettings['loginHistoryDays'] : 2592000),
)
);
if (!empty($image_proxy_enabled))
{
require_once($boarddir . '/proxy.php');
$proxy = new ProxyServer();
$proxy->housekeeping();
}
if (!empty($modSettings['alerts_auto_purge']))
{
$smcFunc['db_query']('', '
DELETE FROM {db_prefix}user_alerts
WHERE is_read > 0
AND is_read < {int:purge_before}',
array(
'purge_before' => time() - 86400 * $modSettings['alerts_auto_purge'],
)
);
}
call_integration_hook('integrate_daily_maintenance');
return true;
}
function scheduled_daily_digest()
{
global $is_weekly, $txt, $mbname, $scripturl, $sourcedir, $smcFunc, $context, $modSettings;
require_once($sourcedir . '/Subs-Post.php');
loadEssentialThemeData();
$is_weekly = !empty($is_weekly) ? 1 : 0;
$request = $smcFunc['db_query']('', '
SELECT ln.id_topic, COALESCE(t.id_board, ln.id_board) AS id_board, mem.email_address, mem.member_name,
mem.lngfile, mem.id_member
FROM {db_prefix}log_notify AS ln
JOIN {db_prefix}members AS mem ON (mem.id_member = ln.id_member)
LEFT JOIN {db_prefix}topics AS t ON (ln.id_topic != {int:empty_topic} AND t.id_topic = ln.id_topic)
WHERE mem.is_activated = {int:is_activated}',
array(
'empty_topic' => 0,
'is_activated' => 1,
)
);
$members = array();
$langs = array();
$notify = array();
while ($row = $smcFunc['db_fetch_assoc']($request))
{
if (!isset($members[$row['id_member']]))
{
$members[$row['id_member']] = array(
'email' => $row['email_address'],
'name' => $row['member_name'],
'id' => $row['id_member'],
'lang' => $row['lngfile'],
);
$langs[$row['lngfile']] = $row['lngfile'];
}
$boards[$row['id_board']] = $row['id_board'];
if ($row['id_topic'])
$notify['topics'][$row['id_topic']][] = $row['id_member'];
else
$notify['boards'][$row['id_board']][] = $row['id_member'];
}
$smcFunc['db_free_result']($request);
if (empty($boards))
return true;
$request = $smcFunc['db_query']('', '
SELECT id_board, name
FROM {db_prefix}boards
WHERE id_board IN ({array_int:board_list})',
array(
'board_list' => $boards,
)
);
$boards = array();
while ($row = $smcFunc['db_fetch_assoc']($request))
$boards[$row['id_board']] = $row['name'];
$smcFunc['db_free_result']($request);
if (empty($boards))
return true;
$request = $smcFunc['db_query']('', '
SELECT ld.note_type, t.id_topic, t.id_board, t.id_member_started, m.id_msg, m.subject,
b.name AS board_name
FROM {db_prefix}log_digest AS ld
JOIN {db_prefix}topics AS t ON (t.id_topic = ld.id_topic
AND t.id_board IN ({array_int:board_list}))
JOIN {db_prefix}messages AS m ON (m.id_msg = t.id_first_msg)
JOIN {db_prefix}boards AS b ON (b.id_board = t.id_board)
WHERE ' . ($is_weekly ? 'ld.daily != {int:daily_value}' : 'ld.daily IN (0, 2)'),
array(
'board_list' => array_keys($boards),
'daily_value' => 2,
)
);
$types = array();
while ($row = $smcFunc['db_fetch_assoc']($request))
{
if (!isset($types[$row['note_type']][$row['id_board']]))
$types[$row['note_type']][$row['id_board']] = array(
'lines' => array(),
'name' => $row['board_name'],
'id' => $row['id_board'],
);
if ($row['note_type'] == 'reply')
{
if (isset($types[$row['note_type']][$row['id_board']]['lines'][$row['id_topic']]))
$types[$row['note_type']][$row['id_board']]['lines'][$row['id_topic']]['count']++;
else
$types[$row['note_type']][$row['id_board']]['lines'][$row['id_topic']] = array(
'id' => $row['id_topic'],
'subject' => un_htmlspecialchars($row['subject']),
'count' => 1,
);
}
elseif ($row['note_type'] == 'topic')
{
if (!isset($types[$row['note_type']][$row['id_board']]['lines'][$row['id_topic']]))
$types[$row['note_type']][$row['id_board']]['lines'][$row['id_topic']] = array(
'id' => $row['id_topic'],
'subject' => un_htmlspecialchars($row['subject']),
);
}
else
{
if (!isset($types[$row['note_type']][$row['id_board']]['lines'][$row['id_topic']]))
$types[$row['note_type']][$row['id_board']]['lines'][$row['id_topic']] = array(
'id' => $row['id_topic'],
'subject' => un_htmlspecialchars($row['subject']),
'starter' => $row['id_member_started'],
);
}
$types[$row['note_type']][$row['id_board']]['lines'][$row['id_topic']]['members'] = array();
if (!empty($notify['topics'][$row['id_topic']]))
$types[$row['note_type']][$row['id_board']]['lines'][$row['id_topic']]['members'] = array_merge($types[$row['note_type']][$row['id_board']]['lines'][$row['id_topic']]['members'], $notify['topics'][$row['id_topic']]);
if (!empty($notify['boards'][$row['id_board']]))
$types[$row['note_type']][$row['id_board']]['lines'][$row['id_topic']]['members'] = array_merge($types[$row['note_type']][$row['id_board']]['lines'][$row['id_topic']]['members'], $notify['boards'][$row['id_board']]);
}
$smcFunc['db_free_result']($request);
if (empty($types))
return true;
$langtxt = array();
foreach ($langs as $lang)
{
loadLanguage('Post', $lang);
loadLanguage('index', $lang);
loadLanguage('EmailTemplates', $lang);
$langtxt[$lang] = array(
'subject' => $txt['digest_subject_' . ($is_weekly ? 'weekly' : 'daily')],
'char_set' => $txt['lang_character_set'],
'intro' => sprintf($txt['digest_intro_' . ($is_weekly ? 'weekly' : 'daily')], $mbname),
'new_topics' => $txt['digest_new_topics'],
'topic_lines' => $txt['digest_new_topics_line'],
'new_replies' => $txt['digest_new_replies'],
'mod_actions' => $txt['digest_mod_actions'],
'replies_one' => $txt['digest_new_replies_one'],
'replies_many' => $txt['digest_new_replies_many'],
'sticky' => $txt['digest_mod_act_sticky'],
'lock' => $txt['digest_mod_act_lock'],
'unlock' => $txt['digest_mod_act_unlock'],
'remove' => $txt['digest_mod_act_remove'],
'move' => $txt['digest_mod_act_move'],
'merge' => $txt['digest_mod_act_merge'],
'split' => $txt['digest_mod_act_split'],
'bye' => $txt['regards_team'],
);
call_integration_hook('integrate_daily_digest_lang', array(&$langtxt, $lang));
}
require_once($sourcedir . '/Subs-Notify.php');
$prefs = getNotifyPrefs(array_keys($members), array('msg_notify_type', 'msg_notify_pref'), true);
$members_sent = array();
foreach ($members as $mid => $member)
{
$frequency = isset($prefs[$mid]['msg_notify_pref']) ? $prefs[$mid]['msg_notify_pref'] : 0;
$notify_types = !empty($prefs[$mid]['msg_notify_type']) ? $prefs[$mid]['msg_notify_type'] : 1;
if ($frequency < 3 || $frequency == 4 && !$is_weekly || $frequency == 3 && $is_weekly || $notify_types == 4)
continue;
$context['character_set'] = empty($modSettings['global_character_set']) ? $langtxt[$lang]['char_set'] : $modSettings['global_character_set'];
$email = array(
'subject' => $mbname . ' - ' . $langtxt[$lang]['subject'],
'body' => $member['name'] . ',' . "\n\n" . $langtxt[$lang]['intro'] . "\n" . $scripturl . '?action=profile;area=notification;u=' . $member['id'] . "\n",
'email' => $member['email'],
);
if (isset($types['topic']))
{
$titled = false;
foreach ($types['topic'] as $id => $board)
foreach ($board['lines'] as $topic)
if (in_array($mid, $topic['members']))
{
if (!$titled)
{
$email['body'] .= "\n" . $langtxt[$lang]['new_topics'] . ':' . "\n" . '-----------------------------------------------';
$titled = true;
}
$email['body'] .= "\n" . sprintf($langtxt[$lang]['topic_lines'], $topic['subject'], $board['name']);
}
if ($titled)
$email['body'] .= "\n";
}
if (isset($types['reply']))
{
$titled = false;
foreach ($types['reply'] as $id => $board)
foreach ($board['lines'] as $topic)
if (in_array($mid, $topic['members']))
{
if (!$titled)
{
$email['body'] .= "\n" . $langtxt[$lang]['new_replies'] . ':' . "\n" . '-----------------------------------------------';
$titled = true;
}
$email['body'] .= "\n" . ($topic['count'] == 1 ? sprintf($langtxt[$lang]['replies_one'], $topic['subject']) : sprintf($langtxt[$lang]['replies_many'], $topic['count'], $topic['subject']));
}
if ($titled)
$email['body'] .= "\n";
}
if ($notify_types < 3)
{
$titled = false;
foreach ($types as $note_type => $type)
{
if ($note_type == 'topic' || $note_type == 'reply')
continue;
foreach ($type as $id => $board)
foreach ($board['lines'] as $topic)
if (in_array($mid, $topic['members']))
{
if (!$titled)
{
$email['body'] .= "\n" . $langtxt[$lang]['mod_actions'] . ':' . "\n" . '-----------------------------------------------';
$titled = true;
}
$email['body'] .= "\n" . sprintf($langtxt[$lang][$note_type], $topic['subject']);
}
}
}
call_integration_hook('integrate_daily_digest_email', array(&$email, $types, $notify_types, $langtxt));
if ($titled)
$email['body'] .= "\n";
$email['body'] .= "\n\n" . $txt['regards_team'];
sendmail($email['email'], $email['subject'], $email['body'], null, 'digest', false, 4);
$members_sent[] = $mid;
}
if ($is_weekly)
{
$smcFunc['db_query']('', '
DELETE FROM {db_prefix}log_digest
WHERE daily != {int:not_daily}',
array(
'not_daily' => 0,
)
);
$smcFunc['db_query']('', '
UPDATE {db_prefix}log_digest
SET daily = {int:daily_value}
WHERE daily = {int:not_daily}',
array(
'daily_value' => 2,
'not_daily' => 0,
)
);
}
else
{
$smcFunc['db_query']('', '
DELETE FROM {db_prefix}log_digest
WHERE daily = {int:daily_value}',
array(
'daily_value' => 2,
)
);
$smcFunc['db_query']('', '
UPDATE {db_prefix}log_digest
SET daily = {int:both_value}
WHERE daily = {int:no_value}',
array(
'both_value' => 1,
'no_value' => 0,
)
);
}
if (!empty($members_sent))
{
$smcFunc['db_query']('', '
UPDATE {db_prefix}log_notify
SET sent = {int:is_sent}
WHERE id_member IN ({array_int:member_list})',
array(
'member_list' => $members_sent,
'is_sent' => 1,
)
);
}
return true;
}
function scheduled_weekly_digest()
{
global $is_weekly;
$is_weekly = true;
return scheduled_daily_digest();
}
function ReduceMailQueue($number = false, $override_limit = false, $force_send = false)
{
global $modSettings, $smcFunc, $sourcedir, $txt, $language;
if (!empty($modSettings['mail_queue_use_cron']) && empty($force_send))
return false;
if (!isset($txt))
{
loadEssentialThemeData();
loadLanguage('Errors', $language, false);
loadLanguage('index', $language, false);
}
if (!$number)
$number = empty($modSettings['mail_quantity']) ? 5 : $modSettings['mail_quantity'];
if (isset($_GET['ts']) && $_GET['ts'] != $modSettings['mail_next_send'] && empty($force_send))
return false;
if (!$override_limit)
{
$delay = !empty($modSettings['mail_queue_delay']) ? $modSettings['mail_queue_delay'] : (!empty($modSettings['mail_limit']) && $modSettings['mail_limit'] < 5 ? 10 : 5);
$smcFunc['db_query']('', '
UPDATE {db_prefix}settings
SET value = {string:next_mail_send}
WHERE variable = {literal:mail_next_send}
AND value = {string:last_send}',
array(
'next_mail_send' => time() + $delay,
'last_send' => $modSettings['mail_next_send'],
)
);
if ($smcFunc['db_affected_rows']() == 0)
return false;
$modSettings['mail_next_send'] = time() + $delay;
}
if (!$override_limit && !empty($modSettings['mail_limit']))
{
list ($mt, $mn) = @explode('|', $modSettings['mail_recent']);
if (empty($mn) || $mt < time() - 60)
{
$mt = time();
$mn = $number;
}
elseif ($mn < $modSettings['mail_limit'])
{
$mn += $number;
}
else
return false;
updateSettings(array('mail_recent' => $mt . '|' . $mn));
}
$request = $smcFunc['db_query']('', '
SELECT id_mail, recipient, body, subject, headers, send_html, time_sent, private
FROM {db_prefix}mail_queue
ORDER BY priority ASC, id_mail ASC
LIMIT {int:limit}',
array(
'limit' => $number,
)
);
$ids = array();
$emails = array();
while ($row = $smcFunc['db_fetch_assoc']($request))
{
$ids[] = $row['id_mail'];
$emails[] = array(
'to' => $row['recipient'],
'body' => $row['body'],
'subject' => $row['subject'],
'headers' => $row['headers'],
'send_html' => $row['send_html'],
'time_sent' => $row['time_sent'],
'private' => $row['private'],
);
}
$smcFunc['db_free_result']($request);
if (!empty($ids))
$smcFunc['db_query']('', '
DELETE FROM {db_prefix}mail_queue
WHERE id_mail IN ({array_int:mail_list})',
array(
'mail_list' => $ids,
)
);
if (count($ids) < $number)
{
$smcFunc['db_query']('', '
UPDATE {db_prefix}settings
SET value = {string:no_send}
WHERE variable = {literal:mail_next_send}
AND value = {string:last_mail_send}',
array(
'no_send' => '0',
'last_mail_send' => $modSettings['mail_next_send'],
)
);
}
if (empty($ids))
return false;
if (!empty($modSettings['mail_type']) && $modSettings['smtp_host'] != '')
require_once($sourcedir . '/Subs-Post.php');
$failed_emails = array();
foreach ($emails as $email)
{
if (empty($modSettings['mail_type']) || $modSettings['smtp_host'] == '')
{
$email['subject'] = strtr($email['subject'], array("\r" => '', "\n" => ''));
if (!empty($modSettings['mail_strip_carriage']))
{
$email['body'] = strtr($email['body'], array("\r" => ''));
$email['headers'] = strtr($email['headers'], array("\r" => ''));
}
$result = mail(strtr($email['to'], array("\r" => '', "\n" => '')), $email['subject'], $email['body'], $email['headers']);
@set_time_limit(300);
if (function_exists('apache_reset_timeout'))
@apache_reset_timeout();
}
else
$result = smtp_mail(array($email['to']), $email['subject'], $email['body'], $email['headers']);
if (!$result)
$failed_emails[] = array($email['to'], $email['body'], $email['subject'], $email['headers'], $email['send_html'], $email['time_sent'], $email['private']);
}
if (!empty($failed_emails))
{
$smcFunc['db_insert']('replace',
'{db_prefix}settings',
array('variable' => 'string', 'value' => 'string'),
array('mail_failed_attempts', empty($modSettings['mail_failed_attempts']) ? 1 : ++$modSettings['mail_failed_attempts']),
array('variable')
);
if ($modSettings['mail_failed_attempts'] > 5)
$smcFunc['db_query']('', '
UPDATE {db_prefix}settings
SET value = {string:next_mail_send}
WHERE variable = {literal:mail_next_send}
AND value = {string:last_send}',
array(
'next_mail_send' => time() + 60,
'last_send' => $modSettings['mail_next_send'],
)
);
$smcFunc['db_insert']('insert',
'{db_prefix}mail_queue',
array('recipient' => 'string', 'body' => 'string', 'subject' => 'string', 'headers' => 'string', 'send_html' => 'string', 'time_sent' => 'string', 'private' => 'int'),
$failed_emails,
array('id_mail')
);
return false;
}
elseif (!empty($modSettings['mail_failed_attempts']))
$smcFunc['db_query']('', '
UPDATE {db_prefix}settings
SET value = {string:zero}
WHERE variable = {string:mail_failed_attempts}',
array(
'zero' => '0',
'mail_failed_attempts' => 'mail_failed_attempts',
)
);
return true;
}
function CalculateNextTrigger($tasks = array(), $forceUpdate = false)
{
global $modSettings, $smcFunc;
$task_query = '';
if (!is_array($tasks))
$tasks = array($tasks);
if (!empty($tasks))
{
if (!isset($tasks[0]) || is_numeric($tasks[0]))
$task_query = ' AND id_task IN ({array_int:tasks})';
else
$task_query = ' AND task IN ({array_string:tasks})';
}
$nextTaskTime = empty($tasks) ? time() + 86400 : $modSettings['next_task_time'];
$request = $smcFunc['db_query']('', '
SELECT id_task, next_time, time_offset, time_regularity, time_unit
FROM {db_prefix}scheduled_tasks
WHERE disabled = {int:no_disabled}
' . $task_query,
array(
'no_disabled' => 0,
'tasks' => $tasks,
)
);
$tasks = array();
while ($row = $smcFunc['db_fetch_assoc']($request))
{
$next_time = next_time($row['time_regularity'], $row['time_unit'], $row['time_offset']);
if ($forceUpdate || $next_time < $row['next_time'] || $row['next_time'] < time())
$tasks[$row['id_task']] = $next_time;
else
$next_time = $row['next_time'];
if ($next_time < $nextTaskTime)
$nextTaskTime = $next_time;
}
$smcFunc['db_free_result']($request);
foreach ($tasks as $id => $time)
$smcFunc['db_query']('', '
UPDATE {db_prefix}scheduled_tasks
SET next_time = {int:next_time}
WHERE id_task = {int:id_task}',
array(
'next_time' => $time,
'id_task' => $id,
)
);
if ($modSettings['next_task_time'] != $nextTaskTime)
updateSettings(array('next_task_time' => $nextTaskTime));
}
function next_time($regularity, $unit, $offset)
{
if ($regularity == 0)
$regularity = 2;
$curMin = date('i', time());
if ($unit == 'm')
{
$off = date('i', $offset);
if ($off == $curMin)
$next_time = time() + $regularity;
else
{
$off = $off > $curMin ? $off - 60 : $off;
while ($off <= $curMin)
$off += $regularity;
$next_time = time() + 60 * ($off - $curMin);
}
}
else
{
$next_time = mktime(date('H', $offset), date('i', $offset), 0, date('m'), date('d'), date('Y'));
if ($next_time > time())
{
$next_time -= 86400;
}
$applyOffset = 3600;
if ($unit == 'd')
$applyOffset = 86400;
if ($unit == 'w')
$applyOffset = 604800;
$applyOffset *= $regularity;
while ($next_time <= time())
{
$next_time += $applyOffset;
}
}
return $next_time;
}
function loadEssentialThemeData()
{
global $settings, $modSettings, $smcFunc, $mbname, $context, $sourcedir, $txt;
$result = $smcFunc['db_query']('', '
SELECT id_theme, variable, value
FROM {db_prefix}themes
WHERE id_member = {int:no_member}
AND id_theme IN (1, {int:theme_guests})',
array(
'no_member' => 0,
'theme_guests' => !empty($modSettings['theme_guests']) ? $modSettings['theme_guests'] : 1,
)
);
while ($row = $smcFunc['db_fetch_assoc']($result))
{
$settings[$row['variable']] = $row['value'];
if (in_array($row['variable'], array('theme_dir', 'theme_url', 'images_url')) && $row['id_theme'] == '1')
$settings['default_' . $row['variable']] = $row['value'];
}
$smcFunc['db_free_result']($result);
if (empty($settings['template_dirs']))
{
$settings['template_dirs'] = array($settings['theme_dir']);
if (!empty($settings['base_theme_dir']))
$settings['template_dirs'][] = $settings['base_theme_dir'];
if ($settings['theme_dir'] != $settings['default_theme_dir'])
$settings['template_dirs'][] = $settings['default_theme_dir'];
}
$context['forum_name'] = $mbname;
if (!function_exists('loadLanguage'))
{
require_once($sourcedir . '/Load.php');
require_once($sourcedir . '/Subs.php');
}
loadLanguage('index+Modifications');
$context['character_set'] = empty($modSettings['global_character_set']) ? $txt['lang_character_set'] : $modSettings['global_character_set'];
$context['utf8'] = $context['character_set'] === 'UTF-8';
$context['right_to_left'] = !empty($txt['lang_rtl']);
$context['theme_loaded'] = true;
}
function scheduled_fetchSMfiles()
{
global $sourcedir, $txt, $language, $modSettings, $smcFunc, $context;
$request = $smcFunc['db_query']('', '
SELECT id_file, filename, path, parameters
FROM {db_prefix}admin_info_files',
array(
)
);
$js_files = array();
while ($row = $smcFunc['db_fetch_assoc']($request))
{
$js_files[$row['id_file']] = array(
'filename' => $row['filename'],
'path' => $row['path'],
'parameters' => sprintf($row['parameters'], $language, urlencode($modSettings['time_format']), urlencode(SMF_FULL_VERSION)),
);
}
$smcFunc['db_free_result']($request);
loadEssentialThemeData();
loadLanguage('Errors', $language, false);
foreach ($js_files as $ID_FILE => $file)
{
$server = empty($file['path']) || (substr($file['path'], 0, 7) != 'http://' && substr($file['path'], 0, 8) != 'https://') ? 'https://www.simplemachines.org' : '';
$url = $server . (!empty($file['path']) ? $file['path'] : $file['path']) . $file['filename'] . (!empty($file['parameters']) ? '?' . $file['parameters'] : '');
$file_data = fetch_web_data($url);
if ($file_data === false)
{
$context['scheduled_errors']['fetchSMfiles'][] = sprintf($txt['st_cannot_retrieve_file'], $url);
log_error(sprintf($txt['st_cannot_retrieve_file'], $url));
return false;
}
$smcFunc['db_query']('substring', '
UPDATE {db_prefix}admin_info_files
SET data = SUBSTRING({string:file_data}, 1, 65534)
WHERE id_file = {int:id_file}',
array(
'id_file' => $ID_FILE,
'file_data' => $file_data,
)
);
}
return true;
}
function scheduled_birthdayemails()
{
global $smcFunc;
$smcFunc['db_insert']('insert', '{db_prefix}background_tasks',
array('task_file' => 'string-255', 'task_class' => 'string-255', 'task_data' => 'string', 'claimed_time' => 'int'),
array('$sourcedir/tasks/Birthday-Notify.php', 'Birthday_Notify_Background', '', 0),
array()
);
return true;
}
function scheduled_weekly_maintenance()
{
global $modSettings, $smcFunc, $cache_enable, $cacheAPI;
$emptySettings = array(
'warning_mute', 'warning_moderate', 'warning_watch', 'warning_show', 'disableCustomPerPage', 'spider_mode', 'spider_group',
'paid_currency_code', 'paid_currency_symbol', 'paid_email_to', 'paid_email', 'paid_enabled', 'paypal_email',
'search_enable_captcha', 'search_floodcontrol_time', 'show_spider_online',
);
$smcFunc['db_query']('', '
DELETE FROM {db_prefix}settings
WHERE variable IN ({array_string:setting_list})
AND (value = {string:zero_value} OR value = {string:blank_value})',
array(
'zero_value' => '0',
'blank_value' => '',
'setting_list' => $emptySettings,
)
);
$deleteAnywaySettings = array(
'attachment_full_notified',
);
$smcFunc['db_query']('', '
DELETE FROM {db_prefix}settings
WHERE variable IN ({array_string:setting_list})',
array(
'setting_list' => $deleteAnywaySettings,
)
);
if (!empty($modSettings['pruningOptions']))
{
if (!empty($modSettings['pruningOptions']) && strpos($modSettings['pruningOptions'], ',') !== false)
list ($modSettings['pruneErrorLog'], $modSettings['pruneModLog'], $modSettings['pruneBanLog'], $modSettings['pruneReportLog'], $modSettings['pruneScheduledTaskLog'], $modSettings['pruneSpiderHitLog']) = explode(',', $modSettings['pruningOptions']);
if (!empty($modSettings['pruneErrorLog']))
{
$t = time() - $modSettings['pruneErrorLog'] * 86400;
$smcFunc['db_query']('', '
DELETE FROM {db_prefix}log_errors
WHERE log_time < {int:log_time}',
array(
'log_time' => $t,
)
);
}
if (!empty($modSettings['pruneModLog']))
{
$t = time() - $modSettings['pruneModLog'] * 86400;
$smcFunc['db_query']('', '
DELETE FROM {db_prefix}log_actions
WHERE log_time < {int:log_time}
AND id_log = {int:moderation_log}',
array(
'log_time' => $t,
'moderation_log' => 1,
)
);
}
if (!empty($modSettings['pruneBanLog']))
{
$t = time() - $modSettings['pruneBanLog'] * 86400;
$smcFunc['db_query']('', '
DELETE FROM {db_prefix}log_banned
WHERE log_time < {int:log_time}',
array(
'log_time' => $t,
)
);
}
if (!empty($modSettings['pruneReportLog']))
{
$t = time() - $modSettings['pruneReportLog'] * 86400;
$reports = array();
$result = $smcFunc['db_query']('', '
SELECT id_report
FROM {db_prefix}log_reported
WHERE time_started < {int:time_started}
AND closed = {int:closed}
AND ignore_all = {int:not_ignored}',
array(
'time_started' => $t,
'closed' => 1,
'not_ignored' => 0,
)
);
while ($row = $smcFunc['db_fetch_row']($result))
$reports[] = $row[0];
$smcFunc['db_free_result']($result);
if (!empty($reports))
{
$smcFunc['db_query']('', '
DELETE FROM {db_prefix}log_reported
WHERE id_report IN ({array_int:report_list})',
array(
'report_list' => $reports,
)
);
$smcFunc['db_query']('', '
DELETE FROM {db_prefix}log_reported_comments
WHERE id_report IN ({array_int:report_list})',
array(
'report_list' => $reports,
)
);
}
}
if (!empty($modSettings['pruneScheduledTaskLog']))
{
$t = time() - $modSettings['pruneScheduledTaskLog'] * 86400;
$smcFunc['db_query']('', '
DELETE FROM {db_prefix}log_scheduled_tasks
WHERE time_run < {int:time_run}',
array(
'time_run' => $t,
)
);
}
if (!empty($modSettings['pruneSpiderHitLog']))
{
$t = time() - $modSettings['pruneSpiderHitLog'] * 86400;
$smcFunc['db_query']('', '
DELETE FROM {db_prefix}log_spider_hits
WHERE log_time < {int:log_time}',
array(
'log_time' => $t,
)
);
}
}
$smcFunc['db_query']('', '
DELETE FROM {db_prefix}log_subscribed
WHERE end_time = {int:no_end_time}
AND status = {int:not_active}
AND start_time < {int:start_time}
AND payments_pending < {int:payments_pending}',
array(
'no_end_time' => 0,
'not_active' => 0,
'start_time' => time() - 60,
'payments_pending' => 1,
)
);
$smcFunc['db_query']('', '
DELETE FROM {db_prefix}sessions
WHERE last_update < {int:last_update}',
array(
'last_update' => time() - 86400,
)
);
$smcFunc['db_insert']('insert', '{db_prefix}background_tasks',
array('task_file' => 'string-255', 'task_class' => 'string-255', 'task_data' => 'string', 'claimed_time' => 'int'),
array('$sourcedir/tasks/UpdateTldRegex.php', 'Update_TLD_Regex', '', 0), array()
);
if (!empty($cache_enable) && !empty($cacheAPI))
$cacheAPI->housekeeping();
deleteAllMinified();
call_integration_hook('integrate_weekly_maintenance');
return true;
}
function scheduled_paid_subscriptions()
{
global $sourcedir, $scripturl, $smcFunc, $modSettings, $language;
$request = $smcFunc['db_query']('', '
SELECT id_subscribe, id_member
FROM {db_prefix}log_subscribed
WHERE status = {int:is_active}
AND end_time < {int:time_now}',
array(
'is_active' => 1,
'time_now' => time(),
)
);
while ($row = $smcFunc['db_fetch_assoc']($request))
{
require_once($sourcedir . '/ManagePaid.php');
removeSubscription($row['id_subscribe'], $row['id_member']);
}
$smcFunc['db_free_result']($request);
$request = $smcFunc['db_query']('', '
SELECT ls.id_sublog, m.id_member, m.member_name, m.email_address, m.lngfile, s.name, ls.end_time
FROM {db_prefix}log_subscribed AS ls
JOIN {db_prefix}subscriptions AS s ON (s.id_subscribe = ls.id_subscribe)
JOIN {db_prefix}members AS m ON (m.id_member = ls.id_member)
WHERE ls.status = {int:is_active}
AND ls.reminder_sent = {int:reminder_sent}
AND s.reminder > {int:reminder_wanted}
AND ls.end_time < ({int:time_now} + s.reminder * 86400)',
array(
'is_active' => 1,
'reminder_sent' => 0,
'reminder_wanted' => 0,
'time_now' => time(),
)
);
$subs_reminded = array();
$members = array();
while ($row = $smcFunc['db_fetch_assoc']($request))
{
if (empty($subs_reminded))
{
require_once($sourcedir . '/Subs-Post.php');
loadEssentialThemeData();
}
$subs_reminded[] = $row['id_sublog'];
$members[$row['id_member']] = $row;
}
$smcFunc['db_free_result']($request);
require_once($sourcedir . '/Subs-Notify.php');
$notifyPrefs = getNotifyPrefs(array_keys($members), 'paidsubs_expiring', true);
$alert_rows = array();
foreach ($members as $row)
{
$replacements = array(
'PROFILE_LINK' => $scripturl . '?action=profile;area=subscriptions;u=' . $row['id_member'],
'REALNAME' => $row['member_name'],
'SUBSCRIPTION' => $row['name'],
'END_DATE' => strip_tags(timeformat($row['end_time'])),
);
$emaildata = loadEmailTemplate('paid_subscription_reminder', $replacements, empty($row['lngfile']) || empty($modSettings['userLanguage']) ? $language : $row['lngfile']);
if ($notifyPrefs[$row['id_member']] & 0x02)
sendmail($row['email_address'], $emaildata['subject'], $emaildata['body'], null, 'paid_sub_remind', $emaildata['is_html'], 2);
if ($notifyPrefs[$row['id_member']] & 0x01)
{
$alert_rows[] = array(
'alert_time' => time(),
'id_member' => $row['id_member'],
'id_member_started' => $row['id_member'],
'member_name' => $row['member_name'],
'content_type' => 'paidsubs',
'content_id' => $row['id_sublog'],
'content_action' => 'expiring',
'is_read' => 0,
'extra' => $smcFunc['json_encode'](array(
'subscription_name' => $row['name'],
'end_time' => $row['end_time'],
)),
);
updateMemberData($row['id_member'], array('alerts' => '+'));
}
}
if (!empty($alert_rows))
$smcFunc['db_insert']('',
'{db_prefix}user_alerts',
array('alert_time' => 'int', 'id_member' => 'int', 'id_member_started' => 'int', 'member_name' => 'string',
'content_type' => 'string', 'content_id' => 'int', 'content_action' => 'string', 'is_read' => 'int', 'extra' => 'string'),
$alert_rows,
array()
);
if (!empty($subs_reminded))
$smcFunc['db_query']('', '
UPDATE {db_prefix}log_subscribed
SET reminder_sent = {int:reminder_sent}
WHERE id_sublog IN ({array_int:subscription_list})',
array(
'subscription_list' => $subs_reminded,
'reminder_sent' => 1,
)
);
return true;
}
function scheduled_remove_temp_attachments()
{
global $smcFunc, $modSettings, $context, $txt;
if (!empty($modSettings['currentAttachmentUploadDir']))
{
if (!is_array($modSettings['attachmentUploadDir']))
$modSettings['attachmentUploadDir'] = $smcFunc['json_decode']($modSettings['attachmentUploadDir'], true);
$attach_dirs = $modSettings['attachmentUploadDir'];
}
else
{
$attach_dirs = array($modSettings['attachmentUploadDir']);
}
foreach ($attach_dirs as $attach_dir)
{
$dir = @opendir($attach_dir);
if (!$dir)
{
loadEssentialThemeData();
loadLanguage('Post');
$context['scheduled_errors']['remove_temp_attachments'][] = $txt['cant_access_upload_path'] . ' (' . $attach_dir . ')';
log_error($txt['cant_access_upload_path'] . ' (' . $attach_dir . ')', 'critical');
return false;
}
while ($file = readdir($dir))
{
if ($file == '.' || $file == '..')
continue;
if (strpos($file, 'post_tmp_') !== false)
{
if (filemtime($attach_dir . '/' . $file) < time() - 18000)
@unlink($attach_dir . '/' . $file);
}
}
closedir($dir);
}
return true;
}
function scheduled_remove_topic_redirect()
{
global $smcFunc, $sourcedir;
$topics = array();
loadEssentialThemeData();
$request = $smcFunc['db_query']('', '
SELECT id_topic
FROM {db_prefix}topics
WHERE redirect_expires <= {int:redirect_expires}
AND redirect_expires <> 0',
array(
'redirect_expires' => time(),
)
);
while ($row = $smcFunc['db_fetch_row']($request))
$topics[] = $row[0];
$smcFunc['db_free_result']($request);
if (count($topics) > 0)
{
require_once($sourcedir . '/RemoveTopic.php');
removeTopics($topics, false, true);
}
return true;
}
function scheduled_remove_old_drafts()
{
global $smcFunc, $sourcedir, $modSettings;
if (empty($modSettings['drafts_keep_days']))
return true;
$drafts = array();
loadEssentialThemeData();
$request = $smcFunc['db_query']('', '
SELECT id_draft
FROM {db_prefix}user_drafts
WHERE poster_time <= {int:poster_time_old}',
array(
'poster_time_old' => time() - (86400 * $modSettings['drafts_keep_days']),
)
);
while ($row = $smcFunc['db_fetch_row']($request))
$drafts[] = (int) $row[0];
$smcFunc['db_free_result']($request);
if (count($drafts) > 0)
{
require_once($sourcedir . '/Drafts.php');
DeleteDraft($drafts, false);
}
return true;
}
?>