Merge branch 'master' of ssh://numinibsd/git/base/enigma-bbs

This commit is contained in:
Bryan Ashby 2016-08-30 21:59:29 -06:00
commit 61bddab062
8 changed files with 69 additions and 25 deletions

View File

@ -6,7 +6,7 @@ ENiGMA½ is a modern BBS software with a nostalgic flair!
## Features Available Now ## Features Available Now
* Multi platform: Anywhere Node.js runs likely works (tested under Linux and OS X) * Multi platform: Anywhere Node.js runs likely works (known to work under Linux, FreeBSD, OpenBSD, OS X and Windows)
* Multi node support * Multi node support
* **Highly** customizable via [HJSON](http://hjson.org/) based configuration, menus, and themes in addition to JavaScript based mods * **Highly** customizable via [HJSON](http://hjson.org/) based configuration, menus, and themes in addition to JavaScript based mods
* MCI support for lightbars, toggles, input areas, and so on plus many other other bells and whistles * MCI support for lightbars, toggles, input areas, and so on plus many other other bells and whistles
@ -17,7 +17,7 @@ ENiGMA½ is a modern BBS software with a nostalgic flair!
* Pipe codes (ala Renegade) * Pipe codes (ala Renegade)
* [SQLite](http://sqlite.org/) storage of users and message areas * [SQLite](http://sqlite.org/) storage of users and message areas
* Strong [PBKDF2](https://en.wikipedia.org/wiki/PBKDF2) backed password encryption * Strong [PBKDF2](https://en.wikipedia.org/wiki/PBKDF2) backed password encryption
* Door support including common dropfile formats and legacy DOS doors (See [Doors](docs/doors.md)) * Door support including common dropfile formats and legacy DOS doors, [BBSLink](http://bbslink.net/), and [DoorParty](http://forums.throwbackbbs.com/)! (See [Doors](docs/doors.md))
* [Bunyan](https://github.com/trentm/node-bunyan) logging * [Bunyan](https://github.com/trentm/node-bunyan) logging
* FidoNet Type Network (FTN) + BinkleyTerm Style Outbound (BSO) message import/export * FidoNet Type Network (FTN) + BinkleyTerm Style Outbound (BSO) message import/export
@ -52,11 +52,15 @@ ENiGMA has been tested with many terminals. However, the following are suggested
## Boards ## Boards
* WQH: :skull: Xibalba :skull: (**telnet://xibalba.l33t.codes:44510**) * WQH: :skull: Xibalba :skull: (**telnet://xibalba.l33t.codes:44510**)
* Support board: ☠ BLACK ƒlag ☠ (**telnet://blackflag.acid.org:2425**) * Support board: ☠ BLACK ƒlag ☠ (**telnet://blackflag.acid.org:2425**)
* HappyLand (**telnet://andrew.homeunix.org:2023**) * [force9](http://bbs.force9.org/): (**telnet://bbs.force9.org**)
## Installation ## Installation
Please see the [Quickstart](docs/index.md#quickstart) ```
curl -o- https://raw.githubusercontent.com/NuSkooler/enigma-bbs/master/misc/install.sh | bash
```
<br>
(See the [Quickstart](docs/index.md#quickstart) for more information)
## Special Thanks ## Special Thanks
* [M. Brutman](http://www.brutman.com/), author of [mTCP](http://www.brutman.com/mTCP/mTCP.html) (Interwebs for DOS!) * [M. Brutman](http://www.brutman.com/), author of [mTCP](http://www.brutman.com/mTCP/mTCP.html) (Interwebs for DOS!)

View File

@ -318,3 +318,7 @@ MenuModule.prototype.standardMCIReadyHandler = function(mciData, cb) {
MenuModule.prototype.finishedLoading = function() { MenuModule.prototype.finishedLoading = function() {
}; };
MenuModule.prototype.getMenuResult = function() {
// nothing in base
};

View File

@ -73,6 +73,8 @@ module.exports = class MenuStack {
} }
prev(cb) { prev(cb) {
const menuResult = this.top().instance.getMenuResult();
// :TODO: leave() should really take a cb... // :TODO: leave() should really take a cb...
this.pop().instance.leave(); // leave & remove current this.pop().instance.leave(); // leave & remove current
@ -81,7 +83,8 @@ module.exports = class MenuStack {
if(previousModuleInfo) { if(previousModuleInfo) {
const opts = { const opts = {
extraArgs : previousModuleInfo.extraArgs, extraArgs : previousModuleInfo.extraArgs,
savedState : previousModuleInfo.savedState savedState : previousModuleInfo.savedState,
lastMenuResult : menuResult,
}; };
return this.goto(previousModuleInfo.name, opts, cb); return this.goto(previousModuleInfo.name, opts, cb);
@ -113,6 +116,7 @@ module.exports = class MenuStack {
if(_.isObject(options)) { if(_.isObject(options)) {
loadOpts.extraArgs = options.extraArgs; loadOpts.extraArgs = options.extraArgs;
loadOpts.lastMenuResult = options.lastMenuResult;
} }
loadMenu(loadOpts, (err, modInst) => { loadMenu(loadOpts, (err, modInst) => {

View File

@ -94,6 +94,7 @@ function loadMenu(options, cb) {
menuConfig : modData.config, menuConfig : modData.config,
extraArgs : options.extraArgs, extraArgs : options.extraArgs,
client : options.client, client : options.client,
lastMenuResult : options.lastMenuResult,
}); });
return callback(null, moduleInstance); return callback(null, moduleInstance);
} catch(e) { } catch(e) {

View File

@ -37,6 +37,8 @@ function NewScanModule(options) {
var self = this; var self = this;
var config = this.menuConfig.config; var config = this.menuConfig.config;
this.newScanFullExit = _.has(options, 'lastMenuResult.fullExit') ? options.lastMenuResult.fullExit : false;
this.currentStep = 'messageConferences'; this.currentStep = 'messageConferences';
this.currentScanAux = {}; this.currentScanAux = {};
@ -191,6 +193,12 @@ NewScanModule.prototype.restoreSavedState = function(savedState) {
NewScanModule.prototype.mciReady = function(mciData, cb) { NewScanModule.prototype.mciReady = function(mciData, cb) {
if(this.newScanFullExit) {
// user has canceled the entire scan @ message list view
return cb(null);
}
var self = this; var self = this;
var vc = self.viewControllers.allViews = new ViewController( { client : self.client } ); var vc = self.viewControllers.allViews = new ViewController( { client : self.client } );

View File

@ -4,15 +4,25 @@ ENiGMA½ is a modern from scratch BBS package written in Node.js.
# Quickstart # Quickstart
TL;DR? This should get you started... TL;DR? This should get you started...
## Prerequisites ## The Easy Way
Under most Linux/UNIX like environments (Linux, BSD, OS X, ...) new users can simply execute the `install.sh` script to get everything up and running. Simply cut + paste the following into your terminal:
```
curl -o- https://raw.githubusercontent.com/NuSkooler/enigma-bbs/master/misc/install.sh | bash
```
## The Manual Way
For Windows environments or if you simply like to do things manually, read on...
### Prerequisites
* [Node.js](https://nodejs.org/) version **v4.2.x or higher** * [Node.js](https://nodejs.org/) version **v4.2.x or higher**
* :information_source: It is suggested to use [nvm](https://github.com/creationix/nvm) to manage your Node/io.js installs * :information_source: It is suggested to use [nvm](https://github.com/creationix/nvm) to manage your Node/io.js installs
* **Windows users will need additional dependencies installed** for the `npm install` step in order to compile native binaries:
* A recent copy of Visual Studio ([Visual Studio Express](https://www.visualstudio.com/en-us/products/visual-studio-express-vs.aspx) editions OK). Note that you **should only need Visual C++**.
* [Python](https://www.python.org/downloads/) 2.7.x * [Python](https://www.python.org/downloads/) 2.7.x
* A compiler such as Clang or GCC for Linux/UNIX systems or a recent copy of Visual Studio ([Visual Studio Express](https://www.visualstudio.com/en-us/products/visual-studio-express-vs.aspx) editions OK) for Windows users. Note that you **should only need the Visual C++ component**.
## New to Node
If you're new to Node.js and/or do not care about Node itself and just want to get ENiGMA½ running these steps should get you going on most \*nix type enviornments: ### New to Node
If you're new to Node.js and/or do not care about Node itself and just want to get ENiGMA½ running these steps should get you going on most \*nix type enviornments (Please consider the `install.sh` approach unless you really want to manually install!):
```bash ```bash
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.0/install.sh | bash curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.0/install.sh | bash
@ -23,12 +33,12 @@ nvm use 4.4.0
If the above completed without errors, you should now have `nvm`, `node`, and `npm` installed and in your environment. If the above completed without errors, you should now have `nvm`, `node`, and `npm` installed and in your environment.
## Clone ### Clone
```bash ```bash
git clone https://github.com/NuSkooler/enigma-bbs.git git clone https://github.com/NuSkooler/enigma-bbs.git
``` ```
## Install Node Modules ### Install Node Modules
```bash ```bash
cd enigma-bbs cd enigma-bbs
npm install npm install
@ -40,17 +50,17 @@ To utilize the SSH server, a SSH Private Key will need generated. This step can
openssl genrsa -des3 -out ./misc/ssh_private_key.pem 2048 openssl genrsa -des3 -out ./misc/ssh_private_key.pem 2048
``` ```
## Create a Minimal Config ### Create a Minimal Config
The main system configuration is handled via `~/.config/enigma-bbs/config.hjson`. This is a [HJSON](http://hjson.org/) file (compiliant JSON is also OK). See [Configuration](config.md) for more information. The main system configuration is handled via `~/.config/enigma-bbs/config.hjson`. This is a [HJSON](http://hjson.org/) file (compiliant JSON is also OK). See [Configuration](config.md) for more information.
### Via oputil.js #### Via oputil.js
`oputil.js` can be utilized to generate your **initial** configuration. **This is the recommended way for all new users**: `oputil.js` can be utilized to generate your **initial** configuration. **This is the recommended way for all new users**:
./oputil.js config --new ./oputil.js config --new
You wil be asked a series of basic questions. You wil be asked a series of basic questions.
### Example Starting Configuration #### Example Starting Configuration
Below is an _example_ configuration. It is recommended that you at least **start with a generated configuration using oputil.js described above**. Below is an _example_ configuration. It is recommended that you at least **start with a generated configuration using oputil.js described above**.
```hjson ```hjson
@ -96,7 +106,7 @@ Logs are produced by Bunyan which outputs each entry as a JSON object. To tail l
ENiGMA½ does not produce much to standard out. See below for tailing the log file to see what's going on. ENiGMA½ does not produce much to standard out. See below for tailing the log file to see what's going on.
### Points of Interest ## Points of Interest
* Default ports are 8888 (Telnet) and 8889 (SSH) * Default ports are 8888 (Telnet) and 8889 (SSH)
* Note that on *nix systems port such as telnet/23 are privileged (e.g. require root). See [this SO article](http://stackoverflow.com/questions/16573668/best-practices-when-running-node-js-with-port-80-ubuntu-linode) for some tips on using these ports on your system if desired. * Note that on *nix systems port such as telnet/23 are privileged (e.g. require root). See [this SO article](http://stackoverflow.com/questions/16573668/best-practices-when-running-node-js-with-port-80-ubuntu-linode) for some tips on using these ports on your system if desired.
* **The first user you create via applying is the SysOp** (aka root) * **The first user you create via applying is the SysOp** (aka root)

View File

@ -677,6 +677,10 @@
keys: [ "escape", "q", "shift + q" ] keys: [ "escape", "q", "shift + q" ]
action: @systemMethod:prevMenu action: @systemMethod:prevMenu
} }
{
keys: [ "x", "shift + x" ]
action: @method:fullExit
}
] ]
} }
} }

View File

@ -103,6 +103,11 @@ function MessageListModule(options) {
} else { } else {
return cb(null); return cb(null);
} }
},
fullExit : function(formData, extraArgs, cb) {
self.menuResult = { fullExit : true };
return self.prevMenu(cb);
} }
}; };
@ -250,3 +255,7 @@ MessageListModule.prototype.restoreSavedState = function(savedState) {
this.initialFocusIndex = savedState.initialFocusIndex; this.initialFocusIndex = savedState.initialFocusIndex;
} }
}; };
MessageListModule.prototype.getMenuResult = function() {
return this.menuResult;
};