Spaces:
Running
Running
File size: 66,739 Bytes
5c2ed06 |
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 |
/**
* Administration commands
* Pokemon Showdown - http://pokemonshowdown.com/
*
* These are administration commands, generally only useful for
* programmers for managing the server.
*
* For the API, see chat-plugins/COMMANDS.md
*
* @license MIT
*/
import * as path from 'path';
import * as child_process from 'child_process';
import { FS, Utils, ProcessManager, SQL } from '../../lib';
interface ProcessData {
cmd: string;
cpu?: string;
time?: string;
ram?: string;
}
function hasDevAuth(user: User) {
const devRoom = Rooms.get('development');
return devRoom && Users.Auth.atLeast(devRoom.auth.getDirect(user.id), '%');
}
function bash(command: string, context: Chat.CommandContext, cwd?: string): Promise<[number, string, string]> {
context.stafflog(`$ ${command}`);
if (!cwd) cwd = FS.ROOT_PATH;
return new Promise(resolve => {
child_process.exec(command, { cwd }, (error, stdout, stderr) => {
let log = `[o] ${stdout}[e] ${stderr}`;
if (error) log = `[c] ${error.code}\n${log}`;
context.stafflog(log);
resolve([error?.code || 0, stdout, stderr]);
});
});
}
function keysIncludingNonEnumerable(obj: object) {
const methods = new Set<string>();
let current = obj;
do {
const curProps = Object.getOwnPropertyNames(current);
for (const prop of curProps) {
methods.add(prop);
}
} while ((current = Object.getPrototypeOf(current)));
return [...methods];
}
function keysToCopy(obj: object) {
return keysIncludingNonEnumerable(obj).filter(
// `__` matches sucrase init methods
// prop is excluded because it can hit things like hasOwnProperty that are potentially annoying (?) with
// the kind of prototype patching we want to do here - same for constructor and valueOf
prop => !(prop.includes('__') || prop.toLowerCase().includes('prop') || ['valueOf', 'constructor'].includes(prop))
);
}
/**
* @returns {boolean} Whether or not the rebase failed
*/
async function updateserver(context: Chat.CommandContext, codePath: string) {
const exec = (command: string) => bash(command, context, codePath);
context.sendReply(`Fetching newest version of code in the repository ${codePath}...`);
let [code, stdout, stderr] = await exec(`git fetch`);
if (code) throw new Error(`updateserver: Crash while fetching - make sure this is a Git repository`);
if (!stdout && !stderr) {
context.sendReply(`There were no updates.`);
Monitor.updateServerLock = false;
return true;
}
[code, stdout, stderr] = await exec(`git rev-parse HEAD`);
if (code || stderr) throw new Error(`updateserver: Crash while grabbing hash`);
const oldHash = String(stdout).trim();
[code, stdout, stderr] = await exec(`git stash save "PS /updateserver autostash"`);
let stashedChanges = true;
if (code) throw new Error(`updateserver: Crash while stashing`);
if ((stdout + stderr).includes("No local changes")) {
stashedChanges = false;
} else if (stderr) {
throw new Error(`updateserver: Crash while stashing`);
} else {
context.sendReply(`Saving changes...`);
}
// errors can occur while rebasing or popping the stash; make sure to recover
try {
context.sendReply(`Rebasing...`);
[code] = await exec(`git rebase --no-autostash FETCH_HEAD`);
if (code) {
// conflict while rebasing
await exec(`git rebase --abort`);
throw new Error(`restore`);
}
if (stashedChanges) {
context.sendReply(`Restoring saved changes...`);
[code] = await exec(`git stash pop`);
if (code) {
// conflict while popping stash
await exec(`git reset HEAD .`);
await exec(`git checkout .`);
throw new Error(`restore`);
}
}
return true;
} catch {
// failed while rebasing or popping the stash
await exec(`git reset --hard ${oldHash}`);
if (stashedChanges) await exec(`git stash pop`);
return false;
}
}
export const commands: Chat.ChatCommands = {
potd(target, room, user) {
this.canUseConsole();
const species = Dex.species.get(target);
if (species.id === Config.potd) {
return this.errorReply(`The PotD is already set to ${species.name}`);
}
if (!species.exists) return this.errorReply(`Pokemon "${target}" not found.`);
if (!Dex.species.getFullLearnset(species.id).length) {
return this.errorReply(`That Pokemon has no learnset and cannot be used as the PotD.`);
}
Config.potd = species.id;
for (const process of Rooms.PM.processes) {
process.getProcess().send(`EVAL\n\nConfig.potd = '${species.id}'`);
}
this.addGlobalModAction(`${user.name} set the PotD to ${species.name}.`);
this.globalModlog(`POTD`, null, species.name);
},
potdhelp: [
`/potd [pokemon] - Set the Pokemon of the Day to the given [pokemon]. Requires: ~`,
],
/*********************************************************
* Bot commands (chat-log manipulation)
*********************************************************/
htmlbox(target, room, user) {
if (!target) return this.parse('/help htmlbox');
room = this.requireRoom();
this.checkHTML(target);
target = Chat.collapseLineBreaksHTML(target);
this.checkBroadcast(true, '!htmlbox');
if (this.broadcastMessage) this.checkCan('declare', null, room);
if (!this.runBroadcast(true, '!htmlbox')) return;
if (this.broadcasting) {
return `/raw <div class="infobox">${target}</div>`;
} else {
this.sendReplyBox(target);
}
},
htmlboxhelp: [
`/htmlbox [message] - Displays a message, parsing HTML code contained.`,
`!htmlbox [message] - Shows everyone a message, parsing HTML code contained. Requires: * # ~`,
],
addhtmlbox(target, room, user, connection, cmd) {
if (!target) return this.parse('/help ' + cmd);
room = this.requireRoom();
this.checkChat();
this.checkHTML(target);
this.checkCan('addhtml', null, room);
target = Chat.collapseLineBreaksHTML(target);
if (user.tempGroup !== '*') {
target += Utils.html`<div style="float:right;color:#888;font-size:8pt">[${user.name}]</div><div style="clear:both"></div>`;
}
return `/raw <div class="infobox">${target}</div>`;
},
addhtmlboxhelp: [
`/addhtmlbox [message] - Shows everyone a message, parsing HTML code contained. Requires: * # ~`,
],
addrankhtmlbox(target, room, user, connection, cmd) {
room = this.requireRoom();
if (!target) return this.parse('/help ' + cmd);
this.checkChat();
let [rank, html] = this.splitOne(target);
if (!(rank in Config.groups)) return this.errorReply(`Group '${rank}' does not exist.`);
html = this.checkHTML(html);
this.checkCan('addhtml', null, room);
html = Chat.collapseLineBreaksHTML(html);
if (user.tempGroup !== '*') {
html += Utils.html`<div style="float:right;color:#888;font-size:8pt">[${user.name}]</div><div style="clear:both"></div>`;
}
room.sendRankedUsers(`|html|<div class="infobox">${html}</div>`, rank as GroupSymbol);
},
addrankhtmlboxhelp: [
`/addrankhtmlbox [rank], [message] - Shows everyone with the specified rank or higher a message, parsing HTML code contained. Requires: * # ~`,
],
changeuhtml: 'adduhtml',
adduhtml(target, room, user, connection, cmd) {
room = this.requireRoom();
if (!target) return this.parse('/help ' + cmd);
this.checkChat();
let [name, html] = this.splitOne(target);
name = toID(name);
html = this.checkHTML(html);
this.checkCan('addhtml', null, room);
html = Chat.collapseLineBreaksHTML(html);
if (user.tempGroup !== '*') {
html += Utils.html`<div style="float:right;color:#888;font-size:8pt">[${user.name}]</div><div style="clear:both"></div>`;
}
if (cmd === 'changeuhtml') {
room.attributedUhtmlchange(user, name, html);
} else {
return `/uhtml ${name},${html}`;
}
},
adduhtmlhelp: [
`/adduhtml [name], [message] - Shows everyone a message that can change, parsing HTML code contained. Requires: * # ~`,
],
changeuhtmlhelp: [
`/changeuhtml [name], [message] - Changes the message previously shown with /adduhtml [name]. Requires: * # ~`,
],
changerankuhtml: 'addrankuhtml',
addrankuhtml(target, room, user, connection, cmd) {
room = this.requireRoom();
if (!target) return this.parse('/help ' + cmd);
this.checkChat();
const [rank, uhtml] = this.splitOne(target);
if (!(rank in Config.groups)) return this.errorReply(`Group '${rank}' does not exist.`);
let [name, html] = this.splitOne(uhtml);
name = toID(name);
html = this.checkHTML(html);
this.checkCan('addhtml', null, room);
html = Chat.collapseLineBreaksHTML(html);
if (user.tempGroup !== '*') {
html += Utils.html`<div style="float:right;color:#888;font-size:8pt">[${user.name}]</div><div style="clear:both"></div>`;
}
html = `|uhtml${(cmd === 'changerankuhtml' ? 'change' : '')}|${name}|${html}`;
room.sendRankedUsers(html, rank as GroupSymbol);
},
addrankuhtmlhelp: [
`/addrankuhtml [rank], [name], [message] - Shows everyone with the specified rank or higher a message that can change, parsing HTML code contained. Requires: * # ~`,
],
changerankuhtmlhelp: [
`/changerankuhtml [rank], [name], [message] - Changes the message previously shown with /addrankuhtml [rank], [name]. Requires: * # ~`,
],
deletenamecolor: 'setnamecolor',
snc: 'setnamecolor',
dnc: 'setnamecolor',
async setnamecolor(target, room, user, connection, cmd) {
this.checkCan('rangeban');
if (!toID(target)) {
return this.parse(`/help ${cmd}`);
}
let [userid, source] = this.splitOne(target).map(toID);
if (cmd.startsWith('d')) {
source = '';
} else if (!source || source.length > 18) {
return this.errorReply(
`Specify a source username to take the color from. Name must be <19 characters.`
);
}
if (!userid || userid.length > 18) {
return this.errorReply(`Specify a valid name to set a new color for. Names must be <19 characters.`);
}
const [res, error] = await LoginServer.request('updatenamecolor', {
userid,
source,
by: user.id,
});
if (error) {
return this.errorReply(error.message);
}
if (!res || res.actionerror) {
return this.errorReply(res?.actionerror || "The loginserver is currently disabled.");
}
if (source) {
return this.sendReply(
`|html|<username>${userid}</username>'s namecolor was ` +
`successfully updated to match '<username>${source}</username>'. ` +
`Refresh your browser for it to take effect.`
);
} else {
return this.sendReply(`${userid}'s namecolor was removed.`);
}
},
setnamecolorhelp: [
`/setnamecolor OR /snc [username], [source name] - Set [username]'s name color to match the [source name]'s color.`,
`Requires: ~`,
],
deletenamecolorhelp: [
`/deletenamecolor OR /dnc [username] - Remove [username]'s namecolor.`,
`Requires: ~`,
],
pline(target, room, user) {
// Secret console admin command
this.canUseConsole();
const message = target.length > 30 ? target.slice(0, 30) + '...' : target;
this.checkBroadcast(true, `!pline ${message}`);
this.runBroadcast(true);
this.sendReply(target);
},
plinehelp: [
`/pline [protocol lines] - Adds the given [protocol lines] to the current room. Requires: ~ console access`,
],
pminfobox(target, room, user, connection) {
this.checkChat();
room = this.requireRoom();
this.checkCan('addhtml', null, room);
if (!target) return this.parse("/help pminfobox");
const { targetUser, rest: html } = this.requireUser(target);
this.checkHTML(html);
this.checkPMHTML(targetUser);
const message = `|pm|${user.getIdentity()}|${targetUser.getIdentity()}|` +
`/raw <div class="infobox">${html}</div>`;
user.send(message);
if (targetUser !== user) targetUser.send(message);
targetUser.lastPM = user.id;
user.lastPM = targetUser.id;
},
pminfoboxhelp: [`/pminfobox [user], [html]- PMs an [html] infobox to [user]. Requires * # ~`],
pmuhtmlchange: 'pmuhtml',
pmuhtml(target, room, user, connection, cmd) {
this.checkChat();
room = this.requireRoom();
this.checkCan('addhtml', null, room);
if (!target) return this.parse("/help " + cmd);
const { targetUser, rest: html } = this.requireUser(target);
this.checkHTML(html);
this.checkPMHTML(targetUser);
const message = `|pm|${user.getIdentity()}|${targetUser.getIdentity()}|` +
`/uhtml${(cmd === 'pmuhtmlchange' ? 'change' : '')} ${html}`;
user.send(message);
if (targetUser !== user) targetUser.send(message);
targetUser.lastPM = user.id;
user.lastPM = targetUser.id;
},
pmuhtmlhelp: [`/pmuhtml [user], [name], [html] - PMs [html] that can change to [user]. Requires * # ~`],
pmuhtmlchangehelp: [
`/pmuhtmlchange [user], [name], [html] - Changes html that was previously PMed to [user] to [html]. Requires * # ~`,
],
closehtmlpage: 'sendhtmlpage',
changehtmlpageselector: 'sendhtmlpage',
sendhtmlpage(target, room, user, connection, cmd) {
room = this.requireRoom();
this.checkCan('addhtml', null, room);
const closeHtmlPage = cmd === 'closehtmlpage';
const [targetStr, rest] = this.splitOne(target).map(str => str.trim());
const targets = targetStr.split('|').map(u => u.trim());
let [pageid, content] = this.splitOne(rest);
let selector: string | undefined;
if (cmd === 'changehtmlpageselector') {
[selector, content] = this.splitOne(content);
if (!selector) return this.parse(`/help ${cmd}`);
}
if (!pageid || (closeHtmlPage ? content : !content)) {
return this.parse(`/help ${cmd}`);
}
pageid = `${user.id}-${toID(pageid)}`;
const successes: string[] = [], errors: string[] = [];
content = this.checkHTML(content);
targets.forEach(targetUsername => {
const targetUser = Users.get(targetUsername);
if (!targetUser) return errors.push(`${targetUsername} [offline/misspelled]`);
if (targetUser.locked && !this.user.can('lock')) {
return errors.push(`${targetUser.name} [locked]`);
}
let targetConnections = [];
// find if a connection has specifically requested this page
for (const c of targetUser.connections) {
if (c.lastRequestedPage === pageid) {
targetConnections.push(c);
}
}
if (!targetConnections.length) {
// no connection has requested it - verify that we share a room
try {
this.checkPMHTML(targetUser);
} catch {
return errors.push(`${targetUser.name} [not in room / blocking PMs]`);
}
targetConnections = targetUser.connections;
}
for (const targetConnection of targetConnections) {
const context = new Chat.PageContext({
user: targetUser,
connection: targetConnection,
pageid: `view-bot-${pageid}`,
});
if (closeHtmlPage) {
context.send(`|deinit|`);
} else if (selector) {
context.send(`|selectorhtml|${selector}|${content}`);
} else {
context.title = `[${user.name}] ${pageid}`;
context.setHTML(content);
}
}
successes.push(targetUser.name);
});
if (closeHtmlPage) {
if (successes.length) {
this.sendReply(`Closed the bot page ${pageid} for ${Chat.toListString(successes)}.`);
}
if (errors.length) {
this.errorReply(`Unable to close the bot page for ${Chat.toListString(errors)}.`);
}
} else {
if (successes.length) {
this.sendReply(`Sent ${Chat.toListString(successes)}${selector ? ` the selector ${selector} on` : ''} the bot page ${pageid}.`);
}
if (errors.length) {
this.errorReply(`Unable to send the bot page ${pageid} to ${Chat.toListString(errors)}.`);
}
}
if (!successes.length) return false;
},
sendhtmlpagehelp: [
`/sendhtmlpage [userid], [pageid], [html] - Sends [userid] the bot page [pageid] with the content [html]. Requires: * # ~`,
],
changehtmlpageselectorhelp: [
`/changehtmlpageselector [userid], [pageid], [selector], [html] - Sends [userid] the content [html] for the selector [selector] on the bot page [pageid]. Requires: * # ~`,
],
closehtmlpagehelp: [
`/closehtmlpage [userid], [pageid], - Closes the bot page [pageid] for [userid]. Requires: * # ~`,
],
highlighthtmlpage(target, room, user) {
const { targetUser, rest } = this.requireUser(target);
let [pageid, title, highlight] = Utils.splitFirst(rest, ',', 2);
pageid = `${user.id}-${toID(pageid)}`;
if (!pageid || !target) return this.parse(`/help highlighthtmlpage`);
if (targetUser.locked && !this.user.can('lock')) {
throw new Chat.ErrorMessage("This user is currently locked, so you cannot send them highlights.");
}
const buf = `|tempnotify|bot-${pageid}|${title} [from ${user.name}]|${highlight ? highlight : ''}`;
let targetConnections = [];
this.checkPMHTML(targetUser);
// try to locate connections that have requested the page recently
for (const c of targetUser.connections) {
if (c.lastRequestedPage === pageid) {
targetConnections.push(c);
}
}
// there are none, default to the first connection
if (!targetConnections.length) {
targetConnections = [targetUser.connections[0]];
}
for (const conn of targetConnections) {
conn.send(`>view-bot-${pageid}\n${buf}`);
}
this.sendReply(`Sent a highlight to ${targetUser.name} on the bot page ${pageid}.`);
},
highlighthtmlpagehelp: [
`/highlighthtmlpage [userid], [pageid], [title], [optional highlight] - Sends a highlight to [userid] if they're viewing the bot page [pageid].`,
`If a [highlight] is specified, only highlights them if they have that term on their highlight list.`,
],
changeprivateuhtml: 'sendprivatehtmlbox',
sendprivateuhtml: 'sendprivatehtmlbox',
sendprivatehtmlbox(target, room, user, connection, cmd) {
room = this.requireRoom();
this.checkCan('addhtml', null, room);
const [targetStr, rest] = this.splitOne(target).map(str => str.trim());
const targets = targetStr.split('|').map(u => u.trim());
let html: string;
let messageType: string;
let name: string | undefined;
const plainHtml = cmd === 'sendprivatehtmlbox';
if (plainHtml) {
html = rest;
messageType = 'html';
} else {
[name, html] = this.splitOne(rest);
if (!name) return this.parse('/help sendprivatehtmlbox');
messageType = `uhtml${(cmd === 'changeprivateuhtml' ? 'change' : '')}|${name}`;
}
html = this.checkHTML(html);
if (!html) return this.parse('/help sendprivatehtmlbox');
html = `${Utils.html`<div style="color:#888;font-size:8pt">[Private from ${user.name}]</div>`}${Chat.collapseLineBreaksHTML(html)}`;
if (plainHtml) html = `<div class="infobox">${html}</div>`;
const successes: string[] = [], errors: string[] = [];
targets.forEach(targetUsername => {
const targetUser = Users.get(targetUsername);
if (!targetUser) return errors.push(`${targetUsername} [offline/misspelled]`);
if (targetUser.locked && !this.user.can('lock')) {
return errors.push(`${targetUser.name} [locked]`);
}
if (!(targetUser.id in room.users)) {
return errors.push(`${targetUser.name} [not in room]`);
}
successes.push(targetUser.name);
targetUser.sendTo(room, `|${messageType}|${html}`);
});
if (successes.length) this.sendReply(`Sent private HTML to ${Chat.toListString(successes)}.`);
if (errors.length) this.errorReply(`Unable to send private HTML to ${Chat.toListString(errors)}.`);
if (!successes.length) return false;
},
sendprivatehtmlboxhelp: [
`/sendprivatehtmlbox [userid], [html] - Sends [userid] the private [html]. Requires: * # ~`,
`/sendprivateuhtml [userid], [name], [html] - Sends [userid] the private [html] that can change. Requires: * # ~`,
`/changeprivateuhtml [userid], [name], [html] - Changes the message previously sent with /sendprivateuhtml [userid], [name], [html]. Requires: * # ~`,
],
botmsg(target, room, user, connection) {
if (!target?.includes(',')) {
return this.parse('/help botmsg');
}
this.checkRecursion();
let { targetUser, rest: message } = this.requireUser(target);
const auth = this.room ? this.room.auth : Users.globalAuth;
if (!['*', '#'].includes(auth.get(targetUser))) {
return this.popupReply(`The user "${targetUser.name}" is not a bot in this room.`);
}
this.room = null; // shouldn't be in a room
this.pmTarget = targetUser;
message = this.checkChat(message);
if (!message) return;
Chat.PrivateMessages.send(`/botmsg ${message}`, user, targetUser, targetUser);
},
botmsghelp: [`/botmsg [username], [message] - Send a private message to a bot without feedback. For room bots, must use in the room the bot is auth in.`],
nick() {
this.sendReply(`||New to the Pokémon Showdown protocol? Your client needs to get a signed assertion from the login server and send /trn`);
this.sendReply(`||https://github.com/smogon/pokemon-showdown/blob/master/PROTOCOL.md#global-messages`);
this.sendReply(`||Follow the instructions for handling |challstr| in this documentation`);
},
/*********************************************************
* Server management commands
*********************************************************/
memusage: 'memoryusage',
memoryusage(target, room, user) {
if (!hasDevAuth(user)) this.checkCan('lockdown');
const memUsage = process.memoryUsage();
const resultNums = [memUsage.rss, memUsage.heapUsed, memUsage.heapTotal];
const units = ["B", "KiB", "MiB", "GiB", "TiB"];
const results = resultNums.map(num => {
const unitIndex = Math.floor(Math.log2(num) / 10); // 2^10 base log
return `${(num / (2 ** (10 * unitIndex))).toFixed(2)} ${units[unitIndex]}`;
});
this.sendReply(`||[Main process] RSS: ${results[0]}, Heap: ${results[1]} / ${results[2]}`);
},
memoryusagehelp: [
`/memoryusage OR /memusage - Get the current memory usage of the server. Requires: ~`,
],
forcehotpatch: 'hotpatch',
async hotpatch(target, room, user, connection, cmd) {
if (!target) return this.parse('/help hotpatch');
this.canUseConsole();
if (Monitor.updateServerLock) {
return this.errorReply("Wait for /updateserver to finish before hotpatching.");
}
await this.parse(`/rebuild`);
const lock = Monitor.hotpatchLock;
const hotpatches = [
'chat', 'formats', 'loginserver', 'punishments', 'dnsbl', 'modlog',
'processmanager', 'roomsp', 'usersp',
];
target = toID(target);
try {
Utils.clearRequireCache({ exclude: ['/lib/process-manager'] });
if (target === 'all') {
if (lock['all']) {
return this.errorReply(`Hot-patching all has been disabled by ${lock['all'].by} (${lock['all'].reason})`);
}
if (Config.disablehotpatchall) {
return this.errorReply("This server does not allow for the use of /hotpatch all");
}
for (const hotpatch of hotpatches) {
await this.parse(`/hotpatch ${hotpatch}`);
}
} else if (target === 'chat' || target === 'commands') {
if (lock['tournaments']) {
return this.errorReply(`Hot-patching tournaments has been disabled by ${lock['tournaments'].by} (${lock['tournaments'].reason})`);
}
if (lock['chat']) {
return this.errorReply(`Hot-patching chat has been disabled by ${lock['chat'].by} (${lock['chat'].reason})`);
}
this.sendReply("Hotpatching chat commands...");
const disabledCommands = Chat.allCommands().filter(c => c.disabled).map(c => `/${c.fullCmd}`);
if (cmd !== 'forcehotpatch' && disabledCommands.length) {
this.errorReply(`${Chat.count(disabledCommands.length, "commands")} are disabled right now.`);
this.errorReply(`Hotpatching will enable them. Use /forcehotpatch chat if you're sure.`);
return this.errorReply(`Currently disabled: ${disabledCommands.join(', ')}`);
}
const oldPlugins = Chat.plugins;
Chat.destroy();
const processManagers = ProcessManager.processManagers;
for (const manager of processManagers.slice()) {
if (manager.filename.startsWith(FS(__dirname + '/../chat-plugins/').path)) {
void manager.destroy();
}
}
void Chat.PM.destroy();
global.Chat = require('../chat').Chat;
global.Tournaments = require('../tournaments').Tournaments;
this.sendReply("Reloading chat plugins...");
Chat.loadPlugins(oldPlugins);
this.sendReply("DONE");
} else if (target === 'processmanager') {
if (lock['processmanager']) {
return this.errorReply(
`Hot-patching formats has been disabled by ${lock['processmanager'].by} ` +
`(${lock['processmanager'].reason})`
);
}
this.sendReply('Hotpatching processmanager prototypes...');
// keep references
const cache = { ...require.cache };
Utils.clearRequireCache();
const newPM = require('../../lib/process-manager');
require.cache = cache;
const protos = [
[ProcessManager.QueryProcessManager, newPM.QueryProcessManager],
[ProcessManager.StreamProcessManager, newPM.StreamProcessManager],
[ProcessManager.ProcessManager, newPM.ProcessManager],
[ProcessManager.RawProcessManager, newPM.RawProcessManager],
[ProcessManager.QueryProcessWrapper, newPM.QueryProcessWrapper],
[ProcessManager.StreamProcessWrapper, newPM.StreamProcessWrapper],
[ProcessManager.RawProcessManager, newPM.RawProcessWrapper],
].map(part => part.map(constructor => constructor.prototype));
for (const [oldProto, newProto] of protos) {
const newKeys = keysToCopy(newProto);
const oldKeys = keysToCopy(oldProto);
for (const key of oldKeys) {
if (!newProto[key]) {
delete oldProto[key];
}
}
for (const key of newKeys) {
oldProto[key] = newProto[key];
}
}
this.sendReply('DONE');
} else if (target === 'usersp' || target === 'roomsp') {
if (lock[target]) {
return this.errorReply(`Hot-patching ${target} has been disabled by ${lock[target].by} (${lock[target].reason})`);
}
let newProto: any, oldProto: any, message: string;
switch (target) {
case 'usersp':
newProto = require('../users').User.prototype;
oldProto = Users.User.prototype;
message = 'user prototypes';
break;
case 'roomsp':
newProto = require('../rooms').BasicRoom.prototype;
oldProto = Rooms.BasicRoom.prototype;
message = 'rooms prototypes';
break;
}
this.sendReply(`Hotpatching ${message}...`);
const newKeys = keysToCopy(newProto);
const oldKeys = keysToCopy(oldProto);
const counts = {
added: 0,
updated: 0,
deleted: 0,
};
for (const key of oldKeys) {
if (!newProto[key]) {
counts.deleted++;
delete oldProto[key];
}
}
for (const key of newKeys) {
if (!oldProto[key]) {
counts.added++;
} else if (
// compare source code
typeof oldProto[key] !== 'function' || oldProto[key].toString() !== newProto[key].toString()
) {
counts.updated++;
}
oldProto[key] = newProto[key];
}
this.sendReply(`DONE`);
this.sendReply(
`Updated ${Chat.count(counts.updated, 'methods')}` +
(counts.added ? `, added ${Chat.count(counts.added, 'new methods')} to ${message}` : '') +
(counts.deleted ? `, and removed ${Chat.count(counts.deleted, 'methods')}.` : '.')
);
} else if (target === 'tournaments') {
if (lock['tournaments']) {
return this.errorReply(`Hot-patching tournaments has been disabled by ${lock['tournaments'].by} (${lock['tournaments'].reason})`);
}
this.sendReply("Hotpatching tournaments...");
global.Tournaments = require('../tournaments').Tournaments;
Chat.loadPlugin(Tournaments, 'tournaments');
this.sendReply("DONE");
} else if (target === 'formats' || target === 'battles') {
if (lock['formats']) {
return this.errorReply(`Hot-patching formats has been disabled by ${lock['formats'].by} (${lock['formats'].reason})`);
}
if (lock['battles']) {
return this.errorReply(`Hot-patching battles has been disabled by ${lock['battles'].by} (${lock['battles'].reason})`);
}
if (lock['validator']) {
return this.errorReply(`Hot-patching the validator has been disabled by ${lock['validator'].by} (${lock['validator'].reason})`);
}
this.sendReply("Hotpatching formats...");
// reload .sim-dist/dex.js
global.Dex = require('../../sim/dex').Dex;
// rebuild the formats list
Rooms.global.formatList = '';
// respawn validator processes
void TeamValidatorAsync.PM.respawn();
// respawn simulator processes
void Rooms.PM.respawn();
// respawn datasearch processes (crashes otherwise, since the Dex data in the PM can be out of date)
void Chat.plugins.datasearch?.PM?.respawn();
// update teams global
global.Teams = require('../../sim/teams').Teams;
// broadcast the new formats list to clients
Rooms.global.sendAll(Rooms.global.formatListText);
this.sendReply("DONE");
} else if (target === 'loginserver') {
this.sendReply("Hotpatching loginserver...");
FS('config/custom.css').unwatch();
global.LoginServer = require('../loginserver').LoginServer;
this.sendReply("DONE. New login server requests will use the new code.");
} else if (target === 'learnsets' || target === 'validator') {
if (lock['validator']) {
return this.errorReply(`Hot-patching the validator has been disabled by ${lock['validator'].by} (${lock['validator'].reason})`);
}
if (lock['formats']) {
return this.errorReply(`Hot-patching formats has been disabled by ${lock['formats'].by} (${lock['formats'].reason})`);
}
this.sendReply("Hotpatching validator...");
void TeamValidatorAsync.PM.respawn();
// update teams global too while we're at it
global.Teams = require('../../sim/teams').Teams;
this.sendReply("DONE. Any battles started after now will have teams be validated according to the new code.");
} else if (target === 'punishments') {
if (lock['punishments']) {
return this.errorReply(`Hot-patching punishments has been disabled by ${lock['punishments'].by} (${lock['punishments'].reason})`);
}
this.sendReply("Hotpatching punishments...");
global.Punishments = require('../punishments').Punishments;
this.sendReply("DONE");
} else if (target === 'dnsbl' || target === 'datacenters' || target === 'iptools') {
this.sendReply("Hotpatching ip-tools...");
global.IPTools = require('../ip-tools').IPTools;
void IPTools.loadHostsAndRanges();
this.sendReply("DONE");
} else if (target === 'modlog') {
if (lock['modlog']) {
return this.errorReply(`Hot-patching modlogs has been disabled by ${lock['modlog'].by} (${lock['modlog'].reason})`);
}
this.sendReply("Hotpatching modlog...");
void Rooms.Modlog.database.destroy();
const { mainModlog } = require('../modlog');
if (mainModlog.readyPromise) {
this.sendReply("Waiting for the new SQLite database to be ready...");
await mainModlog.readyPromise;
} else {
this.sendReply("The new SQLite database is ready!");
}
Rooms.Modlog.destroyAllSQLite();
Rooms.Modlog = mainModlog;
this.sendReply("DONE");
} else if (target.startsWith('disable')) {
this.sendReply("Disabling hot-patch has been moved to its own command:");
return this.parse('/help nohotpatch');
} else {
return this.errorReply("Your hot-patch command was unrecognized.");
}
} catch (e: any) {
Rooms.global.notifyRooms(
['development', 'staff'] as RoomID[],
`|c|${user.getIdentity()}|/log ${user.name} used /hotpatch ${target} - but something failed while trying to hot-patch.`
);
return this.errorReply(`Something failed while trying to hot-patch ${target}: \n${e.stack}`);
}
Rooms.global.notifyRooms(
['development', 'staff'] as RoomID[],
`|c|${user.getIdentity()}|/log ${user.name} used /hotpatch ${target}`
);
},
hotpatchhelp: [
`Hot-patching the game engine allows you to update parts of Showdown without interrupting currently-running battles. Requires: console access`,
`Hot-patching has greater memory requirements than restarting`,
`You can disable various hot-patches with /nohotpatch. For more information on this, see /help nohotpatch`,
`/hotpatch chat - reloads the chat-commands and chat-plugins directories`,
`/hotpatch validator - spawn new team validator processes`,
`/hotpatch formats - reload the sim/dex.ts tree, reload the formats list, and spawn new simulator and team validator processes`,
`/hotpatch dnsbl - reloads IPTools datacenters`,
`/hotpatch punishments - reloads new punishments code`,
`/hotpatch loginserver - reloads new loginserver code`,
`/hotpatch tournaments - reloads new tournaments code`,
`/hotpatch modlog - reloads new modlog code`,
`/hotpatch all - hot-patches chat, tournaments, formats, login server, punishments, modlog, and dnsbl`,
`/forcehotpatch [target] - as above, but performs the update regardless of whether the history has changed in git`,
],
hotpatchlock: 'nohotpatch',
yeshotpatch: 'nohotpatch',
allowhotpatch: 'nohotpatch',
nohotpatch(target, room, user, connection, cmd) {
this.checkCan('gdeclare');
if (!target) return this.parse('/help nohotpatch');
const separator = ' ';
const hotpatch = toID(target.substr(0, target.indexOf(separator)));
const reason = target.substr(target.indexOf(separator), target.length).trim();
if (!reason || !target.includes(separator)) return this.parse('/help nohotpatch');
const lock = Monitor.hotpatchLock;
const validDisable = [
'roomsp', 'usersp', 'chat', 'battles', 'formats', 'validator',
'tournaments', 'punishments', 'modlog', 'all', 'processmanager',
];
if (!validDisable.includes(hotpatch)) {
return this.errorReply(`Disabling hotpatching "${hotpatch}" is not supported.`);
}
const enable = ['allowhotpatch', 'yeshotpatch'].includes(cmd);
if (enable) {
if (!lock[hotpatch]) return this.errorReply(`Hot-patching ${hotpatch} is not disabled.`);
delete lock[hotpatch];
this.sendReply(`You have enabled hot-patching ${hotpatch}.`);
} else {
if (lock[hotpatch]) {
return this.errorReply(`Hot-patching ${hotpatch} has already been disabled by ${lock[hotpatch].by} (${lock[hotpatch].reason})`);
}
lock[hotpatch] = {
by: user.name,
reason,
};
this.sendReply(`You have disabled hot-patching ${hotpatch}.`);
}
Rooms.global.notifyRooms(
['development', 'staff', 'upperstaff'] as RoomID[],
`|c|${user.getIdentity()}|/log ${user.name} has ${enable ? 'enabled' : 'disabled'} hot-patching ${hotpatch}. Reason: ${reason}`
);
},
nohotpatchhelp: [
`/nohotpatch [chat|formats|battles|validator|tournaments|punishments|modlog|all] [reason] - Disables hotpatching the specified part of the simulator. Requires: ~`,
`/allowhotpatch [chat|formats|battles|validator|tournaments|punishments|modlog|all] [reason] - Enables hotpatching the specified part of the simulator. Requires: ~`,
],
async processes(target, room, user) {
if (!hasDevAuth(user)) this.checkCan('lockdown');
const processes = new Map<string, ProcessData>();
const ramUnits = ["KiB", "MiB", "GiB", "TiB"];
const cwd = FS.ROOT_PATH;
await new Promise<void>(resolve => {
const child = child_process.exec('ps -o pid,%cpu,time,rss,command', { cwd }, (err, stdout) => {
if (err) throw err;
const rows = stdout.split('\n').slice(1); // first line is the table header
for (const row of rows) {
if (!row.trim()) continue;
const [pid, cpu, time, ram, ...rest] = row.split(' ').filter(Boolean);
if (pid === `${child.pid}`) continue; // ignore this process
const entry: ProcessData = { cmd: rest.join(' ') };
// at the point of 0:00.[num], it's in so few seconds we don't care, so
// we don't need to clutter the display
if (time && !time.startsWith('0:00')) {
entry.time = time;
}
if (cpu && cpu !== '0.0') entry.cpu = `${cpu}%`;
const ramNum = parseInt(ram);
if (!isNaN(ramNum)) {
const unitIndex = Math.floor(Math.log2(ramNum) / 10); // 2^10 base log
entry.ram = `${(ramNum / (2 ** (10 * unitIndex))).toFixed(2)} ${ramUnits[unitIndex]}`;
}
processes.set(pid, entry);
}
resolve();
});
});
let buf = `<strong>${process.pid}</strong> - Main `;
const mainDisplay = [];
const mainProcess = processes.get(`${process.pid}`)!;
if (mainProcess.cpu) mainDisplay.push(`CPU ${mainProcess.cpu}`);
if (mainProcess.time) mainDisplay.push(`time: ${mainProcess.time})`);
if (mainProcess.ram) {
mainDisplay.push(`RAM: ${mainProcess.ram}`);
}
if (mainDisplay.length) buf += ` (${mainDisplay.join(', ')})`;
buf += `<br /><br /><strong>Process managers:</strong><br />`;
processes.delete(`${process.pid}`);
for (const manager of ProcessManager.processManagers) {
for (const [i, process] of manager.processes.entries()) {
const pid = process.getProcess().pid;
let managerName = manager.basename;
if (managerName.startsWith('index.')) { // doesn't actually tell us anything abt the process
managerName = manager.filename.split(path.sep).slice(-2).join(path.sep);
}
buf += `<strong>${pid}</strong> - ${managerName} ${i} (load ${process.getLoad()}`;
const info = processes.get(`${pid}`)!;
const display = [];
if (info.cpu) display.push(`CPU: ${info.cpu}`);
if (info.time) display.push(`time: ${info.time}`);
if (info.ram) display.push(`RAM: ${info.ram}`);
if (display.length) buf += `, ${display.join(', ')})`;
buf += `<br />`;
processes.delete(`${pid}`);
}
for (const [i, process] of manager.releasingProcesses.entries()) {
const pid = process.getProcess().pid;
buf += `<strong>${pid}</strong> - PENDING RELEASE ${manager.basename} ${i} (load ${process.getLoad()}`;
const info = processes.get(`${pid}`);
if (info) {
const display = [];
if (info.cpu) display.push(`CPU: ${info.cpu}`);
if (info.time) display.push(`time: ${info.time}`);
if (info.ram) display.push(`RAM: ${info.ram}`);
if (display.length) buf += `, ${display.join(', ')})`;
}
buf += `<br />`;
processes.delete(`${pid}`);
}
}
buf += `<br />`;
buf += `<details class="readmore"><summary><strong>Other processes:</strong></summary>`;
for (const [pid, info] of processes) {
buf += `<strong>${pid}</strong> - <code>${info.cmd}</code>`;
const display = [];
if (info.cpu) display.push(`CPU: ${info.cpu}`);
if (info.time) display.push(`time: ${info.time}`);
if (info.ram) display.push(`RAM: ${info.ram}`);
if (display.length) buf += `(${display.join(', ')})`;
buf += `<br />`;
}
buf += `</details>`;
this.sendReplyBox(buf);
},
processeshelp: [
`/processes - Get information about the running processes on the server. Requires: ~.`,
],
async savelearnsets(target, room, user, connection) {
this.canUseConsole();
this.sendReply("saving...");
await FS('data/learnsets.js').write(`'use strict';\n\nexports.Learnsets = {\n` +
Object.entries(Dex.data.Learnsets).map(([id, entry]) => (
`\t${id}: {learnset: {\n` +
Utils.sortBy(
Object.entries(Dex.species.getLearnsetData(id as ID).learnset!),
([moveid]) => moveid
).map(([moveid, sources]) => (
`\t\t${moveid}: ["` + sources.join(`", "`) + `"],\n`
)).join('') +
`\t}},\n`
)).join('') +
`};\n`);
this.sendReply("learnsets.js saved.");
},
savelearnsetshelp: [
`/savelearnsets - Saves the learnset list currently active on the server. Requires: ~`,
],
toggleripgrep(target, room, user) {
this.checkCan('rangeban');
Config.disableripgrep = !Config.disableripgrep;
this.addGlobalModAction(`${user.name} ${Config.disableripgrep ? 'disabled' : 'enabled'} Ripgrep-related functionality.`);
},
toggleripgrephelp: [`/toggleripgrep - Disable/enable all functionality depending on Ripgrep. Requires: ~`],
disablecommand(target, room, user) {
this.checkCan('makeroom');
if (!toID(target)) {
return this.parse(`/help disablecommand`);
}
if (['!', '/'].some(c => target.startsWith(c))) target = target.slice(1);
const parsed = Chat.parseCommand(`/${target}`);
if (!parsed) {
return this.errorReply(`Command "/${target}" is in an invalid format.`);
}
const { handler, fullCmd } = parsed;
if (!handler) {
return this.errorReply(`Command "/${target}" not found.`);
}
if (handler.disabled) {
return this.errorReply(`Command "/${target}" is already disabled`);
}
handler.disabled = true;
this.addGlobalModAction(`${user.name} disabled the command /${fullCmd}.`);
this.globalModlog(`DISABLECOMMAND`, null, target);
},
disablecommandhelp: [`/disablecommand [command] - Disables the given [command]. Requires: ~`],
widendatacenters: 'adddatacenters',
adddatacenters() {
this.errorReply("This command has been replaced by /datacenter add");
return this.parse('/help datacenters');
},
disableladder(target, room, user) {
this.checkCan('disableladder');
if (Ladders.disabled) {
return this.errorReply(`/disableladder - Ladder is already disabled.`);
}
Ladders.disabled = true;
this.modlog(`DISABLELADDER`);
Monitor.log(`The ladder was disabled by ${user.name}.`);
const innerHTML = (
`<b>Due to technical difficulties, the ladder has been temporarily disabled.</b><br />` +
`Rated games will no longer update the ladder. It will be back momentarily.`
);
for (const curRoom of Rooms.rooms.values()) {
if (curRoom.type === 'battle') curRoom.rated = 0;
curRoom.addRaw(`<div class="broadcast-red">${innerHTML}</div>`).update();
}
for (const u of Users.users.values()) {
if (u.connected) u.send(`|pm|~|${u.tempGroup}${u.name}|/raw <div class="broadcast-red">${innerHTML}</div>`);
}
},
disableladderhelp: [`/disableladder - Stops all rated battles from updating the ladder. Requires: ~`],
enableladder(target, room, user) {
this.checkCan('disableladder');
if (!Ladders.disabled) {
return this.errorReply(`/enable - Ladder is already enabled.`);
}
Ladders.disabled = false;
this.modlog('ENABLELADDER');
Monitor.log(`The ladder was enabled by ${user.name}.`);
const innerHTML = (
`<b>The ladder is now back.</b><br />` +
`Rated games will update the ladder now..`
);
for (const curRoom of Rooms.rooms.values()) {
curRoom.addRaw(`<div class="broadcast-green">${innerHTML}</div>`).update();
}
for (const u of Users.users.values()) {
if (u.connected) u.send(`|pm|~|${u.tempGroup}${u.name}|/raw <div class="broadcast-green">${innerHTML}</div>`);
}
},
enableladderhelp: [`/enable - Allows all rated games to update the ladder. Requires: ~`],
lockdown(target, room, user) {
this.checkCan('lockdown');
const disabledCommands = Chat.allCommands().filter(c => c.disabled).map(c => `/${c.fullCmd}`);
if (disabledCommands.length) {
this.sendReply(`${Chat.count(disabledCommands.length, "commands")} are disabled right now.`);
this.sendReply(`Be aware that restarting will re-enable them.`);
this.sendReply(`Currently disabled: ${disabledCommands.join(', ')}`);
}
Rooms.global.startLockdown();
this.stafflog(`${user.name} used /lockdown`);
},
lockdownhelp: [
`/lockdown - locks down the server, which prevents new battles from starting so that the server can eventually be restarted. Requires: ~`,
],
autolockdown: 'autolockdownkill',
autolockdownkill(target, room, user) {
this.checkCan('lockdown');
if (Config.autolockdown === undefined) Config.autolockdown = true;
if (this.meansYes(target)) {
if (Config.autolockdown) {
return this.errorReply("The server is already set to automatically kill itself upon the final battle finishing.");
}
Config.autolockdown = true;
this.privateGlobalModAction(`${user.name} used /autolockdownkill on (autokill on final battle finishing)`);
} else if (this.meansNo(target)) {
if (!Config.autolockdown) {
return this.errorReply("The server is already set to not automatically kill itself upon the final battle finishing.");
}
Config.autolockdown = false;
this.privateGlobalModAction(`${user.name} used /autolockdownkill off (no autokill on final battle finishing)`);
} else {
return this.parse('/help autolockdownkill');
}
},
autolockdownkillhelp: [
`/autolockdownkill on - Turns on the setting to enable the server to automatically kill itself upon the final battle finishing. Requires ~`,
`/autolockdownkill off - Turns off the setting to enable the server to automatically kill itself upon the final battle finishing. Requires ~`,
],
prelockdown(target, room, user) {
this.checkCan('lockdown');
Rooms.global.lockdown = 'pre';
this.privateGlobalModAction(`${user.name} used /prelockdown (disabled tournaments in preparation for server restart)`);
},
prelockdownhelp: [`/prelockdown - Prevents new tournaments from starting so that the server can be restarted. Requires: ~`],
slowlockdown(target, room, user) {
this.checkCan('lockdown');
Rooms.global.startLockdown(undefined, true);
this.privateGlobalModAction(`${user.name} used /slowlockdown (lockdown without auto-restart)`);
},
slowlockdownhelp: [
`/slowlockdown - Locks down the server, but disables the automatic restart after all battles end.`,
`Requires: ~`,
],
crashfixed: 'endlockdown',
endlockdown(target, room, user, connection, cmd) {
this.checkCan('lockdown');
if (!Rooms.global.lockdown) {
return this.errorReply("We're not under lockdown right now.");
}
if (Rooms.global.lockdown !== true && cmd === 'crashfixed') {
return this.errorReply('/crashfixed - There is no active crash.');
}
const message = cmd === 'crashfixed' ?
`<div class="broadcast-green"><b>We fixed the crash without restarting the server!</b></div>` :
`<div class="broadcast-green"><b>The server restart was canceled.</b></div>`;
if (Rooms.global.lockdown === true) {
for (const curRoom of Rooms.rooms.values()) {
curRoom.addRaw(message).update();
}
for (const curUser of Users.users.values()) {
curUser.send(`|pm|~|${curUser.tempGroup}${curUser.name}|/raw ${message}`);
}
} else {
this.sendReply("Preparation for the server shutdown was canceled.");
}
Rooms.global.lockdown = false;
this.stafflog(`${user.name} used /endlockdown`);
},
endlockdownhelp: [
`/endlockdown - Cancels the server restart and takes the server out of lockdown state. Requires: ~`,
`/crashfixed - Ends the active lockdown caused by a crash without the need of a restart. Requires: ~`,
],
emergency(target, room, user) {
this.checkCan('lockdown');
if (Config.emergency) {
return this.errorReply("We're already in emergency mode.");
}
Config.emergency = true;
for (const curRoom of Rooms.rooms.values()) {
curRoom.addRaw(`<div class="broadcast-red">The server has entered emergency mode. Some features might be disabled or limited.</div>`).update();
}
this.stafflog(`${user.name} used /emergency.`);
},
emergencyhelp: [
`/emergency - Turns on emergency mode and enables extra logging. Requires: ~`,
],
endemergency(target, room, user) {
this.checkCan('lockdown');
if (!Config.emergency) {
return this.errorReply("We're not in emergency mode.");
}
Config.emergency = false;
for (const curRoom of Rooms.rooms.values()) {
curRoom.addRaw(`<div class="broadcast-green"><b>The server is no longer in emergency mode.</b></div>`).update();
}
this.stafflog(`${user.name} used /endemergency.`);
},
endemergencyhelp: [
`/endemergency - Turns off emergency mode. Requires: ~`,
],
remainingbattles() {
this.checkCan('lockdown');
if (!Rooms.global.lockdown) {
return this.errorReply("The server is not under lockdown right now.");
}
const battleRooms = [...Rooms.rooms.values()].filter(x => x.battle?.rated && !x.battle?.ended);
let buf = `Total remaining rated battles: <b>${battleRooms.length}</b>`;
if (battleRooms.length > 10) buf += `<details><summary>View all battles</summary>`;
for (const battle of battleRooms) {
buf += `<br />`;
buf += `<a href="${battle.roomid}">${battle.title}</a>`;
if (battle.settings.isPrivate) buf += ' (Private)';
}
if (battleRooms.length > 10) buf += `</details>`;
this.sendReplyBox(buf);
},
remainingbattleshelp: [
`/remainingbattles - View a list of the remaining battles during lockdown. Requires: ~`,
],
async savebattles(target, room, user) {
this.checkCan('rangeban'); // admins can restart, so they should be able to do this if needed
this.sendReply(`Saving battles...`);
const count = await Rooms.global.saveBattles();
this.sendReply(`DONE.`);
this.sendReply(`${count} battles saved.`);
this.addModAction(`${user.name} used /savebattles`);
},
async kill(target, room, user) {
this.checkCan('lockdown');
let noSave = toID(target) === 'nosave';
if (!Config.usepostgres) noSave = true;
if (Rooms.global.lockdown !== true && noSave) {
return this.errorReply("For safety reasons, using /kill without saving battles can only be done during lockdown.");
}
if (Monitor.updateServerLock) {
return this.errorReply("Wait for /updateserver to finish before using /kill.");
}
if (!noSave) {
this.sendReply('Saving battles...');
Rooms.global.lockdown = true; // we don't want more battles starting while we save
for (const u of Users.users.values()) {
u.send(
`|pm|~|${u.getIdentity()}|/raw <div class="broadcast-red"><b>The server is restarting soon.</b><br />` +
`While battles are being saved, no more can be started. If you're in a battle, it will be paused during saving.<br />` +
`After the restart, you will be able to resume your battles from where you left off.`
);
}
const count = await Rooms.global.saveBattles();
this.sendReply(`DONE.`);
this.sendReply(`${count} battles saved.`);
}
const logRoom = Rooms.get('staff') || Rooms.lobby || room;
if (!logRoom?.log.roomlogStream) return process.exit();
logRoom.roomlog(`${user.name} used /kill`);
void logRoom.log.roomlogStream.writeEnd().then(() => {
process.exit();
});
// In the case the above never terminates
setTimeout(() => {
process.exit();
}, 10000);
},
killhelp: [
`/kill - kills the server. Use the argument \`nosave\` to prevent the saving of battles.`,
` If this argument is used, the server must be in lockdown. Requires: ~`,
],
loadbanlist(target, room, user, connection) {
this.checkCan('lockdown');
connection.sendTo(room, "Loading ipbans.txt...");
Punishments.loadBanlist().then(
() => connection.sendTo(room, "ipbans.txt has been reloaded."),
error => connection.sendTo(room, `Something went wrong while loading ipbans.txt: ${error}`)
);
},
loadbanlisthelp: [
`/loadbanlist - Loads the bans located at ipbans.txt. The command is executed automatically at startup. Requires: ~`,
],
refreshpage(target, room, user) {
this.checkCan('lockdown');
if (user.lastCommand !== 'refreshpage') {
user.lastCommand = 'refreshpage';
this.errorReply(`Are you sure you wish to refresh the page for every user online?`);
return this.errorReply(`If you are sure, please type /refreshpage again to confirm.`);
}
Rooms.global.sendAll('|refresh|');
this.stafflog(`${user.name} used /refreshpage`);
},
refreshpagehelp: [
`/refreshpage - refreshes the page for every user online. Requires: ~`,
],
async updateserver(target, room, user, connection) {
this.canUseConsole();
if (Monitor.updateServerLock) {
return this.errorReply(`/updateserver - Another update is already in progress (or a previous update crashed).`);
}
const validPrivateCodePath = Config.privatecodepath && path.isAbsolute(Config.privatecodepath);
target = toID(target);
Monitor.updateServerLock = true;
let success = true;
if (target === 'private') {
if (!validPrivateCodePath) {
Monitor.updateServerLock = false;
throw new Chat.ErrorMessage("`Config.privatecodepath` must be set to an absolute path before using /updateserver private.");
}
success = await updateserver(this, Config.privatecodepath);
this.addGlobalModAction(`${user.name} used /updateserver private`);
} else {
if (target !== 'public' && validPrivateCodePath) {
success = await updateserver(this, Config.privatecodepath);
}
success = success && await updateserver(this, FS.ROOT_PATH);
this.addGlobalModAction(`${user.name} used /updateserver${target === 'public' ? ' public' : ''}`);
}
this.sendReply(success ? `DONE` : `FAILED, old changes restored.`);
Monitor.updateServerLock = false;
},
updateserverhelp: [
`/updateserver - Updates the server's code from its Git repository, including private code if present. Requires: console access`,
`/updateserver private - Updates only the server's private code. Requires: console access`,
],
async updateloginserver(target, room, user) {
this.canUseConsole();
this.sendReply('Restarting...');
const [result, err] = await LoginServer.request('restart');
if (err) {
Rooms.global.notifyRooms(
['staff', 'development'],
`|c|${user.getIdentity()}|/log ${user.name} used /updateloginserver - but something failed while updating.`
);
return this.errorReply(`${err.message}\n${err.stack}`);
}
if (!result) return this.errorReply('No result received.');
this.stafflog(`[o] ${result.success || ""} [e] ${result.actionerror || ""}`);
if (result.actionerror) {
return this.errorReply(result.actionerror);
}
let message = `${user.name} used /updateloginserver`;
if (result.updated) {
this.sendReply(`DONE. Server updated and restarted.`);
} else {
message += ` - but something failed while updating.`;
this.errorReply(`FAILED. Conflicts were found while updating - the restart was aborted.`);
}
Rooms.global.notifyRooms(
['staff', 'development'], `|c|${user.getIdentity()}|/log ${message}`
);
},
updateloginserverhelp: [
`/updateloginserver - Updates and restarts the loginserver. Requires: console access`,
],
async updateclient(target, room, user) {
this.canUseConsole();
this.sendReply('Restarting...');
const [result, err] = await LoginServer.request('rebuildclient', {
full: toID(target) === 'full',
});
if (err) {
Rooms.global.notifyRooms(
['staff', 'development'],
`|c|${user.getIdentity()}|/log ${user.name} used /updateclient - but something failed while updating.`
);
return this.errorReply(`${err.message}\n${err.stack}`);
}
if (!result) return this.errorReply('No result received.');
this.stafflog(`[o] ${result.success || ""} [e] ${result.actionerror || ""}`);
if (result.actionerror) {
return this.errorReply(result.actionerror);
}
let message = `${user.name} used /updateclient`;
if (result.updated) {
this.sendReply(`DONE. Client updated.`);
} else {
message += ` - but something failed while updating.`;
this.errorReply(`FAILED. Conflicts were found while updating.`);
}
Rooms.global.notifyRooms(
['staff', 'development'], `|c|${user.getIdentity()}|/log ${message}`
);
},
updateclienthelp: [
`/updateclient [full] - Update the client source code. Provide the argument 'full' to make it a full rebuild.`,
`Requires: ~ console access`,
],
async rebuild() {
this.canUseConsole();
const [, , stderr] = await bash('node ./build', this);
if (stderr) {
throw new Chat.ErrorMessage(`Crash while rebuilding: ${stderr}`);
}
this.sendReply('Rebuilt.');
},
/*********************************************************
* Low-level administration commands
*********************************************************/
async bash(target, room, user, connection) {
this.canUseConsole();
if (!target) return this.parse('/help bash');
this.sendReply(`$ ${target}`);
const [, stdout, stderr] = await bash(target, this);
this.runBroadcast();
this.sendReply(`${stdout}${stderr}`);
},
bashhelp: [`/bash [command] - Executes a bash command on the server. Requires: ~ console access`],
async eval(target, room, user, connection) {
this.canUseConsole();
if (!this.runBroadcast(true)) return;
const logRoom = Rooms.get('upperstaff') || Rooms.get('staff');
if (this.message.startsWith('>>') && room) {
this.broadcasting = true;
this.broadcastToRoom = true;
}
const generateHTML = (direction: string, contents: string) => (
`<table border="0" cellspacing="0" cellpadding="0"><tr><td valign="top">` +
Utils.escapeHTML(direction).repeat(2) +
` </td><td>${Chat.getReadmoreCodeBlock(contents)}</td></tr><table>`
);
this.sendReply(`|html|${generateHTML('>', target)}`);
logRoom?.roomlog(`>> ${target}`);
let uhtmlId = null;
try {
/* eslint-disable no-eval, @typescript-eslint/no-unused-vars */
const battle = room?.battle;
const me = user;
let result = eval(target);
/* eslint-enable no-eval, @typescript-eslint/no-unused-vars */
if (result?.then) {
uhtmlId = `eval-${Date.now().toString().slice(-6)}-${Math.random().toFixed(6).slice(-6)}`;
this.sendReply(`|uhtml|${uhtmlId}|${generateHTML('<', 'Promise pending')}`);
this.update();
result = `Promise -> ${Utils.visualize(await result)}`;
this.sendReply(`|uhtmlchange|${uhtmlId}|${generateHTML('<', result)}`);
} else {
result = Utils.visualize(result);
this.sendReply(`|html|${generateHTML('<', result)}`);
}
logRoom?.roomlog(`<< ${result}`);
} catch (e: any) {
const message = `${e.stack}`.replace(/\n *at CommandContext\.eval [\s\S]*/m, '');
const command = uhtmlId ? `|uhtmlchange|${uhtmlId}|` : '|html|';
this.sendReply(`${command}${generateHTML('<', message)}`);
logRoom?.roomlog(`<< ${message}`);
}
},
evalhelp: [
`/eval [code] - Evaluates the code given and shows results. Requires: ~ console access.`,
],
async evalsql(target, room) {
this.canUseConsole();
this.runBroadcast(true);
if (!Config.usesqlite) return this.errorReply(`SQLite is disabled.`);
const logRoom = Rooms.get('upperstaff') || Rooms.get('staff');
if (!target) return this.errorReply(`Specify a database to access and a query.`);
const [db, query] = Utils.splitFirst(target, ',').map(item => item.trim());
if (!FS('./databases').readdirSync().includes(`${db}.db`)) {
return this.errorReply(`The database file ${db}.db was not found.`);
}
if (room && this.message.startsWith('>>sql')) {
this.broadcasting = true;
this.broadcastToRoom = true;
}
this.sendReply(
`|html|<table border="0" cellspacing="0" cellpadding="0"><tr><td valign="top">SQLite> [${db}.db] </td>` +
`<td>${Chat.getReadmoreCodeBlock(query)}</td></tr><table>`
);
logRoom?.roomlog(`SQLite> ${target}`);
const database = SQL(module, {
file: `./databases/${db}.db`,
onError(err) {
return { err: err.message, stack: err.stack };
},
});
function formatResult(result: any[] | string) {
if (!Array.isArray(result)) {
return (
`<table border="0" cellspacing="0" cellpadding="0"><tr><td valign="top">` +
`SQLite< </td><td>${Chat.getReadmoreCodeBlock(result)}</td></tr><table>`
);
}
let buffer = '<div class="ladder pad" style="overflow-x: auto;"><table><tr><th>';
// header
if (!result.length) {
buffer += `No data in table.</th></tr>`;
return buffer;
}
buffer += Object.keys(result[0]).join('</th><th>');
buffer += `</th></tr><tr>`;
buffer += result.map(item => (
`<td>${Object.values(item).map(val => Utils.escapeHTML(val as string)).join('</td><td>')}</td>`
)).join('</tr><tr>');
buffer += `</tr></table></div>`;
return buffer;
}
function parseError(res: any): never {
const err = new Error(res.err);
err.stack = res.stack;
throw err;
}
let result;
try {
// presume it's attempting to get data first
result = await database.all(query, []);
if ((result as any).err) parseError(result as any);
} catch (err: any) {
// it's not getting data, but it might still be a valid statement - try to run instead
if (err.stack?.includes(`Use run() instead`)) {
try {
result = await database.run(query, []);
if ((result as any).err) parseError(result as any);
result = Utils.visualize(result);
} catch (e: any) {
result = `${e.stack}`.replace(/\n *at CommandContext\.evalsql [\s\S]*/m, '');
}
} else {
result = `${err.stack}`.replace(/\n *at CommandContext\.evalsql [\s\S]*/m, '');
}
}
await database.destroy();
const formattedResult = `|html|${formatResult(result)}`;
logRoom?.roomlog(formattedResult);
this.sendReply(formattedResult);
},
evalsqlhelp: [
`/evalsql [database], [query] - Evaluates the given SQL [query] in the given [database].`,
`Requires: ~ console access`,
],
evalbattle(target, room, user, connection) {
room = this.requireRoom();
this.canUseConsole();
if (!this.runBroadcast(true)) return;
if (!room.battle) {
return this.errorReply("/evalbattle - This isn't a battle room.");
}
void room.battle.stream.write(`>eval ${target.replace(/\n/g, '\f')}`);
},
evalbattlehelp: [
`/evalbattle [code] - Evaluates the code in the battle stream of the current room. Requires: ~ console access.`,
],
ebat: 'editbattle',
editbattle(target, room, user) {
room = this.requireRoom();
this.checkCan('forcewin');
if (!target) return this.parse('/help editbattle');
if (!room.battle) {
this.errorReply("/editbattle - This is not a battle room.");
return false;
}
const battle = room.battle;
let cmd;
[cmd, target] = Utils.splitFirst(target, ' ');
if (cmd.endsWith(',')) cmd = cmd.slice(0, -1);
const targets = target.split(',');
if (targets.length === 1 && targets[0] === '') targets.pop();
let player, pokemon, move, stat, value;
switch (cmd) {
case 'hp':
case 'h':
if (targets.length !== 3) {
this.errorReply("Incorrect command use");
return this.parse('/help editbattle');
}
[player, pokemon, value] = targets.map(f => f.trim());
[player, pokemon] = [player, pokemon].map(toID);
void battle.stream.write(
`>eval let p=pokemon('${player}', '${pokemon}');p.sethp(${parseInt(value)});` +
`if (p.isActive)battle.add('-damage',p,p.getHealth);`
);
break;
case 'status':
case 's':
if (targets.length !== 3) {
this.errorReply("Incorrect command use");
return this.parse('/help editbattle');
}
[player, pokemon, value] = targets.map(toID);
void battle.stream.write(
`>eval let pl=player('${player}');let p=pokemon(pl,'${pokemon}');p.setStatus('${value}');if (!p.isActive){battle.add('','please ignore the above');battle.add('-status',pl.active[0],pl.active[0].status,'[silent]');}`
);
break;
case 'pp':
if (targets.length !== 4) {
this.errorReply("Incorrect command use");
return this.parse('/help editbattle');
}
[player, pokemon, move, value] = targets.map(f => f.trim());
[player, pokemon, move] = [player, pokemon, move].map(toID);
void battle.stream.write(
`>eval pokemon('${player}','${pokemon}').getMoveData('${move}').pp = ${parseInt(value)};`
);
break;
case 'boost':
case 'b':
if (targets.length !== 4) {
this.errorReply("Incorrect command use");
return this.parse('/help editbattle');
}
[player, pokemon, stat, value] = targets.map(f => f.trim());
[player, pokemon, stat] = [player, pokemon, stat].map(toID);
void battle.stream.write(
`>eval let p=pokemon('${player}','${pokemon}');battle.boost({${stat}:${parseInt(value)}},p)`
);
break;
case 'volatile':
case 'v':
if (targets.length !== 3) {
this.errorReply("Incorrect command use");
return this.parse('/help editbattle');
}
[player, pokemon, value] = targets.map(toID);
void battle.stream.write(
`>eval pokemon('${player}','${pokemon}').addVolatile('${value}')`
);
break;
case 'sidecondition':
case 'sc':
if (targets.length !== 2) {
this.errorReply("Incorrect command use");
return this.parse('/help editbattle');
}
[player, value] = targets.map(toID);
void battle.stream.write(`>eval player('${player}').addSideCondition('${value}', 'debug')`);
break;
case 'fieldcondition': case 'pseudoweather':
case 'fc':
if (targets.length !== 1) {
this.errorReply("Incorrect command use");
return this.parse('/help editbattle');
}
[value] = targets.map(toID);
void battle.stream.write(`>eval battle.field.addPseudoWeather('${value}', 'debug')`);
break;
case 'weather':
case 'w':
if (targets.length !== 1) {
this.errorReply("Incorrect command use");
return this.parse('/help editbattle');
}
[value] = targets.map(toID);
void battle.stream.write(`>eval battle.field.setWeather('${value}', 'debug')`);
break;
case 'terrain':
case 't':
if (targets.length !== 1) {
this.errorReply("Incorrect command use");
return this.parse('/help editbattle');
}
[value] = targets.map(toID);
void battle.stream.write(`>eval battle.field.setTerrain('${value}', 'debug')`);
break;
case 'reseed':
if (targets.length !== 0) {
if (targets.length !== 4) {
this.errorReply("Seed must have 4 parts");
return this.parse('/help editbattle');
}
// this just tests for a 5-digit number, close enough to uint16
if (!targets.every(val => /^[0-9]{1,5}$/.test(val))) {
this.errorReply("Seed parts much be unsigned 16-bit integers");
return this.parse('/help editbattle');
}
}
void battle.stream.write(`>reseed ${targets.join(',')}`);
if (targets.length) this.sendReply(`Reseeded to ${targets.join(',')}`);
break;
default:
this.errorReply(`Unknown editbattle command: ${cmd}`);
return this.parse('/help editbattle');
}
},
editbattlehelp: [
`/editbattle hp [player], [pokemon], [hp]`,
`/editbattle status [player], [pokemon], [status]`,
`/editbattle pp [player], [pokemon], [move], [pp]`,
`/editbattle boost [player], [pokemon], [stat], [amount]`,
`/editbattle volatile [player], [pokemon], [volatile]`,
`/editbattle sidecondition [player], [sidecondition]`,
`/editbattle fieldcondition [fieldcondition]`,
`/editbattle weather [weather]`,
`/editbattle terrain [terrain]`,
`/editbattle reseed [optional seed]`,
`Short forms: /ebat h OR s OR pp OR b OR v OR sc OR fc OR w OR t`,
`[player] must be a username or number, [pokemon] must be species name or party slot number (not nickname), [move] must be move name.`,
],
};
export const pages: Chat.PageTable = {
bot(args, user, connection) {
const [botid, ...pageArgs] = args;
const pageid = pageArgs.join('-');
if (pageid.length > 300) {
return this.errorReply(`The page ID specified is too long.`);
}
const bot = Users.get(botid);
if (!bot) {
return `<div class="pad"><h2>The bot "${bot}" is not available.</h2></div>`;
}
let canSend = Users.globalAuth.get(bot) === '*';
let room;
for (const curRoom of Rooms.global.chatRooms) {
if (['*', '#'].includes(curRoom.auth.getDirect(bot.id))) {
canSend = true;
room = curRoom;
}
}
if (!canSend) {
return `<div class="pad"><h2>"${bot}" is not a bot.</h2></div>`;
}
connection.lastRequestedPage = `${bot.id}-${pageid}`;
bot.sendTo(
room ? room.roomid : 'lobby',
`|pm|${user.getIdentity()}|${bot.getIdentity()}||requestpage|${user.name}|${pageid}`
);
},
};
|