Compare commits
112 Commits
bugfix/mis
...
master
Author | SHA1 | Date |
---|---|---|
Bryan Ashby | 6aa0c8679f | |
Nathan Byrd | 6b169de3ac | |
Nathan Byrd | 362f443290 | |
Nathan Byrd | 8a97f79d8c | |
Nathan Byrd | f17bbe7c5a | |
Bryan Ashby | 8c7df1fe75 | |
Bryan Ashby | b00d5d07dd | |
Bryan Ashby | bbfef536e0 | |
Bryan Ashby | 83636cb894 | |
Bryan Ashby | ca985dd2cb | |
Bryan Ashby | b87ff51160 | |
Bryan Ashby | 746233fa56 | |
Bryan Ashby | c84b3ee1c1 | |
Nathan Byrd | 270c09eb80 | |
Nathan Byrd | f5b0a8bb60 | |
Bryan Ashby | 1a99153431 | |
Nathan Byrd | 88a1b0ea69 | |
Nathan Byrd | 498c4a6082 | |
Nathan Byrd | 577992bbe5 | |
Bryan Ashby | db8bd2f80f | |
anthony | 0161c22401 | |
Nathan Byrd | 402c5d0156 | |
anthony | 5998144071 | |
anthony | d12b0789aa | |
Bryan Ashby | a644672de2 | |
Bryan Ashby | b0542cf51e | |
Nathan Byrd | 0ca22de6e9 | |
Nathan Byrd | 394ac465c8 | |
anthony | 2b6494cfc9 | |
Nathan Byrd | dddbad4541 | |
Nathan Byrd | 1d31b268aa | |
anthony | 0e09ce491c | |
anthony | a6196c38ec | |
Nathan Byrd | 450ba65565 | |
Bryan Ashby | fc107f1552 | |
anthony | f719499c65 | |
anthony | 75fa2026c0 | |
anthony | 5180447e87 | |
Nathan Byrd | 72a8546d74 | |
Bryan Ashby | 19ee4b0553 | |
dependabot[bot] | d3cf82b563 | |
Nathan Byrd | 79a3f4e1ce | |
Nathan Byrd | c0c262c971 | |
Nathan Byrd | 826db2d718 | |
Nathan Byrd | f3c9afc684 | |
Nathan Byrd | 372d84f572 | |
Nathan Byrd | 8029521399 | |
Bryan Ashby | 86049353a9 | |
Nathan Byrd | 855fabe34d | |
anthony | 6748b8966e | |
Nathan Byrd | 5712645299 | |
Nathan Byrd | a99b55abb5 | |
Nathan Byrd | d8f45f9147 | |
Nathan Byrd | 08841528e2 | |
Bryan Ashby | 5e120d1749 | |
Nathan Byrd | 06c3d100d7 | |
Nathan Byrd | 3adbb517e8 | |
Bryan Ashby | bfb6a30860 | |
Nathan Byrd | e87e7ad277 | |
Bryan Ashby | e2bb00b756 | |
Bryan Ashby | f4a90900ae | |
Bryan Ashby | b307e791c3 | |
Nathan Byrd | 6fb77f3a5f | |
Bryan Ashby | e8441408c0 | |
Nathan Byrd | 60ee842c71 | |
Bryan Ashby | de918dd338 | |
Bryan Ashby | 367931cbd6 | |
Bryan Ashby | 1af4a0432b | |
Nathan Byrd | 1bd328452b | |
Nathan Byrd | c2d7abc94e | |
Nathan Byrd | 602d693caf | |
Nathan Byrd | 5f0a03638e | |
Nathan Byrd | 8a6506c475 | |
Bryan Ashby | 97ae34a971 | |
Bryan Ashby | de339c9c52 | |
Nathan Byrd | 82c05c6e69 | |
Nathan Byrd | 5ba1ca1464 | |
Bryan Ashby | 3e1ec4477c | |
Nathan Byrd | 13ae7789a5 | |
Nathan Byrd | 80dcc14a50 | |
Nathan Byrd | 1d00482b02 | |
Nathan Byrd | adc2e1ba98 | |
Nathan Byrd | 8758722b6b | |
Nathan Byrd | 4d70f07fde | |
Nathan Byrd | bf0bf83053 | |
Nathan Byrd | 7d46607ddc | |
Nathan Byrd | ccaaa71e23 | |
Nathan Byrd | 0b157ddd1b | |
Bryan Ashby | 5a4563c799 | |
Bryan Ashby | 9205aaa9ee | |
Bryan Ashby | b11ddfc382 | |
Bryan Ashby | 993bdbe484 | |
Bryan Ashby | 7b4910c415 | |
Bryan Ashby | 18678d3e4d | |
Bryan Ashby | c87543c976 | |
Bryan Ashby | 25e4de5384 | |
Bryan Ashby | c6a6c06972 | |
Bryan Ashby | c12deb86ae | |
Bryan Ashby | 2d1cbac390 | |
Bryan Ashby | 08adf7ccb5 | |
dependabot[bot] | 5857f46d11 | |
dependabot[bot] | a1242b51aa | |
Bryan Ashby | f32bf090fb | |
dependabot[bot] | 8e904f589d | |
Bryan Ashby | 02f91b2621 | |
Bryan Ashby | 1cfbf4fb66 | |
Bryan Ashby | 614fa2d096 | |
Bryan Ashby | f99de19792 | |
dependabot[bot] | c39cd613ef | |
dependabot[bot] | 7cbe619235 | |
dependabot[bot] | ddf412d34c | |
dependabot[bot] | 1bf7617404 |
|
@ -0,0 +1,9 @@
|
||||||
|
FROM library/node:lts-bookworm
|
||||||
|
|
||||||
|
ARG DEBIAN_FRONTEND=noninteractive
|
||||||
|
RUN apt update \
|
||||||
|
&& apt install -y --no-install-recommends sudo telnet \
|
||||||
|
&& apt autoremove -y \
|
||||||
|
&& rm -rf /var/lib/apt/lists/* \
|
||||||
|
&& echo "node ALL=(ALL) NOPASSWD: ALL" >/etc/sudoers.d/node \
|
||||||
|
&& chmod 0440 /etc/sudoers.d/node
|
|
@ -0,0 +1,24 @@
|
||||||
|
{
|
||||||
|
"name": "Basic Node.js",
|
||||||
|
"build": { "dockerfile": "Dockerfile" },
|
||||||
|
"remoteUser": "root",
|
||||||
|
"forwardPorts": [8888, 4000],
|
||||||
|
"postCreateCommand": "gem install jekyll bundler && /bin/rm -rf node_modules && npm install && cd docs && bundle install && cd ..",
|
||||||
|
"features": {
|
||||||
|
"ghcr.io/devcontainers/features/python:1": {
|
||||||
|
"installTools": true,
|
||||||
|
"version": "3.11"
|
||||||
|
},
|
||||||
|
"ghcr.io/devcontainers-contrib/features/curl-apt-get:1": {},
|
||||||
|
"ghcr.io/jungaretti/features/ripgrep:1": {},
|
||||||
|
"ghcr.io/warrenbuckley/codespace-features/sqlite:1": {},
|
||||||
|
"ghcr.io/devcontainers/features/ruby:1": {
|
||||||
|
"version": "3.1"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"customizations": {
|
||||||
|
"vscode": {
|
||||||
|
"extensions": ["ms-azuretools.vscode-docker","alexcvzz.vscode-sqlite","yzhang.markdown-all-in-one", "DavidAnson.vscode-markdownlint", "christian-kohler.npm-intellisense", "dbaeumer.vscode-eslint", "bierner.markdown-yaml-preamble"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,12 @@
|
||||||
|
node_modules
|
||||||
|
package-lock.json
|
||||||
|
yarn.lock
|
||||||
|
|
||||||
|
filebase
|
||||||
|
db
|
||||||
|
drop
|
||||||
|
file_base
|
||||||
|
logs
|
||||||
|
mail
|
||||||
|
docs/_site
|
||||||
|
docs/.sass-cache
|
|
@ -6,3 +6,13 @@
|
||||||
*.TXT eol=crlf
|
*.TXT eol=crlf
|
||||||
*.diz eol=crlf
|
*.diz eol=crlf
|
||||||
*.DIZ eol=crlf
|
*.DIZ eol=crlf
|
||||||
|
|
||||||
|
# Don't mess with shell script line endings
|
||||||
|
*.sh text eol=lf
|
||||||
|
|
||||||
|
# Same thing for optutil.js which functions as a shell script
|
||||||
|
optutil.js text eol=lf
|
||||||
|
|
||||||
|
# The devcontainer is also unix
|
||||||
|
.devcontainer/Dockerfile text eol=lf
|
||||||
|
.devcontainer/devcontainer.json text eol=lf
|
|
@ -11,25 +11,25 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v1
|
uses: docker/setup-qemu-action@v3
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
id: buildx
|
id: buildx
|
||||||
uses: docker/setup-buildx-action@v1
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
- name: Login to DockerHub
|
- name: Login to DockerHub
|
||||||
uses: docker/login-action@v1
|
uses: docker/login-action@v2
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Build and push
|
- name: Build and push
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v3
|
||||||
with:
|
with:
|
||||||
tags: enigmabbs/enigma-bbs:latest
|
tags: enigmabbs/enigma-bbs:latest
|
||||||
file: docker/Dockerfile
|
file: docker/Dockerfile
|
||||||
platforms: linux/amd64,linux/arm64
|
platforms: linux/amd64,linux/arm64,linux/arm/v7
|
||||||
push: true
|
push: true
|
|
@ -11,4 +11,5 @@ mail/
|
||||||
node_modules/
|
node_modules/
|
||||||
docs/_site/
|
docs/_site/
|
||||||
docs/.sass-cache/
|
docs/.sass-cache/
|
||||||
.vscode/
|
|
||||||
|
docs/.jekyll-cache/
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"recommendations": [
|
||||||
|
"ms-vscode-remote.remote-containers",
|
||||||
|
"laktak.hjson"
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,26 @@
|
||||||
|
{
|
||||||
|
"version": "2.0.0",
|
||||||
|
"tasks": [
|
||||||
|
{
|
||||||
|
"label": "Start Jekyll (ENiGMA½ documentation server)",
|
||||||
|
"command": "cd docs && bundle exec jekyll serve",
|
||||||
|
"isBackground": true,
|
||||||
|
"type": "shell"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "(re)build Jekyll bundles",
|
||||||
|
"command": "cd docs && bundle install",
|
||||||
|
"type": "shell"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "(re)build node modules",
|
||||||
|
"command": "/bin/rm -rf node_modules && npm install",
|
||||||
|
"type": "shell"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "ENiGMA½ new configuration",
|
||||||
|
"command": "./oputil.js config new",
|
||||||
|
"type": "shell"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -35,6 +35,10 @@ npm install # or simply 'yarn'
|
||||||
|
|
||||||
## 0.0.13-beta to 0.0.14-beta
|
## 0.0.13-beta to 0.0.14-beta
|
||||||
|
|
||||||
|
* Due to changes to supported algorithms in newer versions of openssl, the default list of supported algorithms for the ssh login server has changed. There are both removed ciphers as well as optional new kex algorithms available now. ***NOTE:*** Changes to supported algorithms are only needed to support keys generated with new versions of openssl, if you already have a ssl key in use you should not have to make any changes to your config.
|
||||||
|
* Removed ciphers: 'blowfish-cbc', 'arcfour256', 'arcfour128', and 'cast128-cbc'
|
||||||
|
* Added kex: 'curve25519-sha256', 'curve25519-sha256@libssh.org', 'curve25519-sha256', 'curve25519-sha256@libssh.org', 'ecdh-sha2-nistp256', 'ecdh-sha2-nistp384', 'ecdh-sha2-nistp521'
|
||||||
|
|
||||||
## 0.0.12-beta to 0.0.13-beta
|
## 0.0.12-beta to 0.0.13-beta
|
||||||
* To enable the new Waiting for Caller (WFC) support, please see [WFC](docs/modding/wfc.md).
|
* To enable the new Waiting for Caller (WFC) support, please see [WFC](docs/modding/wfc.md).
|
||||||
* :exclamation: The SSH server's `ssh2` module has gone through a major upgrade. Existing users will need to comment out two SSH KEX algorithms from their `config.hjson` if present else clients such as NetRunner will not be able to connect over SSH. Comment out `diffie-hellman-group-exchange-sha256` and `diffie-hellman-group-exchange-sha1`
|
* :exclamation: The SSH server's `ssh2` module has gone through a major upgrade. Existing users will need to comment out two SSH KEX algorithms from their `config.hjson` if present else clients such as NetRunner will not be able to connect over SSH. Comment out `diffie-hellman-group-exchange-sha256` and `diffie-hellman-group-exchange-sha1`
|
||||||
|
|
|
@ -8,6 +8,9 @@ This document attempts to track **major** changes and additions in ENiGMA½. For
|
||||||
* Routes for the file base now default to `/_f/` prefixed instead of just `/f/`. If `/f/` is in your `config.hjson` you are encouraged to update it!
|
* Routes for the file base now default to `/_f/` prefixed instead of just `/f/`. If `/f/` is in your `config.hjson` you are encouraged to update it!
|
||||||
* Finally, the system will search for `index.html` and `index.htm` in that order, if another suitable route cannot be established.
|
* Finally, the system will search for `index.html` and `index.htm` in that order, if another suitable route cannot be established.
|
||||||
* CombatNet has shut down, so the module (`combatnet.js`) has been removed.
|
* CombatNet has shut down, so the module (`combatnet.js`) has been removed.
|
||||||
|
* The Menu Flag `popParent` has been removed and `noHistory` has been updated to work as expected. In general things should "Just Work", but check your `menu.hjson` entries if you see menu stack issues.
|
||||||
|
* Various New User Application (NUA) properties are now optional. If you would like to reduce the information users are required, remove optional fields from NUA artwork and collect less. These properties will be stored as "" (empty). Optional properties are as follows: Real name, Birth date, Sex, Location, Affiliations (Affils), Email, and Web address.
|
||||||
|
* Art handling has been changed to respect the art width contained in SAUCE when present in the case where the terminal width is greater than the art width. This fixes art files that assume wrapping at 80 columns on wide (mostly new utf8) terminals.
|
||||||
|
|
||||||
## 0.0.13-beta
|
## 0.0.13-beta
|
||||||
* **Note for contributors**: ENiGMA has switched to [Prettier](https://prettier.io) for formatting/style. Please see [CONTRIBUTING](CONTRIBUTING.md) and the Prettier website for more information.
|
* **Note for contributors**: ENiGMA has switched to [Prettier](https://prettier.io) for formatting/style. Please see [CONTRIBUTING](CONTRIBUTING.md) and the Prettier website for more information.
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -187,7 +187,7 @@
|
||||||
}
|
}
|
||||||
mci: {
|
mci: {
|
||||||
VM1: {
|
VM1: {
|
||||||
height: 15,
|
height: 14
|
||||||
width: 50
|
width: 50
|
||||||
itemFormat: "|00|11{userName:<17.17}|03{affils:<21.21}|11{location:<19.19}|03{lastLoginTs}"
|
itemFormat: "|00|11{userName:<17.17}|03{affils:<21.21}|11{location:<19.19}|03{lastLoginTs}"
|
||||||
focusItemFormat: "|00|19|15{userName:<17.17}{affils:<21.21}{location:<19.19}{lastLoginTs}"
|
focusItemFormat: "|00|19|15{userName:<17.17}{affils:<21.21}{location:<19.19}{lastLoginTs}"
|
||||||
|
@ -343,7 +343,7 @@
|
||||||
}
|
}
|
||||||
mci: {
|
mci: {
|
||||||
VM1: {
|
VM1: {
|
||||||
height: 14
|
height: 13
|
||||||
width: 70
|
width: 70
|
||||||
itemFormat: "|00|15{msgNum:>4} |03{subject:<28.27} |11{fromUserName:<20.20} |03{ts:<15.16} |15{newIndicator}"
|
itemFormat: "|00|15{msgNum:>4} |03{subject:<28.27} |11{fromUserName:<20.20} |03{ts:<15.16} |15{newIndicator}"
|
||||||
focusItemFormat: "|00|19|15{msgNum:>4} {subject:<28.27} {fromUserName:<20.20} {ts:<15.16} {newIndicator}"
|
focusItemFormat: "|00|19|15{msgNum:>4} {subject:<28.27} {fromUserName:<20.20} {ts:<15.16} {newIndicator}"
|
||||||
|
@ -416,7 +416,7 @@
|
||||||
}
|
}
|
||||||
mci: {
|
mci: {
|
||||||
VM1: {
|
VM1: {
|
||||||
height: 14
|
height: 12
|
||||||
width: 70
|
width: 70
|
||||||
itemFormat: "|00|15{msgNum:>4} |03{subject:<28.27} |11{fromUserName:<20.20} |03{ts} |15{newIndicator}"
|
itemFormat: "|00|15{msgNum:>4} |03{subject:<28.27} |11{fromUserName:<20.20} |03{ts} |15{newIndicator}"
|
||||||
focusItemFormat: "|00|19|15{msgNum:>4} {subject:<28.27} {fromUserName:<20.20} {ts} {newIndicator}"
|
focusItemFormat: "|00|19|15{msgNum:>4} {subject:<28.27} {fromUserName:<20.20} {ts} {newIndicator}"
|
||||||
|
@ -618,7 +618,7 @@
|
||||||
}
|
}
|
||||||
mci: {
|
mci: {
|
||||||
VM1: {
|
VM1: {
|
||||||
height: 16
|
height: 12
|
||||||
width: 71
|
width: 71
|
||||||
itemFormat: "|00|15 {msgNum:<4.4} |03{subject:<34.33} {fromUserName:<19.18} |03{ts:<12.12}"
|
itemFormat: "|00|15 {msgNum:<4.4} |03{subject:<34.33} {fromUserName:<19.18} |03{ts:<12.12}"
|
||||||
focusItemFormat: "|00|19> |15{msgNum:<4.4} {subject:<34.33} {fromUserName:<19.18} {ts:<12.12}"
|
focusItemFormat: "|00|19> |15{msgNum:<4.4} {subject:<34.33} {fromUserName:<19.18} {ts:<12.12}"
|
||||||
|
@ -783,7 +783,7 @@
|
||||||
}
|
}
|
||||||
mci: {
|
mci: {
|
||||||
VM1: {
|
VM1: {
|
||||||
height: 14
|
height: 12
|
||||||
width: 70
|
width: 70
|
||||||
itemFormat: "|00|15 {msgNum:<5.5}|03{subject:<28.27} |15{fromUserName:<20.20} {ts}"
|
itemFormat: "|00|15 {msgNum:<5.5}|03{subject:<28.27} |15{fromUserName:<20.20} {ts}"
|
||||||
focusItemFormat: "|00|19> |15{msgNum:<5.5}{subject:<28.27} {fromUserName:<20.20} {ts}"
|
focusItemFormat: "|00|19> |15{msgNum:<5.5}{subject:<28.27} {fromUserName:<20.20} {ts}"
|
||||||
|
@ -1214,7 +1214,7 @@
|
||||||
2: {
|
2: {
|
||||||
mci: {
|
mci: {
|
||||||
MT1: {
|
MT1: {
|
||||||
height: 14
|
height: 13
|
||||||
width: 45
|
width: 45
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -505,9 +505,9 @@ class Achievements {
|
||||||
getFormatObject(info) {
|
getFormatObject(info) {
|
||||||
return {
|
return {
|
||||||
userName: info.user.username,
|
userName: info.user.username,
|
||||||
userRealName: info.user.properties[UserProps.RealName],
|
userRealName: info.user.realName(false) || 'N/A',
|
||||||
userLocation: info.user.properties[UserProps.Location],
|
userLocation: info.user.properties[UserProps.Location] || 'N/A',
|
||||||
userAffils: info.user.properties[UserProps.Affiliations],
|
userAffils: info.user.properties[UserProps.Affiliations] || 'N/A',
|
||||||
nodeId: info.client.node,
|
nodeId: info.client.node,
|
||||||
title: info.details.title,
|
title: info.details.title,
|
||||||
//text : info.global ? info.details.globalText : info.details.text,
|
//text : info.global ? info.details.globalText : info.details.text,
|
||||||
|
|
|
@ -24,7 +24,7 @@ function ANSIEscapeParser(options) {
|
||||||
this.graphicRendition = {};
|
this.graphicRendition = {};
|
||||||
|
|
||||||
this.parseState = {
|
this.parseState = {
|
||||||
re: /(?:\x1b\x5b)([?=;0-9]*?)([ABCDHJKfhlmnpsu])/g, // eslint-disable-line no-control-regex
|
re: /(?:\x1b)(?:(?:\x5b([?=;0-9]*?)([ABCDEFGfHJKLmMsSTuUYZt@PXhlnpt]))|([78DEHM]))/g, // eslint-disable-line no-control-regex
|
||||||
};
|
};
|
||||||
|
|
||||||
options = miscUtil.valueWithDefault(options, {
|
options = miscUtil.valueWithDefault(options, {
|
||||||
|
@ -37,6 +37,12 @@ function ANSIEscapeParser(options) {
|
||||||
this.mciReplaceChar = miscUtil.valueWithDefault(options.mciReplaceChar, '');
|
this.mciReplaceChar = miscUtil.valueWithDefault(options.mciReplaceChar, '');
|
||||||
this.termHeight = miscUtil.valueWithDefault(options.termHeight, 25);
|
this.termHeight = miscUtil.valueWithDefault(options.termHeight, 25);
|
||||||
this.termWidth = miscUtil.valueWithDefault(options.termWidth, 80);
|
this.termWidth = miscUtil.valueWithDefault(options.termWidth, 80);
|
||||||
|
this.breakWidth = this.termWidth;
|
||||||
|
// toNumber takes care of null, undefined etc as well.
|
||||||
|
let artWidth = _.toNumber(options.artWidth);
|
||||||
|
if(!(_.isNaN(artWidth)) && artWidth > 0 && artWidth < this.breakWidth) {
|
||||||
|
this.breakWidth = options.artWidth;
|
||||||
|
}
|
||||||
this.trailingLF = miscUtil.valueWithDefault(options.trailingLF, 'default');
|
this.trailingLF = miscUtil.valueWithDefault(options.trailingLF, 'default');
|
||||||
|
|
||||||
this.row = Math.min(options?.startRow ?? 1, this.termHeight);
|
this.row = Math.min(options?.startRow ?? 1, this.termHeight);
|
||||||
|
@ -71,10 +77,25 @@ function ANSIEscapeParser(options) {
|
||||||
self.clearScreen = function () {
|
self.clearScreen = function () {
|
||||||
self.column = 1;
|
self.column = 1;
|
||||||
self.row = 1;
|
self.row = 1;
|
||||||
|
self.positionUpdated();
|
||||||
self.emit('clear screen');
|
self.emit('clear screen');
|
||||||
};
|
};
|
||||||
|
|
||||||
self.positionUpdated = function () {
|
self.positionUpdated = function () {
|
||||||
|
if(self.row > self.termHeight) {
|
||||||
|
if(this.savedPosition) {
|
||||||
|
this.savedPosition.row -= self.row - self.termHeight;
|
||||||
|
}
|
||||||
|
self.emit('scroll', self.row - self.termHeight);
|
||||||
|
self.row = self.termHeight;
|
||||||
|
}
|
||||||
|
else if(self.row < 1) {
|
||||||
|
if(this.savedPosition) {
|
||||||
|
this.savedPosition.row -= self.row - 1;
|
||||||
|
}
|
||||||
|
self.emit('scroll', -(self.row - 1));
|
||||||
|
self.row = 1;
|
||||||
|
}
|
||||||
self.emit('position update', self.row, self.column);
|
self.emit('position update', self.row, self.column);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -90,8 +111,8 @@ function ANSIEscapeParser(options) {
|
||||||
|
|
||||||
switch (charCode) {
|
switch (charCode) {
|
||||||
case CR:
|
case CR:
|
||||||
self.emit('literal', text.slice(start, pos));
|
self.emit('literal', text.slice(start, pos + 1));
|
||||||
start = pos;
|
start = pos + 1;
|
||||||
|
|
||||||
self.column = 1;
|
self.column = 1;
|
||||||
|
|
||||||
|
@ -105,8 +126,8 @@ function ANSIEscapeParser(options) {
|
||||||
self.column = 1;
|
self.column = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
self.emit('literal', text.slice(start, pos));
|
self.emit('literal', text.slice(start, pos + 1));
|
||||||
start = pos;
|
start = pos + 1;
|
||||||
|
|
||||||
self.row += 1;
|
self.row += 1;
|
||||||
|
|
||||||
|
@ -114,13 +135,16 @@ function ANSIEscapeParser(options) {
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
if (self.column === self.termWidth) {
|
if (self.column === self.breakWidth) {
|
||||||
self.emit('literal', text.slice(start, pos + 1));
|
self.emit('literal', text.slice(start, pos + 1));
|
||||||
start = pos + 1;
|
start = pos + 1;
|
||||||
|
|
||||||
|
// If we hit breakWidth before termWidth then we need to force the terminal to go to the next line.
|
||||||
|
if(self.column < self.termWidth) {
|
||||||
|
self.emit('literal', '\r\n');
|
||||||
|
}
|
||||||
self.column = 1;
|
self.column = 1;
|
||||||
self.row += 1;
|
self.row += 1;
|
||||||
|
|
||||||
self.positionUpdated();
|
self.positionUpdated();
|
||||||
} else {
|
} else {
|
||||||
self.column += 1;
|
self.column += 1;
|
||||||
|
@ -135,7 +159,7 @@ function ANSIEscapeParser(options) {
|
||||||
//
|
//
|
||||||
// Finalize this chunk
|
// Finalize this chunk
|
||||||
//
|
//
|
||||||
if (self.column > self.termWidth) {
|
if (self.column > self.breakWidth) {
|
||||||
self.column = 1;
|
self.column = 1;
|
||||||
self.row += 1;
|
self.row += 1;
|
||||||
|
|
||||||
|
@ -222,7 +246,7 @@ function ANSIEscapeParser(options) {
|
||||||
self.parseState = {
|
self.parseState = {
|
||||||
// ignore anything past EOF marker, if any
|
// ignore anything past EOF marker, if any
|
||||||
buffer: input.split(String.fromCharCode(0x1a), 1)[0],
|
buffer: input.split(String.fromCharCode(0x1a), 1)[0],
|
||||||
re: /(?:\x1b\x5b)([?=;0-9]*?)([ABCDHJKfhlmnpsu])/g, // eslint-disable-line no-control-regex
|
re: /(?:\x1b)(?:(?:\x5b([?=;0-9]*?)([ABCDEFGfHJKLmMsSTuUYZt@PXhlnpt]))|([78DEHM]))/g, // eslint-disable-line no-control-regex
|
||||||
stop: false,
|
stop: false,
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -262,9 +286,47 @@ function ANSIEscapeParser(options) {
|
||||||
opCode = match[2];
|
opCode = match[2];
|
||||||
args = match[1].split(';').map(v => parseInt(v, 10)); // convert to array of ints
|
args = match[1].split(';').map(v => parseInt(v, 10)); // convert to array of ints
|
||||||
|
|
||||||
escape(opCode, args);
|
// Handle the case where there is no bracket
|
||||||
|
if(!(_.isNil(match[3]))) {
|
||||||
|
opCode = match[3];
|
||||||
|
args = [];
|
||||||
|
// no bracket
|
||||||
|
switch(opCode) {
|
||||||
|
// save cursor position
|
||||||
|
case '7':
|
||||||
|
escape('s', args);
|
||||||
|
break;
|
||||||
|
// restore cursor position
|
||||||
|
case '8':
|
||||||
|
escape('u', args);
|
||||||
|
break;
|
||||||
|
|
||||||
|
// scroll up
|
||||||
|
case 'D':
|
||||||
|
escape('S', args);
|
||||||
|
break;
|
||||||
|
|
||||||
|
// move to next line
|
||||||
|
case 'E':
|
||||||
|
// functonality is the same as ESC [ E
|
||||||
|
escape(opCode, args);
|
||||||
|
break;
|
||||||
|
|
||||||
|
// create a tab at current cursor position
|
||||||
|
case 'H':
|
||||||
|
literal('\t');
|
||||||
|
break;
|
||||||
|
|
||||||
|
// scroll down
|
||||||
|
case 'M':
|
||||||
|
escape('T', args);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
escape(opCode, args);
|
||||||
|
}
|
||||||
|
|
||||||
//self.emit('chunk', match[0]);
|
|
||||||
self.emit('control', match[0], opCode, args);
|
self.emit('control', match[0], opCode, args);
|
||||||
}
|
}
|
||||||
} while (0 !== re.lastIndex);
|
} while (0 !== re.lastIndex);
|
||||||
|
@ -272,8 +334,8 @@ function ANSIEscapeParser(options) {
|
||||||
if (pos < buffer.length) {
|
if (pos < buffer.length) {
|
||||||
var lastBit = buffer.slice(pos);
|
var lastBit = buffer.slice(pos);
|
||||||
|
|
||||||
// :TODO: check for various ending LF's, not just DOS \r\n
|
// handles either \r\n or \n
|
||||||
if ('\r\n' === lastBit.slice(-2).toString()) {
|
if ('\n' === lastBit.slice(-1).toString()) {
|
||||||
switch (self.trailingLF) {
|
switch (self.trailingLF) {
|
||||||
case 'default':
|
case 'default':
|
||||||
//
|
//
|
||||||
|
@ -281,14 +343,14 @@ function ANSIEscapeParser(options) {
|
||||||
// if we're going to end on termHeight
|
// if we're going to end on termHeight
|
||||||
//
|
//
|
||||||
if (this.termHeight === self.row) {
|
if (this.termHeight === self.row) {
|
||||||
lastBit = lastBit.slice(0, -2);
|
lastBit = lastBit.slice(0, -1);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'omit':
|
case 'omit':
|
||||||
case 'no':
|
case 'no':
|
||||||
case false:
|
case false:
|
||||||
lastBit = lastBit.slice(0, -2);
|
lastBit = lastBit.slice(0, -1);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -299,48 +361,6 @@ function ANSIEscapeParser(options) {
|
||||||
self.emit('complete');
|
self.emit('complete');
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
|
||||||
self.parse = function(buffer, savedRe) {
|
|
||||||
// :TODO: ensure this conforms to ANSI-BBS / CTerm / bansi.txt for movement/etc.
|
|
||||||
// :TODO: move this to "constants" section @ top
|
|
||||||
var re = /(?:\x1b\x5b)([\?=;0-9]*?)([ABCDHJKfhlmnpsu])/g;
|
|
||||||
var pos = 0;
|
|
||||||
var match;
|
|
||||||
var opCode;
|
|
||||||
var args;
|
|
||||||
|
|
||||||
// ignore anything past EOF marker, if any
|
|
||||||
buffer = buffer.split(String.fromCharCode(0x1a), 1)[0];
|
|
||||||
|
|
||||||
do {
|
|
||||||
pos = re.lastIndex;
|
|
||||||
match = re.exec(buffer);
|
|
||||||
|
|
||||||
if(null !== match) {
|
|
||||||
if(match.index > pos) {
|
|
||||||
parseMCI(buffer.slice(pos, match.index));
|
|
||||||
}
|
|
||||||
|
|
||||||
opCode = match[2];
|
|
||||||
args = getArgArray(match[1].split(';'));
|
|
||||||
|
|
||||||
escape(opCode, args);
|
|
||||||
|
|
||||||
self.emit('chunk', match[0]);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
} while(0 !== re.lastIndex);
|
|
||||||
|
|
||||||
if(pos < buffer.length) {
|
|
||||||
parseMCI(buffer.slice(pos));
|
|
||||||
}
|
|
||||||
|
|
||||||
self.emit('complete');
|
|
||||||
};
|
|
||||||
*/
|
|
||||||
|
|
||||||
function escape(opCode, args) {
|
function escape(opCode, args) {
|
||||||
let arg;
|
let arg;
|
||||||
|
|
||||||
|
@ -373,6 +393,37 @@ function ANSIEscapeParser(options) {
|
||||||
self.moveCursor(-arg, 0);
|
self.moveCursor(-arg, 0);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
// line feed
|
||||||
|
case 'E':
|
||||||
|
arg = isNaN(args[0]) ? 1 : args[0];
|
||||||
|
if(this.row + arg > this.termHeight) {
|
||||||
|
this.emit('scroll', arg - (this.termHeight - this.row));
|
||||||
|
self.moveCursor(0, this.termHeight);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
self.moveCursor(0, arg);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
// reverse line feed
|
||||||
|
case 'F':
|
||||||
|
arg = isNaN(args[0]) ? 1 : args[0];
|
||||||
|
if(this.row - arg < 1) {
|
||||||
|
this.emit('scroll', -(arg - this.row));
|
||||||
|
self.moveCursor(0, 1 - this.row);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
self.moveCursor(0, -arg);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
// absolute horizontal cursor position
|
||||||
|
case 'G':
|
||||||
|
arg = isNaN(args[0]) ? 1 : args[0];
|
||||||
|
self.column = Math.max(1, arg);
|
||||||
|
self.positionUpdated();
|
||||||
|
break;
|
||||||
|
|
||||||
case 'f': // horiz & vertical
|
case 'f': // horiz & vertical
|
||||||
case 'H': // cursor position
|
case 'H': // cursor position
|
||||||
//self.row = args[0] || 1;
|
//self.row = args[0] || 1;
|
||||||
|
@ -383,14 +434,37 @@ function ANSIEscapeParser(options) {
|
||||||
self.positionUpdated();
|
self.positionUpdated();
|
||||||
break;
|
break;
|
||||||
|
|
||||||
// save position
|
|
||||||
case 's':
|
// erase display/screen
|
||||||
self.saveCursorPosition();
|
case 'J':
|
||||||
|
if(isNaN(args[0]) || 0 === args[0]) {
|
||||||
|
self.emit('erase rows', self.row, self.termHeight);
|
||||||
|
}
|
||||||
|
else if (1 === args[0]) {
|
||||||
|
self.emit('erase rows', 1, self.row);
|
||||||
|
}
|
||||||
|
else if (2 === args[0]) {
|
||||||
|
self.clearScreen();
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
// restore position
|
// erase text in line
|
||||||
case 'u':
|
case 'K':
|
||||||
self.restoreCursorPosition();
|
if(isNaN(args[0]) || 0 === args[0]) {
|
||||||
|
self.emit('erase columns', self.row, self.column, self.termWidth);
|
||||||
|
}
|
||||||
|
else if (1 === args[0]) {
|
||||||
|
self.emit('erase columns', self.row, 1, self.column);
|
||||||
|
}
|
||||||
|
else if (2 === args[0]) {
|
||||||
|
self.emit('erase columns', self.row, 1, self.termWidth);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
// insert line
|
||||||
|
case 'L':
|
||||||
|
arg = isNaN(args[0]) ? 1 : args[0];
|
||||||
|
self.emit('insert line', self.row, arg);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
// set graphic rendition
|
// set graphic rendition
|
||||||
|
@ -462,15 +536,52 @@ function ANSIEscapeParser(options) {
|
||||||
self.emit('sgr update', self.graphicRendition);
|
self.emit('sgr update', self.graphicRendition);
|
||||||
break; // m
|
break; // m
|
||||||
|
|
||||||
// :TODO: s, u, K
|
// save position
|
||||||
|
case 's':
|
||||||
// erase display/screen
|
self.saveCursorPosition();
|
||||||
case 'J':
|
|
||||||
// :TODO: Handle other 'J' types!
|
|
||||||
if (2 === args[0]) {
|
|
||||||
self.clearScreen();
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
// Scroll up
|
||||||
|
case 'S':
|
||||||
|
arg = isNaN(args[0]) ? 1 : args[0];
|
||||||
|
self.emit('scroll', arg);
|
||||||
|
break;
|
||||||
|
|
||||||
|
// Scroll down
|
||||||
|
case 'T':
|
||||||
|
arg = isNaN(args[0]) ? 1 : args[0];
|
||||||
|
self.emit('scroll', -arg);
|
||||||
|
break;
|
||||||
|
|
||||||
|
// restore position
|
||||||
|
case 'u':
|
||||||
|
self.restoreCursorPosition();
|
||||||
|
break;
|
||||||
|
|
||||||
|
// clear
|
||||||
|
case 'U':
|
||||||
|
self.clearScreen();
|
||||||
|
break;
|
||||||
|
|
||||||
|
// delete line
|
||||||
|
// TODO: how should we handle 'M'?
|
||||||
|
case 'Y':
|
||||||
|
arg = isNaN(args[0]) ? 1 : args[0];
|
||||||
|
self.emit('delete line', self.row, arg);
|
||||||
|
break;
|
||||||
|
|
||||||
|
// back tab
|
||||||
|
case 'Z':
|
||||||
|
// calculate previous tabstop
|
||||||
|
self.column = Math.max( 1, self.column - (self.column % 8 || 8) );
|
||||||
|
self.positionUpdated();
|
||||||
|
break;
|
||||||
|
case '@':
|
||||||
|
// insert column(s)
|
||||||
|
arg = isNaN(args[0]) ? 1 : args[0];
|
||||||
|
self.emit('insert columns', self.row, self.column, arg);
|
||||||
|
break;
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -208,17 +208,17 @@ module.exports = class ArchiveUtil {
|
||||||
// pty.js doesn't currently give us a error when things fail,
|
// pty.js doesn't currently give us a error when things fail,
|
||||||
// so we have this horrible, horrible hack:
|
// so we have this horrible, horrible hack:
|
||||||
let err;
|
let err;
|
||||||
proc.once('data', d => {
|
proc.onData(d => {
|
||||||
if (_.isString(d) && d.startsWith('execvp(3) failed.')) {
|
if (_.isString(d) && d.startsWith('execvp(3) failed.')) {
|
||||||
err = Errors.ExternalProcess(`${action} failed: ${d.trim()}`);
|
err = Errors.ExternalProcess(`${action} failed: ${d.trim()}`);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
proc.once('exit', exitCode => {
|
proc.onExit(exitEvent => {
|
||||||
return cb(
|
return cb(
|
||||||
exitCode
|
exitEvent.exitCode
|
||||||
? Errors.ExternalProcess(
|
? Errors.ExternalProcess(
|
||||||
`${action} failed with exit code: ${exitCode}`
|
`${action} failed with exit code: ${exitEvent.exitCode}`
|
||||||
)
|
)
|
||||||
: err
|
: err
|
||||||
);
|
);
|
||||||
|
@ -358,10 +358,10 @@ module.exports = class ArchiveUtil {
|
||||||
output += data;
|
output += data;
|
||||||
});
|
});
|
||||||
|
|
||||||
proc.once('exit', exitCode => {
|
proc.onExit(exitEvent => {
|
||||||
if (exitCode) {
|
if (exitEvent.exitCode) {
|
||||||
return cb(
|
return cb(
|
||||||
Errors.ExternalProcess(`List failed with exit code: ${exitCode}`)
|
Errors.ExternalProcess(`List failed with exit code: ${exitEvent.exitCode}`)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
82
core/art.js
82
core/art.js
|
@ -41,11 +41,21 @@ const SUPPORTED_ART_TYPES = {
|
||||||
};
|
};
|
||||||
|
|
||||||
function getFontNameFromSAUCE(sauce) {
|
function getFontNameFromSAUCE(sauce) {
|
||||||
if (sauce.Character) {
|
if (sauce && sauce.Character) {
|
||||||
return sauce.Character.fontName;
|
return sauce.Character.fontName;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function getWidthFromSAUCE(sauce) {
|
||||||
|
if (sauce && sauce.Character) {
|
||||||
|
let sauceWidth = _.toNumber(sauce.Character.characterWidth);
|
||||||
|
if(!(_.isNaN(sauceWidth)) && sauceWidth > 0) {
|
||||||
|
return sauceWidth;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
function sliceAtEOF(data, eofMarker) {
|
function sliceAtEOF(data, eofMarker) {
|
||||||
let eof = data.length;
|
let eof = data.length;
|
||||||
const stopPos = Math.max(data.length - 256, 0); // 256 = 2 * sizeof(SAUCE)
|
const stopPos = Math.max(data.length - 256, 0); // 256 = 2 * sizeof(SAUCE)
|
||||||
|
@ -274,6 +284,7 @@ function display(client, art, options, cb) {
|
||||||
mciReplaceChar: options.mciReplaceChar,
|
mciReplaceChar: options.mciReplaceChar,
|
||||||
termHeight: client.term.termHeight,
|
termHeight: client.term.termHeight,
|
||||||
termWidth: client.term.termWidth,
|
termWidth: client.term.termWidth,
|
||||||
|
artWidth: getWidthFromSAUCE(options.sauce),
|
||||||
trailingLF: options.trailingLF,
|
trailingLF: options.trailingLF,
|
||||||
startRow: options.startRow,
|
startRow: options.startRow,
|
||||||
});
|
});
|
||||||
|
@ -305,6 +316,75 @@ function display(client, art, options, cb) {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Remove any MCI's that are in erased rows
|
||||||
|
ansiParser.on('erase row', (startRow, endRow) => {
|
||||||
|
_.forEach(mciMap, (mciInfo, mapKey) => {
|
||||||
|
if (mciInfo.position[0] >= startRow && mciInfo.position[0] <= endRow) {
|
||||||
|
delete mciMap[mapKey];
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
// Remove any MCI's that are in erased columns
|
||||||
|
ansiParser.on('erase columns', (row, startCol, endCol) => {
|
||||||
|
_.forEach(mciMap, (mciInfo, mapKey) => {
|
||||||
|
if (
|
||||||
|
mciInfo.position[0] === row &&
|
||||||
|
mciInfo.position[1] >= startCol &&
|
||||||
|
mciInfo.position[1] <= endCol
|
||||||
|
) {
|
||||||
|
delete mciMap[mapKey];
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
ansiParser.on('insert columns', (row, startCol, numCols) => {
|
||||||
|
_.forEach(mciMap, (mciInfo, mapKey) => {
|
||||||
|
if (mciInfo.position[0] === row && mciInfo.position[1] >= startCol) {
|
||||||
|
mciInfo.position[1] += numCols;
|
||||||
|
if(mciInfo.position[1] > client.term.termWidth) {
|
||||||
|
delete mciMap[mapKey];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
// Clear the screen, removing any MCI's
|
||||||
|
ansiParser.on('clear screen', () => {
|
||||||
|
_.forEach(mciMap, (mciInfo, mapKey) => {
|
||||||
|
delete mciMap[mapKey];
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
ansiParser.on('scroll', (scrollY) => {
|
||||||
|
_.forEach(mciMap, (mciInfo) => {
|
||||||
|
mciInfo.position[0] -= scrollY;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
ansiParser.on('insert line', (row, numLines) => {
|
||||||
|
_.forEach(mciMap, (mciInfo) => {
|
||||||
|
if (mciInfo.position[0] >= row) {
|
||||||
|
mciInfo.position[0] += numLines;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
ansiParser.on('delete line', (row, numLines) => {
|
||||||
|
_.forEach(mciMap, (mciInfo, mapKey) => {
|
||||||
|
if (mciInfo.position[0] >= row) {
|
||||||
|
if(mciInfo.position[0] < row + numLines) {
|
||||||
|
// unlike scrolling, the rows are actually gone,
|
||||||
|
// so we need to delete any MCI's that are in them
|
||||||
|
delete mciMap[mapKey];
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
mciInfo.position[0] -= numLines;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
ansiParser.on('literal', literal => client.term.write(literal, false));
|
ansiParser.on('literal', literal => client.term.write(literal, false));
|
||||||
ansiParser.on('control', control => client.term.rawWrite(control));
|
ansiParser.on('control', control => client.term.rawWrite(control));
|
||||||
|
|
||||||
|
|
|
@ -87,7 +87,7 @@ function getActiveConnectionList(
|
||||||
//
|
//
|
||||||
entry.text = ac.user?.username || 'N/A';
|
entry.text = ac.user?.username || 'N/A';
|
||||||
entry.userName = ac.user?.username || 'N/A';
|
entry.userName = ac.user?.username || 'N/A';
|
||||||
entry.realName = ac.user?.getProperty(UserProps.RealName) || 'N/A';
|
entry.realName = ac.user?.realName(false) || 'N/A';
|
||||||
entry.location = ac.user?.getProperty(UserProps.Location) || 'N/A';
|
entry.location = ac.user?.getProperty(UserProps.Location) || 'N/A';
|
||||||
entry.affils = entry.affiliation =
|
entry.affils = entry.affiliation =
|
||||||
ac.user?.getProperty(UserProps.Affiliations) || 'N/A';
|
ac.user?.getProperty(UserProps.Affiliations) || 'N/A';
|
||||||
|
|
|
@ -188,22 +188,15 @@ module.exports = () => {
|
||||||
//
|
//
|
||||||
// 1 - Generate a Private Key (PK):
|
// 1 - Generate a Private Key (PK):
|
||||||
// Currently ENiGMA 1/2 requires a PKCS#1 PEM formatted PK.
|
// Currently ENiGMA 1/2 requires a PKCS#1 PEM formatted PK.
|
||||||
// To generate a secure PK, issue the following command:
|
// For information on generating a key, see:
|
||||||
//
|
// https://nuskooler.github.io/enigma-bbs/servers/loginservers/ssh.html#generate-a-ssh-private-key
|
||||||
// > openssl genpkey -algorithm RSA -pkeyopt rsa_keygen_bits:2048 \
|
|
||||||
// -pkeyopt rsa_keygen_pubexp:65537 | openssl rsa \
|
|
||||||
// -out ./config/security/ssh_private_key.pem -aes128
|
|
||||||
//
|
|
||||||
// (The above is a more modern equivalent of the following):
|
|
||||||
// > openssl genrsa -aes128 -out ./config/security/ssh_private_key.pem 2048
|
|
||||||
//
|
//
|
||||||
// 2 - Set 'privateKeyPass' to the password you used in step #1
|
// 2 - Set 'privateKeyPass' to the password you used in step #1
|
||||||
//
|
//
|
||||||
// 3 - Finally, set 'enabled' to 'true'
|
// 3 - Finally, set 'enabled' to 'true'
|
||||||
//
|
//
|
||||||
// Additional reading:
|
// Additional reading:
|
||||||
// - https://blog.sleeplessbeastie.eu/2017/12/28/how-to-generate-private-key/
|
// - https://nuskooler.github.io/enigma-bbs/servers/loginservers/ssh.html
|
||||||
// - https://gist.github.com/briansmith/2ee42439923d8e65a266994d0f70180b
|
|
||||||
//
|
//
|
||||||
privateKeyPem: paths.join(
|
privateKeyPem: paths.join(
|
||||||
__dirname,
|
__dirname,
|
||||||
|
@ -222,14 +215,18 @@ module.exports = () => {
|
||||||
//
|
//
|
||||||
algorithms: {
|
algorithms: {
|
||||||
kex: [
|
kex: [
|
||||||
|
'curve25519-sha256',
|
||||||
|
'curve25519-sha256@libssh.org',
|
||||||
'ecdh-sha2-nistp256',
|
'ecdh-sha2-nistp256',
|
||||||
'ecdh-sha2-nistp384',
|
'ecdh-sha2-nistp384',
|
||||||
'ecdh-sha2-nistp521',
|
'ecdh-sha2-nistp521',
|
||||||
'diffie-hellman-group14-sha1',
|
'diffie-hellman-group14-sha1',
|
||||||
'diffie-hellman-group1-sha1',
|
'diffie-hellman-group1-sha1',
|
||||||
// Group exchange not currnetly supported
|
'curve25519-sha256',
|
||||||
// 'diffie-hellman-group-exchange-sha256',
|
'curve25519-sha256@libssh.org',
|
||||||
// 'diffie-hellman-group-exchange-sha1',
|
'ecdh-sha2-nistp256',
|
||||||
|
'ecdh-sha2-nistp384',
|
||||||
|
'ecdh-sha2-nistp521',
|
||||||
],
|
],
|
||||||
cipher: [
|
cipher: [
|
||||||
'aes128-ctr',
|
'aes128-ctr',
|
||||||
|
@ -242,12 +239,7 @@ module.exports = () => {
|
||||||
'aes256-cbc',
|
'aes256-cbc',
|
||||||
'aes192-cbc',
|
'aes192-cbc',
|
||||||
'aes128-cbc',
|
'aes128-cbc',
|
||||||
'blowfish-cbc',
|
|
||||||
'3des-cbc',
|
'3des-cbc',
|
||||||
'arcfour256',
|
|
||||||
'arcfour128',
|
|
||||||
'cast128-cbc',
|
|
||||||
'arcfour',
|
|
||||||
],
|
],
|
||||||
hmac: [
|
hmac: [
|
||||||
'hmac-sha2-256',
|
'hmac-sha2-256',
|
||||||
|
|
16
core/door.js
16
core/door.js
|
@ -57,8 +57,10 @@ module.exports = class Door {
|
||||||
run(exeInfo, cb) {
|
run(exeInfo, cb) {
|
||||||
this.encoding = (exeInfo.encoding || 'cp437').toLowerCase();
|
this.encoding = (exeInfo.encoding || 'cp437').toLowerCase();
|
||||||
|
|
||||||
if ('socket' === this.io && !this.sockServer) {
|
if ('socket' === this.io) {
|
||||||
|
if(!this.sockServer) {
|
||||||
return cb(Errors.UnexpectedState('Socket server is not running'));
|
return cb(Errors.UnexpectedState('Socket server is not running'));
|
||||||
|
}
|
||||||
} else if ('stdio' !== this.io) {
|
} else if ('stdio' !== this.io) {
|
||||||
return cb(Errors.Invalid(`"${this.io}" is not a valid io type!`));
|
return cb(Errors.Invalid(`"${this.io}" is not a valid io type!`));
|
||||||
}
|
}
|
||||||
|
@ -113,9 +115,10 @@ module.exports = class Door {
|
||||||
spawnOptions
|
spawnOptions
|
||||||
);
|
);
|
||||||
|
|
||||||
prePty.once('exit', exitCode => {
|
prePty.onExit(exitEvent => {
|
||||||
|
const {exitCode, signal} = exitEvent;
|
||||||
this.client.log.info(
|
this.client.log.info(
|
||||||
{ exitCode: exitCode },
|
{ exitCode, signal },
|
||||||
'Door pre-command exited'
|
'Door pre-command exited'
|
||||||
);
|
);
|
||||||
return callback(null);
|
return callback(null);
|
||||||
|
@ -165,7 +168,7 @@ module.exports = class Door {
|
||||||
|
|
||||||
this.doorPty.onData(this.doorDataHandler.bind(this));
|
this.doorPty.onData(this.doorDataHandler.bind(this));
|
||||||
|
|
||||||
this.doorPty.once('close', () => {
|
this.doorPty.onExit( (/*exitEvent*/) => {
|
||||||
return this.restoreIo(this.doorPty);
|
return this.restoreIo(this.doorPty);
|
||||||
});
|
});
|
||||||
} else if ('socket' === this.io) {
|
} else if ('socket' === this.io) {
|
||||||
|
@ -178,8 +181,9 @@ module.exports = class Door {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
this.doorPty.once('exit', exitCode => {
|
this.doorPty.onExit(exitEvent => {
|
||||||
this.client.log.info({ exitCode: exitCode }, 'Door exited');
|
const {exitCode, signal} = exitEvent;
|
||||||
|
this.client.log.info({ exitCode, signal }, 'Door exited');
|
||||||
|
|
||||||
if (this.sockServer) {
|
if (this.sockServer) {
|
||||||
this.sockServer.close();
|
this.sockServer.close();
|
||||||
|
|
|
@ -167,17 +167,17 @@ class ScheduledEvent {
|
||||||
return cb(e);
|
return cb(e);
|
||||||
}
|
}
|
||||||
|
|
||||||
proc.once('exit', exitCode => {
|
proc.onExit(exitEvent => {
|
||||||
if (exitCode) {
|
if (exitEvent.exitCode) {
|
||||||
Log.warn(
|
Log.warn(
|
||||||
{ eventName: this.name, action: this.action, exitCode: exitCode },
|
{ eventName: this.name, action: this.action, exitCode: exitEvent.exitCode },
|
||||||
'Bad exit code while performing scheduled event action'
|
'Bad exit code while performing scheduled event action'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return cb(
|
return cb(
|
||||||
exitCode
|
exitEvent.exitCode
|
||||||
? Errors.ExternalProcess(
|
? Errors.ExternalProcess(
|
||||||
`Bad exit code while performing scheduled event action: ${exitCode}`
|
`Bad exit code while performing scheduled event action: ${exitEvent.exitCode}`
|
||||||
)
|
)
|
||||||
: null
|
: null
|
||||||
);
|
);
|
||||||
|
|
|
@ -2,10 +2,8 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
// ENiGMA½
|
// ENiGMA½
|
||||||
const MenuModule = require('./menu_module.js').MenuModule;
|
const { MenuModule, MenuFlags } = require('./menu_module.js');
|
||||||
const ViewController = require('./view_controller.js').ViewController;
|
|
||||||
const ansi = require('./ansi_term.js');
|
const ansi = require('./ansi_term.js');
|
||||||
const theme = require('./theme.js');
|
|
||||||
const FileEntry = require('./file_entry.js');
|
const FileEntry = require('./file_entry.js');
|
||||||
const stringFormat = require('./string_format.js');
|
const stringFormat = require('./string_format.js');
|
||||||
const FileArea = require('./file_base_area.js');
|
const FileArea = require('./file_base_area.js');
|
||||||
|
@ -77,6 +75,8 @@ exports.getModule = class FileAreaList extends MenuModule {
|
||||||
this.fileList = _.get(options, 'extraArgs.fileList');
|
this.fileList = _.get(options, 'extraArgs.fileList');
|
||||||
this.lastFileNextExit = _.get(options, 'extraArgs.lastFileNextExit', true);
|
this.lastFileNextExit = _.get(options, 'extraArgs.lastFileNextExit', true);
|
||||||
|
|
||||||
|
this.setMergedFlag(MenuFlags.NoHistory);
|
||||||
|
|
||||||
if (this.fileList) {
|
if (this.fileList) {
|
||||||
// we'll need to adjust position as well!
|
// we'll need to adjust position as well!
|
||||||
this.fileListPosition = 0;
|
this.fileListPosition = 0;
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
// enigma-bbs
|
// enigma-bbs
|
||||||
const MenuModule = require('./menu_module.js').MenuModule;
|
const { MenuModule, MenuFlags } = require('./menu_module.js');
|
||||||
const { getSortedAvailableFileAreas } = require('./file_base_area.js');
|
const { getSortedAvailableFileAreas } = require('./file_base_area.js');
|
||||||
const StatLog = require('./stat_log.js');
|
const StatLog = require('./stat_log.js');
|
||||||
const SysProps = require('./system_property.js');
|
const SysProps = require('./system_property.js');
|
||||||
|
@ -24,6 +24,8 @@ exports.getModule = class FileAreaSelectModule extends MenuModule {
|
||||||
constructor(options) {
|
constructor(options) {
|
||||||
super(options);
|
super(options);
|
||||||
|
|
||||||
|
this.setMergedFlag(MenuFlags.NoHistory);
|
||||||
|
|
||||||
this.menuMethods = {
|
this.menuMethods = {
|
||||||
selectArea: (formData, extraArgs, cb) => {
|
selectArea: (formData, extraArgs, cb) => {
|
||||||
const filterCriteria = {
|
const filterCriteria = {
|
||||||
|
@ -34,7 +36,7 @@ exports.getModule = class FileAreaSelectModule extends MenuModule {
|
||||||
extraArgs: {
|
extraArgs: {
|
||||||
filterCriteria: filterCriteria,
|
filterCriteria: filterCriteria,
|
||||||
},
|
},
|
||||||
menuFlags: ['popParent', 'mergeFlags'],
|
menuFlags: [ MenuFlags.NoHistory ],
|
||||||
};
|
};
|
||||||
|
|
||||||
return this.gotoMenu(
|
return this.gotoMenu(
|
||||||
|
|
|
@ -2,10 +2,8 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
// ENiGMA½
|
// ENiGMA½
|
||||||
const MenuModule = require('./menu_module.js').MenuModule;
|
const { MenuModule, MenuFlags } = require('./menu_module.js');
|
||||||
const ViewController = require('./view_controller.js').ViewController;
|
|
||||||
const DownloadQueue = require('./download_queue.js');
|
const DownloadQueue = require('./download_queue.js');
|
||||||
const theme = require('./theme.js');
|
|
||||||
const ansi = require('./ansi_term.js');
|
const ansi = require('./ansi_term.js');
|
||||||
const Errors = require('./enig_error.js').Errors;
|
const Errors = require('./enig_error.js').Errors;
|
||||||
const FileAreaWeb = require('./file_area_web.js');
|
const FileAreaWeb = require('./file_area_web.js');
|
||||||
|
@ -38,6 +36,8 @@ exports.getModule = class FileBaseDownloadQueueManager extends MenuModule {
|
||||||
constructor(options) {
|
constructor(options) {
|
||||||
super(options);
|
super(options);
|
||||||
|
|
||||||
|
this.setMergedFlag(MenuFlags.NoHistory);
|
||||||
|
|
||||||
this.dlQueue = new DownloadQueue(this.client);
|
this.dlQueue = new DownloadQueue(this.client);
|
||||||
|
|
||||||
if (_.has(options, 'lastMenuResult.sentFileIds')) {
|
if (_.has(options, 'lastMenuResult.sentFileIds')) {
|
||||||
|
|
|
@ -121,7 +121,6 @@ exports.getModule = class FileBaseSearch extends MenuModule {
|
||||||
extraArgs: {
|
extraArgs: {
|
||||||
filterCriteria: filterCriteria,
|
filterCriteria: filterCriteria,
|
||||||
},
|
},
|
||||||
menuFlags: ['popParent'],
|
|
||||||
};
|
};
|
||||||
|
|
||||||
return this.gotoMenu(
|
return this.gotoMenu(
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
// ENiGMA½
|
// ENiGMA½
|
||||||
const { MenuModule } = require('./menu_module.js');
|
const { MenuModule, MenuFlags } = require('./menu_module.js');
|
||||||
const FileEntry = require('./file_entry.js');
|
const FileEntry = require('./file_entry.js');
|
||||||
const FileArea = require('./file_base_area.js');
|
const FileArea = require('./file_base_area.js');
|
||||||
const { renderSubstr } = require('./string_util.js');
|
const { renderSubstr } = require('./string_util.js');
|
||||||
|
@ -65,6 +65,9 @@ const MciViewIds = {
|
||||||
exports.getModule = class FileBaseListExport extends MenuModule {
|
exports.getModule = class FileBaseListExport extends MenuModule {
|
||||||
constructor(options) {
|
constructor(options) {
|
||||||
super(options);
|
super(options);
|
||||||
|
|
||||||
|
this.setMergedFlag(MenuFlags.NoHistory);
|
||||||
|
|
||||||
this.config = Object.assign(
|
this.config = Object.assign(
|
||||||
{},
|
{},
|
||||||
_.get(options, 'menuConfig.config'),
|
_.get(options, 'menuConfig.config'),
|
||||||
|
|
|
@ -2,10 +2,8 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
// ENiGMA½
|
// ENiGMA½
|
||||||
const MenuModule = require('./menu_module.js').MenuModule;
|
const { MenuModule, MenuFlags } = require('./menu_module.js');
|
||||||
const ViewController = require('./view_controller.js').ViewController;
|
|
||||||
const DownloadQueue = require('./download_queue.js');
|
const DownloadQueue = require('./download_queue.js');
|
||||||
const theme = require('./theme.js');
|
|
||||||
const ansi = require('./ansi_term.js');
|
const ansi = require('./ansi_term.js');
|
||||||
const Errors = require('./enig_error.js').Errors;
|
const Errors = require('./enig_error.js').Errors;
|
||||||
const FileAreaWeb = require('./file_area_web.js');
|
const FileAreaWeb = require('./file_area_web.js');
|
||||||
|
@ -40,6 +38,8 @@ exports.getModule = class FileBaseWebDownloadQueueManager extends MenuModule {
|
||||||
constructor(options) {
|
constructor(options) {
|
||||||
super(options);
|
super(options);
|
||||||
|
|
||||||
|
this.setMergedFlag(MenuFlags.NoHistory);
|
||||||
|
|
||||||
this.dlQueue = new DownloadQueue(this.client);
|
this.dlQueue = new DownloadQueue(this.client);
|
||||||
|
|
||||||
this.menuMethods = {
|
this.menuMethods = {
|
||||||
|
|
|
@ -485,13 +485,10 @@ exports.getModule = class TransferFileModule extends MenuModule {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
externalProc.once('close', () => {
|
externalProc.onExit(exitEvent => {
|
||||||
return this.restorePipeAfterExternalProc();
|
const {exitCode, signal} = exitEvent;
|
||||||
});
|
|
||||||
|
|
||||||
externalProc.once('exit', exitCode => {
|
|
||||||
this.client.log.debug(
|
this.client.log.debug(
|
||||||
{ cmd: cmd, args: args, exitCode: exitCode },
|
{ cmd: cmd, args: args, exitCode, signal },
|
||||||
'Process exited'
|
'Process exited'
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
16
core/fse.js
16
core/fse.js
|
@ -167,6 +167,7 @@ exports.FullScreenEditorModule =
|
||||||
var newFocusViewId;
|
var newFocusViewId;
|
||||||
if (errMsgView) {
|
if (errMsgView) {
|
||||||
if (err) {
|
if (err) {
|
||||||
|
errMsgView.clearText();
|
||||||
errMsgView.setText(err.message);
|
errMsgView.setText(err.message);
|
||||||
|
|
||||||
if (MciViewIds.header.subject === err.view.getId()) {
|
if (MciViewIds.header.subject === err.view.getId()) {
|
||||||
|
@ -183,6 +184,13 @@ exports.FullScreenEditorModule =
|
||||||
return cb(null);
|
return cb(null);
|
||||||
},
|
},
|
||||||
editModeEscPressed: function (formData, extraArgs, cb) {
|
editModeEscPressed: function (formData, extraArgs, cb) {
|
||||||
|
const errMsgView = self.viewControllers.header.getView(
|
||||||
|
MciViewIds.header.errorMsg
|
||||||
|
);
|
||||||
|
if (errMsgView) {
|
||||||
|
errMsgView.clearText();
|
||||||
|
}
|
||||||
|
|
||||||
self.footerMode =
|
self.footerMode =
|
||||||
'editor' === self.footerMode ? 'editorMenu' : 'editor';
|
'editor' === self.footerMode ? 'editorMenu' : 'editor';
|
||||||
|
|
||||||
|
@ -982,11 +990,7 @@ exports.FullScreenEditorModule =
|
||||||
const area = getMessageAreaByTag(self.messageAreaTag);
|
const area = getMessageAreaByTag(self.messageAreaTag);
|
||||||
if (fromView !== undefined) {
|
if (fromView !== undefined) {
|
||||||
if (area && area.realNames) {
|
if (area && area.realNames) {
|
||||||
fromView.setText(
|
fromView.setText(self.client.user.realName());
|
||||||
self.client.user.properties[
|
|
||||||
UserProps.RealName
|
|
||||||
] || self.client.user.username
|
|
||||||
);
|
|
||||||
} else {
|
} else {
|
||||||
fromView.setText(self.client.user.username);
|
fromView.setText(self.client.user.username);
|
||||||
}
|
}
|
||||||
|
@ -1054,7 +1058,7 @@ exports.FullScreenEditorModule =
|
||||||
posView.setText(
|
posView.setText(
|
||||||
_.padStart(String(pos.row + 1), 2, '0') +
|
_.padStart(String(pos.row + 1), 2, '0') +
|
||||||
',' +
|
',' +
|
||||||
_.padEnd(String(pos.col + 1), 2, '0')
|
_.padStart(String(pos.col + 1), 2, '0')
|
||||||
);
|
);
|
||||||
this.client.term.rawWrite(ansi.restorePos());
|
this.client.term.rawWrite(ansi.restorePos());
|
||||||
}
|
}
|
||||||
|
|
|
@ -135,7 +135,7 @@ module.exports = class Address {
|
||||||
static fromString(addrStr) {
|
static fromString(addrStr) {
|
||||||
const m = FTN_ADDRESS_REGEXP.exec(addrStr);
|
const m = FTN_ADDRESS_REGEXP.exec(addrStr);
|
||||||
|
|
||||||
if (m) {
|
if (m && m[2] && m[3]) {
|
||||||
// start with a 2D
|
// start with a 2D
|
||||||
let addr = {
|
let addr = {
|
||||||
net: parseInt(m[2]),
|
net: parseInt(m[2]),
|
||||||
|
|
|
@ -20,6 +20,23 @@ const assert = require('assert');
|
||||||
const _ = require('lodash');
|
const _ = require('lodash');
|
||||||
const iconvDecode = require('iconv-lite').decode;
|
const iconvDecode = require('iconv-lite').decode;
|
||||||
|
|
||||||
|
const MenuFlags = {
|
||||||
|
// When leaving this menu to load/chain to another, remove this
|
||||||
|
// menu from history. In other words, the fallback from
|
||||||
|
// the next menu would *not* be this one, but the previous.
|
||||||
|
NoHistory: 'noHistory',
|
||||||
|
|
||||||
|
// Generally used in code only: Request that any flags from menu.hjson
|
||||||
|
// are merged in to the total set of flags vs overriding the default.
|
||||||
|
MergeFlags: 'mergeFlags',
|
||||||
|
|
||||||
|
// Forward this menu's 'extraArgs' to the next.
|
||||||
|
ForwardArgs: 'forwardArgs',
|
||||||
|
};
|
||||||
|
|
||||||
|
exports.MenuFlags = MenuFlags;
|
||||||
|
|
||||||
|
|
||||||
exports.MenuModule = class MenuModule extends PluginModule {
|
exports.MenuModule = class MenuModule extends PluginModule {
|
||||||
constructor(options) {
|
constructor(options) {
|
||||||
super(options);
|
super(options);
|
||||||
|
@ -48,6 +65,11 @@ exports.MenuModule = class MenuModule extends PluginModule {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
setMergedFlag(flag) {
|
||||||
|
this.menuConfig.config.menuFlags.push(flag);
|
||||||
|
this.menuConfig.config.menuFlags = [...new Set([...this.menuConfig.config.menuFlags, MenuFlags.MergeFlags])];
|
||||||
|
}
|
||||||
|
|
||||||
static get InterruptTypes() {
|
static get InterruptTypes() {
|
||||||
return {
|
return {
|
||||||
Never: 'never',
|
Never: 'never',
|
||||||
|
|
|
@ -5,12 +5,12 @@
|
||||||
const loadMenu = require('./menu_util.js').loadMenu;
|
const loadMenu = require('./menu_util.js').loadMenu;
|
||||||
const { Errors, ErrorReasons } = require('./enig_error.js');
|
const { Errors, ErrorReasons } = require('./enig_error.js');
|
||||||
const { getResolvedSpec } = require('./menu_util.js');
|
const { getResolvedSpec } = require('./menu_util.js');
|
||||||
|
const { MenuFlags } = require('./menu_module.js');
|
||||||
|
|
||||||
// deps
|
// deps
|
||||||
const _ = require('lodash');
|
const _ = require('lodash');
|
||||||
const assert = require('assert');
|
const assert = require('assert');
|
||||||
|
const bunyan = require('bunyan');
|
||||||
// :TODO: Stack is backwards.... top should be most recent! :)
|
|
||||||
|
|
||||||
module.exports = class MenuStack {
|
module.exports = class MenuStack {
|
||||||
constructor(client) {
|
constructor(client) {
|
||||||
|
@ -27,20 +27,12 @@ module.exports = class MenuStack {
|
||||||
}
|
}
|
||||||
|
|
||||||
peekPrev() {
|
peekPrev() {
|
||||||
if (this.stackSize > 1) {
|
|
||||||
return this.stack[this.stack.length - 2];
|
return this.stack[this.stack.length - 2];
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
top() {
|
top() {
|
||||||
if (this.stackSize > 0) {
|
|
||||||
return this.stack[this.stack.length - 1];
|
return this.stack[this.stack.length - 1];
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
get stackSize() {
|
|
||||||
return this.stack.length;
|
|
||||||
}
|
|
||||||
|
|
||||||
get currentModule() {
|
get currentModule() {
|
||||||
const top = this.top();
|
const top = this.top();
|
||||||
|
@ -81,7 +73,6 @@ module.exports = class MenuStack {
|
||||||
prev(cb) {
|
prev(cb) {
|
||||||
const menuResult = this.top().instance.getMenuResult();
|
const menuResult = this.top().instance.getMenuResult();
|
||||||
|
|
||||||
// :TODO: leave() should really take a cb...
|
|
||||||
this.pop().instance.leave(); // leave & remove current
|
this.pop().instance.leave(); // leave & remove current
|
||||||
|
|
||||||
const previousModuleInfo = this.pop(); // get previous
|
const previousModuleInfo = this.pop(); // get previous
|
||||||
|
@ -129,7 +120,7 @@ module.exports = class MenuStack {
|
||||||
client: self.client,
|
client: self.client,
|
||||||
};
|
};
|
||||||
|
|
||||||
if (currentModuleInfo && currentModuleInfo.menuFlags.includes('forwardArgs')) {
|
if (currentModuleInfo && currentModuleInfo.menuFlags.includes(MenuFlags.ForwardArgs)) {
|
||||||
loadOpts.extraArgs = currentModuleInfo.extraArgs;
|
loadOpts.extraArgs = currentModuleInfo.extraArgs;
|
||||||
} else {
|
} else {
|
||||||
loadOpts.extraArgs = options.extraArgs || _.get(options, 'formData.value');
|
loadOpts.extraArgs = options.extraArgs || _.get(options, 'formData.value');
|
||||||
|
@ -138,7 +129,6 @@ module.exports = class MenuStack {
|
||||||
|
|
||||||
loadMenu(loadOpts, (err, modInst) => {
|
loadMenu(loadOpts, (err, modInst) => {
|
||||||
if (err) {
|
if (err) {
|
||||||
// :TODO: probably should just require a cb...
|
|
||||||
const errCb = cb || self.client.defaultHandlerMissingMod();
|
const errCb = cb || self.client.defaultHandlerMissingMod();
|
||||||
errCb(err);
|
errCb(err);
|
||||||
} else {
|
} else {
|
||||||
|
@ -151,22 +141,6 @@ module.exports = class MenuStack {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
|
||||||
// Handle deprecated 'options' block by merging to config and warning user.
|
|
||||||
// :TODO: Remove in 0.0.10+
|
|
||||||
//
|
|
||||||
if (modInst.menuConfig.options) {
|
|
||||||
self.client.log.warn(
|
|
||||||
{ options: modInst.menuConfig.options },
|
|
||||||
'Use of "options" is deprecated. Move relevant members to "config" block! Support will be fully removed in future versions'
|
|
||||||
);
|
|
||||||
Object.assign(
|
|
||||||
modInst.menuConfig.config || {},
|
|
||||||
modInst.menuConfig.options
|
|
||||||
);
|
|
||||||
delete modInst.menuConfig.options;
|
|
||||||
}
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// If menuFlags were supplied in menu.hjson, they should win over
|
// If menuFlags were supplied in menu.hjson, they should win over
|
||||||
// anything supplied in code.
|
// anything supplied in code.
|
||||||
|
@ -180,9 +154,9 @@ module.exports = class MenuStack {
|
||||||
// in code we can ask to merge in
|
// in code we can ask to merge in
|
||||||
if (
|
if (
|
||||||
Array.isArray(options.menuFlags) &&
|
Array.isArray(options.menuFlags) &&
|
||||||
options.menuFlags.includes('mergeFlags')
|
options.menuFlags.includes(MenuFlags.MergeFlags)
|
||||||
) {
|
) {
|
||||||
menuFlags = _.uniq(menuFlags.concat(options.menuFlags));
|
menuFlags = [...new Set(options.menuFlags)]; // make unique
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -193,12 +167,8 @@ module.exports = class MenuStack {
|
||||||
|
|
||||||
currentModuleInfo.instance.leave();
|
currentModuleInfo.instance.leave();
|
||||||
|
|
||||||
if (currentModuleInfo.menuFlags.includes('noHistory')) {
|
if (currentModuleInfo.menuFlags.includes(MenuFlags.NoHistory)) {
|
||||||
this.pop();
|
this.pop().instance.leave(); // leave & remove current from stack
|
||||||
}
|
|
||||||
|
|
||||||
if (menuFlags.includes('popParent')) {
|
|
||||||
this.pop().instance.leave(); // leave & remove current
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -214,6 +184,7 @@ module.exports = class MenuStack {
|
||||||
modInst.restoreSavedState(options.savedState);
|
modInst.restoreSavedState(options.savedState);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (self.client.log.level() <= bunyan.TRACE) {
|
||||||
const stackEntries = self.stack.map(stackEntry => {
|
const stackEntries = self.stack.map(stackEntry => {
|
||||||
let name = stackEntry.name;
|
let name = stackEntry.name;
|
||||||
if (stackEntry.instance.menuConfig.config.menuFlags.length > 0) {
|
if (stackEntry.instance.menuConfig.config.menuFlags.length > 0) {
|
||||||
|
@ -225,6 +196,7 @@ module.exports = class MenuStack {
|
||||||
});
|
});
|
||||||
|
|
||||||
self.client.log.trace({ stack: stackEntries }, 'Updated menu stack');
|
self.client.log.trace({ stack: stackEntries }, 'Updated menu stack');
|
||||||
|
}
|
||||||
|
|
||||||
modInst.enter();
|
modInst.enter();
|
||||||
|
|
||||||
|
|
|
@ -763,6 +763,11 @@ module.exports = class Message {
|
||||||
}
|
}
|
||||||
|
|
||||||
persist(cb) {
|
persist(cb) {
|
||||||
|
const containsNonWhitespaceCharacterRegEx = /\S/;
|
||||||
|
if (!containsNonWhitespaceCharacterRegEx.test(this.message)) {
|
||||||
|
return cb(Errors.Invalid('Empty message'));
|
||||||
|
}
|
||||||
|
|
||||||
if (!this.isValid()) {
|
if (!this.isValid()) {
|
||||||
return cb(Errors.Invalid('Cannot persist invalid message!'));
|
return cb(Errors.Invalid('Cannot persist invalid message!'));
|
||||||
}
|
}
|
||||||
|
|
|
@ -113,7 +113,6 @@ exports.getModule = class MessageBaseSearch extends MenuModule {
|
||||||
const returnNoResults = () => {
|
const returnNoResults = () => {
|
||||||
return this.gotoMenu(
|
return this.gotoMenu(
|
||||||
this.menuConfig.config.noResultsMenu || 'messageSearchNoResults',
|
this.menuConfig.config.noResultsMenu || 'messageSearchNoResults',
|
||||||
{ menuFlags: ['popParent'] },
|
|
||||||
cb
|
cb
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
@ -160,7 +159,6 @@ exports.getModule = class MessageBaseSearch extends MenuModule {
|
||||||
messageList,
|
messageList,
|
||||||
noUpdateLastReadId: true,
|
noUpdateLastReadId: true,
|
||||||
},
|
},
|
||||||
menuFlags: ['popParent'],
|
|
||||||
};
|
};
|
||||||
|
|
||||||
return this.gotoMenu(
|
return this.gotoMenu(
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
// ENiGMA½
|
// ENiGMA½
|
||||||
const { MenuModule } = require('./menu_module.js');
|
const { MenuModule, MenuFlags } = require('./menu_module.js');
|
||||||
const messageArea = require('./message_area.js');
|
const messageArea = require('./message_area.js');
|
||||||
const { Errors } = require('./enig_error.js');
|
const { Errors } = require('./enig_error.js');
|
||||||
const UserProps = require('./user_property.js');
|
const UserProps = require('./user_property.js');
|
||||||
|
@ -29,6 +29,9 @@ exports.getModule = class MessageAreaListModule extends MenuModule {
|
||||||
constructor(options) {
|
constructor(options) {
|
||||||
super(options);
|
super(options);
|
||||||
|
|
||||||
|
// always include noHistory flag
|
||||||
|
this.setMergedFlag(MenuFlags.NoHistory);
|
||||||
|
|
||||||
this.initList();
|
this.initList();
|
||||||
|
|
||||||
this.menuMethods = {
|
this.menuMethods = {
|
||||||
|
@ -49,7 +52,7 @@ exports.getModule = class MessageAreaListModule extends MenuModule {
|
||||||
extraArgs: {
|
extraArgs: {
|
||||||
areaTag: area.areaTag,
|
areaTag: area.areaTag,
|
||||||
},
|
},
|
||||||
menuFlags: ['popParent', 'noHistory'],
|
menuFlags: [ MenuFlags.NoHistory ],
|
||||||
};
|
};
|
||||||
|
|
||||||
return this.gotoMenu(
|
return this.gotoMenu(
|
||||||
|
|
|
@ -14,6 +14,39 @@ exports.moduleInfo = {
|
||||||
author: 'NuSkooler',
|
author: 'NuSkooler',
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const MciViewIds = {
|
||||||
|
header: {
|
||||||
|
from: 1,
|
||||||
|
to: 2,
|
||||||
|
subject: 3,
|
||||||
|
errorMsg: 4,
|
||||||
|
modTimestamp: 5,
|
||||||
|
msgNum: 6,
|
||||||
|
msgTotal: 7,
|
||||||
|
|
||||||
|
customRangeStart: 10, // 10+ = customs
|
||||||
|
},
|
||||||
|
|
||||||
|
body: {
|
||||||
|
message: 1,
|
||||||
|
},
|
||||||
|
|
||||||
|
// :TODO: quote builder MCIs - remove all magic #'s
|
||||||
|
|
||||||
|
// :TODO: consolidate all footer MCI's - remove all magic #'s
|
||||||
|
ViewModeFooter: {
|
||||||
|
MsgNum: 6,
|
||||||
|
MsgTotal: 7,
|
||||||
|
// :TODO: Just use custom ranges
|
||||||
|
},
|
||||||
|
|
||||||
|
quoteBuilder: {
|
||||||
|
quotedMsg: 1,
|
||||||
|
// 2 NYI
|
||||||
|
quoteLines: 3,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
exports.getModule = class AreaPostFSEModule extends FullScreenEditorModule {
|
exports.getModule = class AreaPostFSEModule extends FullScreenEditorModule {
|
||||||
constructor(options) {
|
constructor(options) {
|
||||||
super(options);
|
super(options);
|
||||||
|
@ -42,8 +75,15 @@ exports.getModule = class AreaPostFSEModule extends FullScreenEditorModule {
|
||||||
],
|
],
|
||||||
function complete(err) {
|
function complete(err) {
|
||||||
if (err) {
|
if (err) {
|
||||||
// :TODO:... sooooo now what?
|
const errMsgView = self.viewControllers.header.getView(
|
||||||
} else {
|
MciViewIds.header.errorMsg
|
||||||
|
);
|
||||||
|
if (errMsgView) {
|
||||||
|
errMsgView.setText(err.message);
|
||||||
|
}
|
||||||
|
return cb(err);
|
||||||
|
}
|
||||||
|
|
||||||
// note: not logging 'from' here as it's part of client.log.xxxx()
|
// note: not logging 'from' here as it's part of client.log.xxxx()
|
||||||
self.client.log.info(
|
self.client.log.info(
|
||||||
{
|
{
|
||||||
|
@ -53,7 +93,6 @@ exports.getModule = class AreaPostFSEModule extends FullScreenEditorModule {
|
||||||
},
|
},
|
||||||
`User "${self.client.user.username}" posted message to "${msg.toUserName}" (${msg.areaTag})`
|
`User "${self.client.user.username}" posted message to "${msg.toUserName}" (${msg.areaTag})`
|
||||||
);
|
);
|
||||||
}
|
|
||||||
|
|
||||||
return self.nextMenu(cb);
|
return self.nextMenu(cb);
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
// ENiGMA½
|
// ENiGMA½
|
||||||
const { MenuModule } = require('./menu_module.js');
|
const { MenuModule, MenuFlags } = require('./menu_module.js');
|
||||||
const messageArea = require('./message_area.js');
|
const messageArea = require('./message_area.js');
|
||||||
const { Errors } = require('./enig_error.js');
|
const { Errors } = require('./enig_error.js');
|
||||||
|
|
||||||
|
@ -26,6 +26,9 @@ exports.getModule = class MessageConfListModule extends MenuModule {
|
||||||
constructor(options) {
|
constructor(options) {
|
||||||
super(options);
|
super(options);
|
||||||
|
|
||||||
|
// always include noHistory flag
|
||||||
|
this.setMergedFlag(MenuFlags.NoHistory);
|
||||||
|
|
||||||
this.initList();
|
this.initList();
|
||||||
|
|
||||||
this.menuMethods = {
|
this.menuMethods = {
|
||||||
|
@ -49,7 +52,7 @@ exports.getModule = class MessageConfListModule extends MenuModule {
|
||||||
extraArgs: {
|
extraArgs: {
|
||||||
confTag: conf.confTag,
|
confTag: conf.confTag,
|
||||||
},
|
},
|
||||||
menuFlags: ['popParent', 'noHistory'],
|
menuFlags: [ MenuFlags.NoHistory ],
|
||||||
};
|
};
|
||||||
|
|
||||||
return this.gotoMenu(
|
return this.gotoMenu(
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
// ENiGMA½
|
// ENiGMA½
|
||||||
const MenuModule = require('./menu_module.js').MenuModule;
|
const { MenuModule, MenuFlags } = require('./menu_module');
|
||||||
const Message = require('./message.js');
|
const Message = require('./message.js');
|
||||||
const UserProps = require('./user_property.js');
|
const UserProps = require('./user_property.js');
|
||||||
const { filterMessageListByReadACS } = require('./message_area.js');
|
const { filterMessageListByReadACS } = require('./message_area.js');
|
||||||
|
@ -16,14 +16,12 @@ exports.moduleInfo = {
|
||||||
exports.getModule = class MyMessagesModule extends MenuModule {
|
exports.getModule = class MyMessagesModule extends MenuModule {
|
||||||
constructor(options) {
|
constructor(options) {
|
||||||
super(options);
|
super(options);
|
||||||
|
this.setMergedFlag(MenuFlags.NoHistory);
|
||||||
}
|
}
|
||||||
|
|
||||||
initSequence() {
|
initSequence() {
|
||||||
const filter = {
|
const filter = {
|
||||||
toUserName: [
|
toUserName: [this.client.user.username, this.client.user.realName()],
|
||||||
this.client.user.username,
|
|
||||||
this.client.user.getProperty(UserProps.RealName),
|
|
||||||
],
|
|
||||||
sort: 'modTimestamp',
|
sort: 'modTimestamp',
|
||||||
resultType: 'messageList',
|
resultType: 'messageList',
|
||||||
limit: 1024 * 16, // we want some sort of limit...
|
limit: 1024 * 16, // we want some sort of limit...
|
||||||
|
@ -49,7 +47,6 @@ exports.getModule = class MyMessagesModule extends MenuModule {
|
||||||
if (!this.messageList || 0 === this.messageList.length) {
|
if (!this.messageList || 0 === this.messageList.length) {
|
||||||
return this.gotoMenu(
|
return this.gotoMenu(
|
||||||
this.menuConfig.config.noResultsMenu || 'messageSearchNoResults',
|
this.menuConfig.config.noResultsMenu || 'messageSearchNoResults',
|
||||||
{ menuFlags: ['popParent'] }
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -58,7 +55,6 @@ exports.getModule = class MyMessagesModule extends MenuModule {
|
||||||
messageList: this.messageList,
|
messageList: this.messageList,
|
||||||
noUpdateLastReadId: true,
|
noUpdateLastReadId: true,
|
||||||
},
|
},
|
||||||
menuFlags: ['popParent'],
|
|
||||||
};
|
};
|
||||||
|
|
||||||
return this.gotoMenu(
|
return this.gotoMenu(
|
||||||
|
|
15
core/nua.js
15
core/nua.js
|
@ -13,6 +13,7 @@ const UserProps = require('./user_property.js');
|
||||||
|
|
||||||
// deps
|
// deps
|
||||||
const _ = require('lodash');
|
const _ = require('lodash');
|
||||||
|
const moment = require('moment');
|
||||||
|
|
||||||
exports.moduleInfo = {
|
exports.moduleInfo = {
|
||||||
name: 'NUA',
|
name: 'NUA',
|
||||||
|
@ -95,15 +96,15 @@ exports.getModule = class NewUserAppModule extends MenuModule {
|
||||||
areaTag = areaTag || '';
|
areaTag = areaTag || '';
|
||||||
|
|
||||||
newUser.properties = {
|
newUser.properties = {
|
||||||
[UserProps.RealName]: formData.value.realName,
|
[UserProps.RealName]: formData.value.realName || '',
|
||||||
[UserProps.Birthdate]: getISOTimestampString(
|
[UserProps.Birthdate]: getISOTimestampString(
|
||||||
formData.value.birthdate
|
formData.value.birthdate || moment()
|
||||||
),
|
),
|
||||||
[UserProps.Sex]: formData.value.sex,
|
[UserProps.Sex]: formData.value.sex || '',
|
||||||
[UserProps.Location]: formData.value.location,
|
[UserProps.Location]: formData.value.location || '',
|
||||||
[UserProps.Affiliations]: formData.value.affils,
|
[UserProps.Affiliations]: formData.value.affils || '',
|
||||||
[UserProps.EmailAddress]: formData.value.email,
|
[UserProps.EmailAddress]: formData.value.email || '',
|
||||||
[UserProps.WebAddress]: formData.value.web,
|
[UserProps.WebAddress]: formData.value.web || '',
|
||||||
[UserProps.AccountCreated]: getISOTimestampString(),
|
[UserProps.AccountCreated]: getISOTimestampString(),
|
||||||
|
|
||||||
[UserProps.MessageConfTag]: confTag,
|
[UserProps.MessageConfTag]: confTag,
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
// ENiGMA½
|
// ENiGMA½
|
||||||
const MenuModule = require('./menu_module.js').MenuModule;
|
const MenuModule = require('./menu_module.js').MenuModule;
|
||||||
const Errors = require('../core/enig_error.js').Errors;
|
const Errors = require('../core/enig_error.js').Errors;
|
||||||
const ANSI = require('./ansi_term.js');
|
|
||||||
const Config = require('./config.js').get;
|
const Config = require('./config.js').get;
|
||||||
const { getMessageAreaByTag } = require('./message_area.js');
|
const { getMessageAreaByTag } = require('./message_area.js');
|
||||||
|
|
||||||
|
@ -21,6 +20,7 @@ exports.moduleInfo = {
|
||||||
exports.getModule = class ShowArtModule extends MenuModule {
|
exports.getModule = class ShowArtModule extends MenuModule {
|
||||||
constructor(options) {
|
constructor(options) {
|
||||||
super(options);
|
super(options);
|
||||||
|
|
||||||
this.config = Object.assign({}, _.get(options, 'menuConfig.config'), {
|
this.config = Object.assign({}, _.get(options, 'menuConfig.config'), {
|
||||||
extraArgs: options.extraArgs,
|
extraArgs: options.extraArgs,
|
||||||
});
|
});
|
||||||
|
|
|
@ -21,8 +21,10 @@ exports.validateEmailAvail = validateEmailAvail;
|
||||||
exports.validateBirthdate = validateBirthdate;
|
exports.validateBirthdate = validateBirthdate;
|
||||||
exports.validatePasswordSpec = validatePasswordSpec;
|
exports.validatePasswordSpec = validatePasswordSpec;
|
||||||
|
|
||||||
|
const emptyFieldError = () => new Error('Field cannot be empty');
|
||||||
|
|
||||||
function validateNonEmpty(data, cb) {
|
function validateNonEmpty(data, cb) {
|
||||||
return cb(data && data.length > 0 ? null : new Error('Field cannot be empty'));
|
return cb(data && data.length > 0 ? null : emptyFieldError);
|
||||||
}
|
}
|
||||||
|
|
||||||
function validateMessageSubject(data, cb) {
|
function validateMessageSubject(data, cb) {
|
||||||
|
@ -91,7 +93,11 @@ function validateGeneralMailAddressedTo(data, cb) {
|
||||||
// :TODO: remove hard-coded FTN check here. We need a decent way to register global supported flavors with modules.
|
// :TODO: remove hard-coded FTN check here. We need a decent way to register global supported flavors with modules.
|
||||||
const addressedToInfo = getAddressedToInfo(data);
|
const addressedToInfo = getAddressedToInfo(data);
|
||||||
|
|
||||||
if (Message.AddressFlavor.FTN === addressedToInfo.flavor) {
|
if (addressedToInfo.name.length === 0) {
|
||||||
|
return cb(emptyFieldError());
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Message.AddressFlavor.Local !== addressedToInfo.flavor) {
|
||||||
return cb(null);
|
return cb(null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -179,6 +179,10 @@ TextView.prototype.setText = function (text, redraw) {
|
||||||
};
|
};
|
||||||
|
|
||||||
TextView.prototype.clearText = function () {
|
TextView.prototype.clearText = function () {
|
||||||
|
if (this.text) {
|
||||||
|
this.setText(this.fillChar.repeat(this.text.length));
|
||||||
|
}
|
||||||
|
|
||||||
this.setText('');
|
this.setText('');
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
// enigma-bbs
|
// enigma-bbs
|
||||||
const MenuModule = require('./menu_module.js').MenuModule;
|
const { MenuModule, MenuFlags } = require('./menu_module');
|
||||||
const stringFormat = require('./string_format.js');
|
const stringFormat = require('./string_format.js');
|
||||||
const getSortedAvailableFileAreas =
|
const getSortedAvailableFileAreas =
|
||||||
require('./file_base_area.js').getSortedAvailableFileAreas;
|
require('./file_base_area.js').getSortedAvailableFileAreas;
|
||||||
|
@ -76,6 +76,8 @@ exports.getModule = class UploadModule extends MenuModule {
|
||||||
constructor(options) {
|
constructor(options) {
|
||||||
super(options);
|
super(options);
|
||||||
|
|
||||||
|
this.setMergedFlag(MenuFlags.NoHistory);
|
||||||
|
|
||||||
this.interrupt = MenuModule.InterruptTypes.Never;
|
this.interrupt = MenuModule.InterruptTypes.Never;
|
||||||
|
|
||||||
if (_.has(options, 'lastMenuResult.recvFilePaths')) {
|
if (_.has(options, 'lastMenuResult.recvFilePaths')) {
|
||||||
|
|
21
core/user.js
21
core/user.js
|
@ -124,12 +124,29 @@ module.exports = class User {
|
||||||
return isMember;
|
return isMember;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
realName(withUsernameFallback = true) {
|
||||||
|
const realName = this.getProperty(UserProps.RealName);
|
||||||
|
if (realName) {
|
||||||
|
return realName;
|
||||||
|
}
|
||||||
|
if (withUsernameFallback) {
|
||||||
|
return this.username;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
getSanitizedName(type = 'username') {
|
getSanitizedName(type = 'username') {
|
||||||
const name =
|
const name = 'real' === type ? this.realName(true) : this.username;
|
||||||
'real' === type ? this.getProperty(UserProps.RealName) : this.username;
|
|
||||||
return sanatizeFilename(name) || `user${this.userId.toString()}`;
|
return sanatizeFilename(name) || `user${this.userId.toString()}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
emailAddress() {
|
||||||
|
const email = this.getProperty(UserProps.EmailAddress);
|
||||||
|
if (email) {
|
||||||
|
const realName = this.realName(false);
|
||||||
|
return realName ? `${realName} <${email}>` : email;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
isAvailable() {
|
isAvailable() {
|
||||||
return (this.statusFlags & User.StatusFlags.NotAvailable) == 0;
|
return (this.statusFlags & User.StatusFlags.NotAvailable) == 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -93,9 +93,7 @@ module.exports = class User2FA_OTPWebRegister {
|
||||||
}
|
}
|
||||||
|
|
||||||
const message = {
|
const message = {
|
||||||
to: `${
|
to: user.emailAddress(),
|
||||||
user.getProperty(UserProps.RealName) || user.username
|
|
||||||
} <${user.getProperty(UserProps.EmailAddress)}>`,
|
|
||||||
// from will be filled in
|
// from will be filled in
|
||||||
subject: '2-Factor Authentication Registration',
|
subject: '2-Factor Authentication Registration',
|
||||||
text: textTemplate,
|
text: textTemplate,
|
||||||
|
|
|
@ -115,15 +115,15 @@ exports.getModule = class UserConfigModule extends MenuModule {
|
||||||
formData = _.clone(formData);
|
formData = _.clone(formData);
|
||||||
|
|
||||||
const newProperties = {
|
const newProperties = {
|
||||||
[UserProps.RealName]: formData.value.realName,
|
[UserProps.RealName]: formData.value.realName || '',
|
||||||
[UserProps.Birthdate]: getISOTimestampString(
|
[UserProps.Birthdate]: getISOTimestampString(
|
||||||
formData.value.birthdate
|
formData.value.birthdate || moment()
|
||||||
),
|
),
|
||||||
[UserProps.Sex]: formData.value.sex,
|
[UserProps.Sex]: formData.value.sex || '',
|
||||||
[UserProps.Location]: formData.value.location,
|
[UserProps.Location]: formData.value.location || '',
|
||||||
[UserProps.Affiliations]: formData.value.affils,
|
[UserProps.Affiliations]: formData.value.affils || '',
|
||||||
[UserProps.EmailAddress]: formData.value.email,
|
[UserProps.EmailAddress]: formData.value.email || '',
|
||||||
[UserProps.WebAddress]: formData.value.web,
|
[UserProps.WebAddress]: formData.value.web || '',
|
||||||
[UserProps.TermHeight]: formData.value.termHeight.toString(),
|
[UserProps.TermHeight]: formData.value.termHeight.toString(),
|
||||||
[UserProps.ThemeId]:
|
[UserProps.ThemeId]:
|
||||||
self.availThemeInfo[formData.value.theme].themeId,
|
self.availThemeInfo[formData.value.theme].themeId,
|
||||||
|
@ -233,11 +233,7 @@ exports.getModule = class UserConfigModule extends MenuModule {
|
||||||
function populateViews(callback) {
|
function populateViews(callback) {
|
||||||
const user = self.client.user;
|
const user = self.client.user;
|
||||||
|
|
||||||
self.setViewText(
|
self.setViewText('menu', MciCodeIds.RealName, user.realName(false) || '');
|
||||||
'menu',
|
|
||||||
MciCodeIds.RealName,
|
|
||||||
user.properties[UserProps.RealName]
|
|
||||||
);
|
|
||||||
self.setViewText(
|
self.setViewText(
|
||||||
'menu',
|
'menu',
|
||||||
MciCodeIds.BirthDate,
|
MciCodeIds.BirthDate,
|
||||||
|
|
|
@ -143,9 +143,7 @@ class WebPasswordReset {
|
||||||
}
|
}
|
||||||
|
|
||||||
const message = {
|
const message = {
|
||||||
to: `${user.properties[UserProps.RealName] || user.username} <${
|
to: user.emailAddress(),
|
||||||
user.properties[UserProps.EmailAddress]
|
|
||||||
}>`,
|
|
||||||
// from will be filled in
|
// from will be filled in
|
||||||
subject: 'Forgot Password',
|
subject: 'Forgot Password',
|
||||||
text: textTemplate,
|
text: textTemplate,
|
||||||
|
|
|
@ -506,9 +506,7 @@ exports.getModule = class WaitingForCallerModule extends MenuModule {
|
||||||
|
|
||||||
// Current
|
// Current
|
||||||
currentUserName: this.client.user.username,
|
currentUserName: this.client.user.username,
|
||||||
currentUserRealName:
|
currentUserRealName: this.client.user.realName(false) || 'N/A',
|
||||||
this.client.user.getProperty(UserProps.RealName) ||
|
|
||||||
this.client.user.username,
|
|
||||||
availIndicator: availIndicator,
|
availIndicator: availIndicator,
|
||||||
visIndicator: visIndicator,
|
visIndicator: visIndicator,
|
||||||
lastLoginUserName: lastLoginStats.userName,
|
lastLoginUserName: lastLoginStats.userName,
|
||||||
|
|
|
@ -1,19 +1,25 @@
|
||||||
FROM node:14-buster-slim
|
FROM --platform=${BUILDPLATFORM:-linux/amd64} node:20-bookworm-slim
|
||||||
|
|
||||||
|
ARG TARGETPLATFORM
|
||||||
|
ARG BUILDPLATFORM
|
||||||
|
ARG TARGETOS
|
||||||
|
ARG TARGETBRANCH
|
||||||
|
|
||||||
LABEL maintainer="dave@force9.org"
|
LABEL maintainer="dave@force9.org"
|
||||||
|
|
||||||
ENV NVM_DIR /root/.nvm
|
ENV NVM_DIR /root/.nvm
|
||||||
ENV DEBIAN_FRONTEND noninteractive
|
ENV DEBIAN_FRONTEND noninteractive
|
||||||
COPY . /enigma-bbs
|
|
||||||
|
|
||||||
# Do some installing! (and alot of cleaning up) keeping it in one step for less docker layers
|
|
||||||
# - if you need to debug i recommend to break the steps with individual RUNs)
|
# Just copy the package.json so it only needs to build once
|
||||||
|
COPY package.json /enigma-bbs/
|
||||||
|
|
||||||
|
# Install APT and NPM packages
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
&& apt-get install -y \
|
&& apt-get install -y \
|
||||||
git \
|
git \
|
||||||
curl \
|
curl \
|
||||||
build-essential \
|
build-essential \
|
||||||
python \
|
|
||||||
python3 \
|
python3 \
|
||||||
libssl-dev \
|
libssl-dev \
|
||||||
lrzsz \
|
lrzsz \
|
||||||
|
@ -21,8 +27,22 @@ RUN apt-get update \
|
||||||
lhasa \
|
lhasa \
|
||||||
unrar-free \
|
unrar-free \
|
||||||
p7zip-full \
|
p7zip-full \
|
||||||
|
dos2unix \
|
||||||
|
&& npm set progress=false && npm config set depth 0 \
|
||||||
|
&& npm install -g npm@latest \
|
||||||
&& npm install -g pm2 \
|
&& npm install -g pm2 \
|
||||||
&& cd /enigma-bbs && npm install --only=production \
|
&& cd /enigma-bbs && npm install
|
||||||
|
|
||||||
|
|
||||||
|
# Do this after npm install to avoid cache-miss on every code change
|
||||||
|
COPY . /enigma-bbs
|
||||||
|
|
||||||
|
# Then run post source copy steps that have to happen every time
|
||||||
|
RUN dos2unix /enigma-bbs/docker/bin/docker-entrypoint.sh \
|
||||||
|
&& apt-get remove dos2unix -y \
|
||||||
|
&& chmod +x /enigma-bbs/docker/bin/docker-entrypoint.sh \
|
||||||
|
&& cp -f /enigma-bbs/docker/bin/sexyz /usr/local/bin \
|
||||||
|
&& cd /enigma-bbs \
|
||||||
&& pm2 start main.js \
|
&& pm2 start main.js \
|
||||||
&& mkdir -p /enigma-bbs-pre/art \
|
&& mkdir -p /enigma-bbs-pre/art \
|
||||||
&& mkdir /enigma-bbs-pre/mods \
|
&& mkdir /enigma-bbs-pre/mods \
|
||||||
|
@ -30,15 +50,11 @@ RUN apt-get update \
|
||||||
&& cp -rp art/* ../enigma-bbs-pre/art/ \
|
&& cp -rp art/* ../enigma-bbs-pre/art/ \
|
||||||
&& cp -rp mods/* ../enigma-bbs-pre/mods/ \
|
&& cp -rp mods/* ../enigma-bbs-pre/mods/ \
|
||||||
&& cp -rp config/* ../enigma-bbs-pre/config/ \
|
&& cp -rp config/* ../enigma-bbs-pre/config/ \
|
||||||
&& apt-get remove build-essential python python3 libssl-dev git curl -y \
|
&& apt-get remove build-essential python3 libssl-dev git curl -y \
|
||||||
&& apt-get autoremove -y \
|
&& apt-get autoremove -y \
|
||||||
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \
|
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \
|
||||||
&& apt-get clean
|
&& apt-get clean
|
||||||
|
|
||||||
# sexyz
|
|
||||||
COPY docker/bin/sexyz /usr/local/bin
|
|
||||||
RUN chmod +x /enigma-bbs/docker/bin/docker-entrypoint.sh
|
|
||||||
|
|
||||||
# enigma storage mounts
|
# enigma storage mounts
|
||||||
VOLUME /enigma-bbs/art
|
VOLUME /enigma-bbs/art
|
||||||
VOLUME /enigma-bbs/config
|
VOLUME /enigma-bbs/config
|
||||||
|
|
|
@ -30,3 +30,4 @@ end
|
||||||
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
||||||
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
||||||
|
|
||||||
|
gem "webrick"
|
|
@ -1,15 +1,15 @@
|
||||||
GEM
|
GEM
|
||||||
remote: https://rubygems.org/
|
remote: https://rubygems.org/
|
||||||
specs:
|
specs:
|
||||||
activesupport (7.0.4.1)
|
activesupport (7.0.7.2)
|
||||||
concurrent-ruby (~> 1.0, >= 1.0.2)
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
||||||
i18n (>= 1.6, < 2)
|
i18n (>= 1.6, < 2)
|
||||||
minitest (>= 5.1)
|
minitest (>= 5.1)
|
||||||
tzinfo (~> 2.0)
|
tzinfo (~> 2.0)
|
||||||
addressable (2.8.0)
|
addressable (2.8.5)
|
||||||
public_suffix (>= 2.0.2, < 5.0)
|
public_suffix (>= 2.0.2, < 6.0)
|
||||||
colorator (1.1.0)
|
colorator (1.1.0)
|
||||||
concurrent-ruby (1.1.10)
|
concurrent-ruby (1.2.2)
|
||||||
cssminify2 (2.0.1)
|
cssminify2 (2.0.1)
|
||||||
em-websocket (0.5.3)
|
em-websocket (0.5.3)
|
||||||
eventmachine (>= 0.12.9)
|
eventmachine (>= 0.12.9)
|
||||||
|
@ -19,14 +19,14 @@ GEM
|
||||||
ffi (1.15.5)
|
ffi (1.15.5)
|
||||||
forwardable-extended (2.6.0)
|
forwardable-extended (2.6.0)
|
||||||
gemoji (3.0.1)
|
gemoji (3.0.1)
|
||||||
html-pipeline (2.14.0)
|
html-pipeline (2.14.3)
|
||||||
activesupport (>= 2)
|
activesupport (>= 2)
|
||||||
nokogiri (>= 1.4)
|
nokogiri (>= 1.4)
|
||||||
htmlcompressor (0.4.0)
|
htmlcompressor (0.4.0)
|
||||||
http_parser.rb (0.8.0)
|
http_parser.rb (0.8.0)
|
||||||
i18n (1.12.0)
|
i18n (1.14.1)
|
||||||
concurrent-ruby (~> 1.0)
|
concurrent-ruby (~> 1.0)
|
||||||
jekyll (4.2.1)
|
jekyll (4.2.2)
|
||||||
addressable (~> 2.4)
|
addressable (~> 2.4)
|
||||||
colorator (~> 1.0)
|
colorator (~> 1.0)
|
||||||
em-websocket (~> 0.5)
|
em-websocket (~> 0.5)
|
||||||
|
@ -49,7 +49,7 @@ GEM
|
||||||
uglifier (~> 4.1)
|
uglifier (~> 4.1)
|
||||||
jekyll-relative-links (0.6.1)
|
jekyll-relative-links (0.6.1)
|
||||||
jekyll (>= 3.3, < 5.0)
|
jekyll (>= 3.3, < 5.0)
|
||||||
jekyll-sass-converter (2.1.0)
|
jekyll-sass-converter (2.2.0)
|
||||||
sassc (> 2.0.1, < 3.0)
|
sassc (> 2.0.1, < 3.0)
|
||||||
jekyll-seo-tag (2.7.1)
|
jekyll-seo-tag (2.7.1)
|
||||||
jekyll (>= 3.8, < 5.0)
|
jekyll (>= 3.8, < 5.0)
|
||||||
|
@ -64,42 +64,46 @@ GEM
|
||||||
gemoji (~> 3.0)
|
gemoji (~> 3.0)
|
||||||
html-pipeline (~> 2.2)
|
html-pipeline (~> 2.2)
|
||||||
jekyll (>= 3.0, < 5.0)
|
jekyll (>= 3.0, < 5.0)
|
||||||
json (2.6.1)
|
json (2.6.3)
|
||||||
json-minify (0.0.3)
|
json-minify (0.0.3)
|
||||||
json (> 0)
|
json (> 0)
|
||||||
kramdown (2.3.1)
|
kramdown (2.4.0)
|
||||||
rexml
|
rexml
|
||||||
kramdown-parser-gfm (1.1.0)
|
kramdown-parser-gfm (1.1.0)
|
||||||
kramdown (~> 2.0)
|
kramdown (~> 2.0)
|
||||||
liquid (4.0.3)
|
liquid (4.0.4)
|
||||||
listen (3.7.1)
|
listen (3.8.0)
|
||||||
rb-fsevent (~> 0.10, >= 0.10.3)
|
rb-fsevent (~> 0.10, >= 0.10.3)
|
||||||
rb-inotify (~> 0.9, >= 0.9.10)
|
rb-inotify (~> 0.9, >= 0.9.10)
|
||||||
mercenary (0.4.0)
|
mercenary (0.4.0)
|
||||||
minitest (5.17.0)
|
minitest (5.19.0)
|
||||||
nokogiri (1.13.6-x86_64-linux)
|
nokogiri (1.15.4-aarch64-linux)
|
||||||
|
racc (~> 1.4)
|
||||||
|
nokogiri (1.15.4-x86_64-linux)
|
||||||
racc (~> 1.4)
|
racc (~> 1.4)
|
||||||
pathutil (0.16.2)
|
pathutil (0.16.2)
|
||||||
forwardable-extended (~> 2.6)
|
forwardable-extended (~> 2.6)
|
||||||
public_suffix (4.0.6)
|
public_suffix (5.0.3)
|
||||||
racc (1.6.0)
|
racc (1.7.1)
|
||||||
rb-fsevent (0.11.0)
|
rb-fsevent (0.11.2)
|
||||||
rb-inotify (0.10.1)
|
rb-inotify (0.10.1)
|
||||||
ffi (~> 1.0)
|
ffi (~> 1.0)
|
||||||
rexml (3.2.5)
|
rexml (3.2.6)
|
||||||
rouge (3.28.0)
|
rouge (3.30.0)
|
||||||
safe_yaml (1.0.5)
|
safe_yaml (1.0.5)
|
||||||
sassc (2.4.0)
|
sassc (2.4.0)
|
||||||
ffi (~> 1.9)
|
ffi (~> 1.9)
|
||||||
terminal-table (2.0.0)
|
terminal-table (2.0.0)
|
||||||
unicode-display_width (~> 1.1, >= 1.1.1)
|
unicode-display_width (~> 1.1, >= 1.1.1)
|
||||||
tzinfo (2.0.5)
|
tzinfo (2.0.6)
|
||||||
concurrent-ruby (~> 1.0)
|
concurrent-ruby (~> 1.0)
|
||||||
uglifier (4.2.0)
|
uglifier (4.2.0)
|
||||||
execjs (>= 0.3.0, < 3)
|
execjs (>= 0.3.0, < 3)
|
||||||
unicode-display_width (1.8.0)
|
unicode-display_width (1.8.0)
|
||||||
|
webrick (1.8.1)
|
||||||
|
|
||||||
PLATFORMS
|
PLATFORMS
|
||||||
|
aarch64-linux
|
||||||
x86_64-linux
|
x86_64-linux
|
||||||
|
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
|
@ -111,6 +115,7 @@ DEPENDENCIES
|
||||||
jekyll-theme-hacker (~> 0.2.0)
|
jekyll-theme-hacker (~> 0.2.0)
|
||||||
jemoji (~> 0.12.0)
|
jemoji (~> 0.12.0)
|
||||||
tzinfo-data
|
tzinfo-data
|
||||||
|
webrick
|
||||||
|
|
||||||
BUNDLED WITH
|
BUNDLED WITH
|
||||||
2.3.5
|
2.4.19
|
||||||
|
|
|
@ -54,6 +54,7 @@ collections:
|
||||||
- installation/network.md
|
- installation/network.md
|
||||||
- installation/testing.md
|
- installation/testing.md
|
||||||
- installation/production.md
|
- installation/production.md
|
||||||
|
- installation/development.md
|
||||||
- configuration/creating-config.md
|
- configuration/creating-config.md
|
||||||
- configuration/sysop-setup.md
|
- configuration/sysop-setup.md
|
||||||
- configuration/config-files.md
|
- configuration/config-files.md
|
||||||
|
@ -130,4 +131,5 @@ collections:
|
||||||
- admin/oputil.md
|
- admin/oputil.md
|
||||||
- admin/updating.md
|
- admin/updating.md
|
||||||
- troubleshooting/monitoring-logs.md
|
- troubleshooting/monitoring-logs.md
|
||||||
|
- troubleshooting/ssh-troubleshooting.md
|
||||||
|
|
||||||
|
|
|
@ -323,7 +323,7 @@ qwk-export arguments:
|
||||||
|
|
||||||
| Action | Description | Examples |
|
| Action | Description | Examples |
|
||||||
|-----------|-------------------|---------------------------------------|
|
|-----------|-------------------|---------------------------------------|
|
||||||
| `import-areas` | Imports areas using a FidoNet style *.NA or AREAS.BBS formatted file. Optionally maps areas to FTN networks. | `./oputil.js config import-areas /some/path/l33tnet.na` |
|
| `import-areas` | Imports areas using a FidoNet style *.NA or AREAS.BBS formatted file. Optionally maps areas to FTN networks. | `./oputil.js mb import-areas /some/path/l33tnet.na` |
|
||||||
| `areafix` | Utility for sending AreaFix mails without logging into the system | |
|
| `areafix` | Utility for sending AreaFix mails without logging into the system | |
|
||||||
| `qwk-dump` | Dump a QWK packet to stdout | `./oputil.js mb qwk-dump /path/to/XIBALBA.QWK` |
|
| `qwk-dump` | Dump a QWK packet to stdout | `./oputil.js mb qwk-dump /path/to/XIBALBA.QWK` |
|
||||||
| `qwk-export` | Export messages to a QWK packet | `./oputil.js mb qwk-export /path/to/XIBALBA.QWK` |
|
| `qwk-export` | Export messages to a QWK packet | `./oputil.js mb qwk-export /path/to/XIBALBA.QWK` |
|
||||||
|
|
|
@ -59,13 +59,15 @@ The `config` block for a menu entry can contain common members as well as a per-
|
||||||
| `menuFlags` | An array of menu flag(s) controlling menu behavior. See **Menu Flags** below.
|
| `menuFlags` | An array of menu flag(s) controlling menu behavior. See **Menu Flags** below.
|
||||||
|
|
||||||
#### Menu Flags
|
#### Menu Flags
|
||||||
The `menuFlags` field of a `config` block can change default behavior of a particular menu.
|
The `menuFlags` field of a `config` block can change default behavior of a particular menu:
|
||||||
|
|
||||||
| Flag | Description |
|
| Flag | Description |
|
||||||
|------|-------------|
|
|------|-------------|
|
||||||
| `noHistory` | Prevents the menu from remaining in the menu stack / history. When this flag is set, when the **next** menu falls back, this menu will be skipped and the previous menu again displayed instead. Example: menuA -> menuB(noHistory) -> menuC: Exiting menuC returns the user to menuA. |
|
| `noHistory` | When leaving the current menu to load/chain to another, remove this menu from history. In other words, the fallback from the next menu would *not* be this one, but the previous. |
|
||||||
| `popParent` | When *this* menu is exited, fall back beyond the parent as well. Often used in combination with `noHistory`. |
|
| `mergeFlags` | Generally used in code only: Request that any flags from `menu.hjson` |
|
||||||
| `forwardArgs` | If set, when the next menu is entered, forward any `extraArgs` arguments to *this* menu on to it. |
|
| `forwardArgs` | Forward this menu's `extraArgs` to the next. |
|
||||||
|
|
||||||
|
> 💡 In JavaScript code, `MenuFlags` from `menu_module.js` contains constants for these flags.
|
||||||
|
|
||||||
|
|
||||||
## Forms
|
## Forms
|
||||||
|
|
|
@ -3,7 +3,7 @@ layout: page
|
||||||
title: TIC Support
|
title: TIC Support
|
||||||
---
|
---
|
||||||
## TIC Support
|
## TIC Support
|
||||||
ENiGMA½ supports FidoNet-Style TIC file attachments by mapping TIC areas to local file areas.
|
ENiGMA½ supports FidoNet-Style TIC file attachments by mapping external TIC area tags to local file areas.
|
||||||
|
|
||||||
Under a given node defined in the `ftn_bso` config section in `config.hjson` (see
|
Under a given node defined in the `ftn_bso` config section in `config.hjson` (see
|
||||||
[BSO Import/Export](../messageareas/bso-import-export.md)), TIC configuration may be supplied:
|
[BSO Import/Export](../messageareas/bso-import-export.md)), TIC configuration may be supplied:
|
||||||
|
@ -17,9 +17,9 @@ Under a given node defined in the `ftn_bso` config section in `config.hjson` (se
|
||||||
packetPassword: mypass
|
packetPassword: mypass
|
||||||
encoding: cp437
|
encoding: cp437
|
||||||
archiveType: zip
|
archiveType: zip
|
||||||
tic: {
|
tic: { // <--- General TIC config for 46:*
|
||||||
password: TESTY-TEST
|
password: TESTY-TEST
|
||||||
uploadBy: Agoranet TIC
|
uploadBy: AgoraNet TIC
|
||||||
allowReplace: true
|
allowReplace: true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -29,7 +29,15 @@ Under a given node defined in the `ftn_bso` config section in `config.hjson` (se
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
You then need to configure the mapping between TIC areas you want to carry, and the file base area and storage tag for them to be tossed to. Optionally you can also add hashtags to the tossed files to assist users in searching for files:
|
Valid `tic` members:
|
||||||
|
|
||||||
|
| Item | Required | Description |
|
||||||
|
|--------|---------------|------------------|
|
||||||
|
| `password` | :-1: | TIC packet password, if required |
|
||||||
|
| `uploadedBy` | :-1: | Sets the "uploaded by" field for TIC attachments, for example "AgoraNet TIC" |
|
||||||
|
| `allowReplace` | :-1: | Set to `true` to allow TIC attachments to replace each other. This is especially handy for things like weekly node list attachments |
|
||||||
|
|
||||||
|
Next, we need to configure the mapping between TIC areas you want to carry, and the file base area (and, optionally, specific storage tag) for them to be tossed to. You can also add hashtags to the tossed files to assist users in searching for files:
|
||||||
|
|
||||||
```hjson
|
```hjson
|
||||||
ticAreas: {
|
ticAreas: {
|
||||||
|
@ -41,10 +49,22 @@ ticAreas: {
|
||||||
}
|
}
|
||||||
|
|
||||||
```
|
```
|
||||||
Multiple TIC areas can be mapped to a single file base area.
|
|
||||||
|
> :information_source: Note that in the example above `agn_node` represents the **external** network area tag, usually represented in all caps. In this case, `AGN_NODE`.
|
||||||
|
|
||||||
|
Valid `ticAreas` members under a given node mapping are as follows:
|
||||||
|
|
||||||
|
| Item | Required | Description |
|
||||||
|
|--------|---------------|------------------|
|
||||||
|
| `areaTag` | :+1: | Specifies the local areaTag in which to place TIC attachments |
|
||||||
|
| `storageTag` | :-1: | Optionally, set a specific storageTag. If not set, the default for this area will be used. |
|
||||||
|
| `hashTags` | :-1: | One or more optional hash tags to assign TIC attachments in this area. |
|
||||||
|
|
||||||
|
|
||||||
|
💡 Multiple TIC areas can be mapped to a single file base area.
|
||||||
|
|
||||||
### Example Configuration
|
### Example Configuration
|
||||||
An example configuration linking file base areas, FTN BSO node configuration and TIC area configuration.
|
Example configuration fragments mapping file base areas, FTN BSO node configuration and TIC area configuration.
|
||||||
|
|
||||||
```hjson
|
```hjson
|
||||||
fileBase: {
|
fileBase: {
|
||||||
|
@ -79,11 +99,9 @@ scannerTossers: {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
ticAreas: {
|
ticAreas: {
|
||||||
|
// here we map AgoraNet AGN_NODE -> local msgNetworks file area
|
||||||
agn_node: {
|
agn_node: {
|
||||||
areaTag: msgNetworks
|
areaTag: msgNetworks
|
||||||
storageTag: msg_network
|
storageTag: msg_network
|
||||||
|
@ -95,6 +113,10 @@ ticAreas: {
|
||||||
hashTags: agoranet,infopack
|
hashTags: agoranet,infopack
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## See Also
|
## See Also
|
||||||
|
|
|
@ -0,0 +1,38 @@
|
||||||
|
---
|
||||||
|
layout: page
|
||||||
|
title: Development Environment Setup
|
||||||
|
---
|
||||||
|
_Note:_ This is only useful for people who are looking to contribute to the ENiGMA½ source base itself. Those that are just setting up a new BBS system do not need this section.
|
||||||
|
|
||||||
|
The easiest way to get started with development on ENiGMA½ is via the pre-configured Visual Studio Code remote docker container environment. This setup will download and configure everything needed with minimal interaction. It also works cross-platform.
|
||||||
|
|
||||||
|
* Install [Visual Studio Code](https://code.visualstudio.com/download)
|
||||||
|
* Install [Docker](https://docs.docker.com/engine/install/)
|
||||||
|
* Clone the [ENiGMA½](https://github.com/NuSkooler/enigma-bbs) repository.
|
||||||
|
* Choose "Open Folder" from Visual Studio Code and open the location where you cloned the repository.
|
||||||
|
|
||||||
|
That's it! Visual Studio Code should prompt you for everything else that is needed, including some useful extensions for development.
|
||||||
|
|
||||||
|
## Tasks
|
||||||
|
|
||||||
|
Once it completes, there are a few tasks and run-configs that are useful. Open up the command pallete and search/choose "Tasks> Run Task". From there you can run the following tasks:
|
||||||
|
|
||||||
|
### Start Jekyll (ENiGMA½ documentation server)
|
||||||
|
|
||||||
|
This task will start the Jekyll server to perform local testing of changes to documentation. After running this task, open a browser to (http://localhost:4000/enigma-bbs/) to see the documentation.
|
||||||
|
|
||||||
|
### (re)build Jekyll bundles
|
||||||
|
|
||||||
|
When the image is created the Jekyll bundles are installed, so in general there shouldn't be much need to run this task. This is available however in case soemthing goes wrong or you are working on the Jekyll setup itself.
|
||||||
|
|
||||||
|
### (re)build node modules
|
||||||
|
|
||||||
|
Used to re-generate the node modules. Generally shouldn't be necessary unless something is broken or you are adding/changing versions of dependencies.
|
||||||
|
|
||||||
|
### ENiGMA½ new configuration
|
||||||
|
|
||||||
|
This task executes `oputil.js` in order to create a new BBS configuration (useful if you have just checked out the code and haven't setup any configuration yet.)
|
||||||
|
|
||||||
|
## Run / Debug config
|
||||||
|
|
||||||
|
There is also a default "Launch Program" config (hotkey access via F5 / Ctrl-Shift-D.) This will launch ENiGMA½. Once it has launched, access the system via telnet, port 8888 as usual.
|
|
@ -71,5 +71,9 @@ Customising the Docker image is easy!
|
||||||
1. Clone the ENiGMA-BBS source.
|
1. Clone the ENiGMA-BBS source.
|
||||||
2. Build the image
|
2. Build the image
|
||||||
```bash
|
```bash
|
||||||
docker build -f ./docker/Dockerfile .
|
docker build -t enigmabbs -f ./docker/Dockerfile .
|
||||||
|
```
|
||||||
|
3. Run the image
|
||||||
|
```bash
|
||||||
|
docker run -it -p 8888:8888 --name "ENiGMABBS" -v "$(pwd)/config:/enigma-bbs/config" -v "$(pwd)/db:/enigma-bbs/db" -v "$(pwd)/logs:/enigma-bbs/logs" -v "$(pwd)/filebase:/enigma-bbs/filebase" -v "$(pwd)/art:/enigma-bbs/art" -v "$(pwd)/mods:/enigma-bbs/mods" -v "$(pwd)/mail:/mail" enigmabbs
|
||||||
```
|
```
|
||||||
|
|
|
@ -58,7 +58,6 @@ showFileBaseAreaArt: {
|
||||||
method: fileBaseArea
|
method: fileBaseArea
|
||||||
cls: true
|
cls: true
|
||||||
pause: true
|
pause: true
|
||||||
menuFlags: [ "popParent", "noHistory" ]
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
|
@ -3,9 +3,13 @@ layout: page
|
||||||
title: SSH Server
|
title: SSH Server
|
||||||
---
|
---
|
||||||
## SSH Login Server
|
## SSH Login Server
|
||||||
|
|
||||||
The ENiGMA½ SSH *login server* allows secure user logins over SSH (ssh://).
|
The ENiGMA½ SSH *login server* allows secure user logins over SSH (ssh://).
|
||||||
|
|
||||||
|
*Note:* If you run into any troubles during SSH setup, please see [Troubleshooting SSH](../../troubleshooting/ssh-troubleshooting.md)
|
||||||
|
|
||||||
## Configuration
|
## Configuration
|
||||||
|
|
||||||
Entries available under `config.loginServers.ssh`:
|
Entries available under `config.loginServers.ssh`:
|
||||||
|
|
||||||
| Item | Required | Description |
|
| Item | Required | Description |
|
||||||
|
@ -20,10 +24,8 @@ Entries available under `config.loginServers.ssh`:
|
||||||
| `algorithms` | :-1: | Configuration block for SSH algorithms. Includes keys of `kex`, `cipher`, `hmac`, and `compress`. See the algorithms section in the [ssh2-streams](https://github.com/mscdex/ssh2-streams#ssh2stream-methods) documentation for details. For defaults set by ENiGMA½, see `core/config_default.js`.
|
| `algorithms` | :-1: | Configuration block for SSH algorithms. Includes keys of `kex`, `cipher`, `hmac`, and `compress`. See the algorithms section in the [ssh2-streams](https://github.com/mscdex/ssh2-streams#ssh2stream-methods) documentation for details. For defaults set by ENiGMA½, see `core/config_default.js`.
|
||||||
| `traceConnections` | :-1: | Set to `true` to enable full trace-level information on SSH connections.
|
| `traceConnections` | :-1: | Set to `true` to enable full trace-level information on SSH connections.
|
||||||
|
|
||||||
|
|
||||||
* *IMPORTANT* With the `privateKeyPass` option set, make sure that you verify that the config file is not readable by other users!
|
* *IMPORTANT* With the `privateKeyPass` option set, make sure that you verify that the config file is not readable by other users!
|
||||||
|
|
||||||
|
|
||||||
### Example Configuration
|
### Example Configuration
|
||||||
|
|
||||||
```hjson
|
```hjson
|
||||||
|
@ -40,42 +42,93 @@ Entries available under `config.loginServers.ssh`:
|
||||||
```
|
```
|
||||||
|
|
||||||
## Generate a SSH Private Key
|
## Generate a SSH Private Key
|
||||||
|
|
||||||
To utilize the SSH server, an SSH Private Key (PK) will need generated. OpenSSH or (with some versions) OpenSSL can be used for this task:
|
To utilize the SSH server, an SSH Private Key (PK) will need generated. OpenSSH or (with some versions) OpenSSL can be used for this task:
|
||||||
|
|
||||||
### OpenSSH
|
### OpenSSH (Preferred)
|
||||||
|
|
||||||
```bash
|
#### OpenSSH Install - Linux / Mac
|
||||||
ssh-keygen -m PEM -h -f config/ssh_private_key.pem
|
|
||||||
|
If it is not already available, install OpenSSH using the package manager of your choice (should be pre-installed on most distributions.)
|
||||||
|
|
||||||
|
#### Running OpenSSH - Linux / Mac
|
||||||
|
|
||||||
|
From the root directory of the Enigma BBS, run the following:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
mkdir -p config/security
|
||||||
|
ssh-keygen -t rsa -m PEM -h -f config/security/ssh_private_key.pem
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### Windows Install - OpenSSH
|
||||||
|
|
||||||
|
OpenSSH may already be installed, try running `ssh-keygen.exe`. If not, see this page: [Install OpenSSH for Windows](https://learn.microsoft.com/en-us/windows-server/administration/openssh/openssh_install_firstuse?tabs=gui)
|
||||||
|
|
||||||
|
#### Running OpenSSH - Windows
|
||||||
|
|
||||||
|
After installation, go to the root directory of your enigma project and run:
|
||||||
|
|
||||||
|
```powershell
|
||||||
|
mkdir .\config\security -ErrorAction SilentlyContinue
|
||||||
|
ssh-keygen.exe -t rsa -m PEM -h -f .\config\security\ssh_private_key.pem
|
||||||
|
```
|
||||||
|
|
||||||
|
#### ssh-keygen options
|
||||||
|
|
||||||
Option descriptions:
|
Option descriptions:
|
||||||
|
|
||||||
| Option | Description |
|
| Option | Description |
|
||||||
|------|-------------|
|
|------|-------------|
|
||||||
|
| `-t rsa` | Use the RSA algorithm needed for the `ssh2` library |
|
||||||
| `-m PEM` | Set the output format to `PEM`, compatible with the `ssh2` library |
|
| `-m PEM` | Set the output format to `PEM`, compatible with the `ssh2` library |
|
||||||
| `-h` | Generate a host key |
|
| `-h` | Generate a host key |
|
||||||
| `-f config/ssh_private_key.pem` | Filename for the private key. Used in the `privateKeyPem` option in the configuration |
|
| `-f config/ssh_private_key.pem` | Filename for the private key. Used in the `privateKeyPem` option in the configuration |
|
||||||
|
|
||||||
When you execute the `ssh-keygen` command it will ask for a passphrase (and a confirmation.) This should then be used as the value for `privateKeyPass` in the configuration.
|
When you execute the `ssh-keygen` command it will ask for a passphrase (and a confirmation.) This should then be used as the value for `privateKeyPass` in the configuration.
|
||||||
|
|
||||||
|
|
||||||
### OpenSSL
|
### OpenSSL
|
||||||
|
|
||||||
If you do not have OpenSSH installed or if you have trouble with the above OpenSSH commands, using some versions for OpenSSL (before version 3) the following commands may work as well:
|
#### Open SSL Install - Linux / Mac
|
||||||
|
|
||||||
|
If not already installed, install via the `openssl` package on most package managers.
|
||||||
|
|
||||||
```bash
|
#### Open SSL Install - Windows
|
||||||
openssl genpkey -algorithm RSA -pkeyopt rsa_keygen_bits:2048 -pkeyopt rsa_keygen_pubexp:65537 | openssl rsa -out ./config/ssh_private_key.pem -aes128
|
|
||||||
|
```powershell
|
||||||
|
winget install -e --id ShiningLight.OpenSSL
|
||||||
```
|
```
|
||||||
|
|
||||||
Or for even older OpenSSL versions:
|
#### Running OpenSSL
|
||||||
|
|
||||||
```bash
|
*Note:* Using `ssh-keygen` from OpenSSL is recommended where possible. If you have trouble with the above OpenSSH commands, using some versions for OpenSSL (before version 3) the following commands may work as well:
|
||||||
|
|
||||||
|
#### Running OpenSSL - Linux / Mac
|
||||||
|
|
||||||
|
Run the following from the root directory of Enigma
|
||||||
|
|
||||||
|
```shell
|
||||||
|
mkdir -p config/security
|
||||||
|
openssl genpkey -algorithm RSA -pkeyopt rsa_keygen_bits:2048 -pkeyopt rsa_keygen_pubexp:65537 | openssl rsa -out ./config/security/ssh_private_key.pem -aes128
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Running OpenSSL - Windows
|
||||||
|
|
||||||
|
Run the following from the root directory of Enigma (note: you may need to specify the full path to openssl.exe if it isn't in your system path, on my system it was `C:\Program Files\OpenSSL-Win64\bin\openssl.exe`):
|
||||||
|
|
||||||
|
```powershell
|
||||||
|
mkdir .\config\security -ErrorAction SilentlyContinue
|
||||||
|
openssl.exe genpkey -algorithm RSA -pkeyopt rsa_keygen_bits:2048 -pkeyopt rsa_keygen_pubexp:65537 | openssl.exe rsa -out ./config/security/ssh_private_key.pem -aes128
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Running Older OpenSSL
|
||||||
|
|
||||||
|
For older OpenSSL versions, the following command has been known to work:
|
||||||
|
|
||||||
|
```shell
|
||||||
openssl genrsa -aes128 -out ./config/ssh_private_key.pem 2048
|
openssl genrsa -aes128 -out ./config/ssh_private_key.pem 2048
|
||||||
```
|
```
|
||||||
|
|
||||||
Note that you may need `-3des` for very old implementations or SSH clients!
|
*Note:* that you may need `-3des` for very old implementations or SSH clients!
|
||||||
|
|
||||||
|
|
||||||
## Prompt
|
## Prompt
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,45 @@
|
||||||
|
---
|
||||||
|
layout: page
|
||||||
|
title: Troubleshooting SSH
|
||||||
|
---
|
||||||
|
|
||||||
|
Stuck with errors trying to get your SSH setup configured? See below for some common problems. Or as always, reach out to us by creating an [Issue](https://github.com/NuSkooler/enigma-bbs/issues) or start a [Discussion](https://github.com/NuSkooler/enigma-bbs/discussions)
|
||||||
|
|
||||||
|
## No Such File or Directory
|
||||||
|
|
||||||
|
***Symptom:***
|
||||||
|
BBS not starting with an error similar to the following:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
Error initializing: Error: ENOENT: no such file or directory, open '<path>/config/security/ssh_private_key.pem'
|
||||||
|
```
|
||||||
|
|
||||||
|
***Solution:***
|
||||||
|
Several things can cause this:
|
||||||
|
|
||||||
|
1. `ssh_private_key.pem` was installed to the wrong location. Make sure that it is in the `config/security` directory and has the name matching the error message. You can also change your `config.hjson` if you prefer to point to the location of the key file.
|
||||||
|
2. `ssh_private_key.pem` has the wrong file permissions. Verify that the file will be readable by the user that the BBS is running as. Because it is a cryptographic key however, we do recommend that access is restricted only to that user.
|
||||||
|
|
||||||
|
## Error With Netrunner
|
||||||
|
|
||||||
|
***Symptom:***
|
||||||
|
Some ssh clients connect, but Netrunner (and other older clients) get a connection failed message and the following is in the log:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
"level":40,"error":"Handshake failed","code":2,"msg":"SSH connection error"
|
||||||
|
```
|
||||||
|
|
||||||
|
***Solution:***
|
||||||
|
|
||||||
|
The key was most likely not generated with the `-t rsa` option, and is using a newer algorithm that is not supported by Netrunner and similar clients. Regenerate the certificate with the `-t rsa` option.
|
||||||
|
|
||||||
|
***Symptom:***
|
||||||
|
Some ssh clients connect, but Netrunner (and other older clients) get a connection failed message and the following is in the log:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
"level":40,"error":"Group exchange not implemented for server","msg":"SSH connection error"
|
||||||
|
```
|
||||||
|
|
||||||
|
***Solution:***
|
||||||
|
|
||||||
|
Remove the following encryption protocols from your `config.hjson`: `diffie-hellman-group-exchange-sha256` and `diffie-hellman-group-exchange-sha1`
|
|
@ -388,7 +388,7 @@
|
||||||
art: FEMPTYQ
|
art: FEMPTYQ
|
||||||
config: {
|
config: {
|
||||||
pause: true
|
pause: true
|
||||||
menuFlags: [ "noHistory", "popParent" ]
|
menuFlags: [ "noHistory" ]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -779,7 +779,7 @@
|
||||||
art: FBNORES
|
art: FBNORES
|
||||||
config: {
|
config: {
|
||||||
pause: true
|
pause: true
|
||||||
menuFlags: [ "noHistory", "popParent" ]
|
menuFlags: [ "noHistory" ]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -807,7 +807,7 @@
|
||||||
art: FBNORES
|
art: FBNORES
|
||||||
config: {
|
config: {
|
||||||
pause: true
|
pause: true
|
||||||
menuFlags: [ "noHistory", "popParent" ]
|
menuFlags: [ "noHistory" ]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -852,7 +852,7 @@
|
||||||
art: ULNOAREA
|
art: ULNOAREA
|
||||||
config: {
|
config: {
|
||||||
pause: true
|
pause: true
|
||||||
menuFlags: [ "noHistory", "popParent" ]
|
menuFlags: [ "noHistory" ]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -776,7 +776,7 @@
|
||||||
key: confTag
|
key: confTag
|
||||||
pause: true
|
pause: true
|
||||||
cls: true
|
cls: true
|
||||||
menuFlags: [ "popParent", "noHistory" ]
|
menuFlags: [ "noHistory" ]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -794,7 +794,7 @@
|
||||||
key: areaTag
|
key: areaTag
|
||||||
pause: true
|
pause: true
|
||||||
cls: true
|
cls: true
|
||||||
menuFlags: [ "popParent", "noHistory" ]
|
menuFlags: [ "noHistory" ]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -50,17 +50,17 @@
|
||||||
"minimist": "^1.2.6",
|
"minimist": "^1.2.6",
|
||||||
"moment": "2.29.4",
|
"moment": "2.29.4",
|
||||||
"nntp-server": "3.1.0",
|
"nntp-server": "3.1.0",
|
||||||
"node-pty": "0.10.1",
|
"node-pty": "1.0.0",
|
||||||
"nodemailer": "6.7.7",
|
"nodemailer": "6.7.7",
|
||||||
"otplib": "11.0.1",
|
"otplib": "11.0.1",
|
||||||
"qrcode-generator": "^1.4.4",
|
"qrcode-generator": "^1.4.4",
|
||||||
"rlogin": "^1.0.0",
|
"rlogin": "^1.0.0",
|
||||||
"sane": "5.0.1",
|
"sane": "5.0.1",
|
||||||
"sanitize-filename": "^1.6.3",
|
"sanitize-filename": "^1.6.3",
|
||||||
"sqlite3": "5.0.11",
|
"sqlite3": "5.1.6",
|
||||||
"sqlite3-trans": "1.3.0",
|
"sqlite3-trans": "1.3.0",
|
||||||
"ssh2": "1.11.0",
|
"ssh2": "1.14.0",
|
||||||
"systeminformation": "5.12.3",
|
"systeminformation": "5.21.7",
|
||||||
"telnet-socket": "0.2.4",
|
"telnet-socket": "0.2.4",
|
||||||
"temptmp": "^1.1.0",
|
"temptmp": "^1.1.0",
|
||||||
"uuid": "8.3.2",
|
"uuid": "8.3.2",
|
||||||
|
|
Loading…
Reference in New Issue