2020-04-22 01:50:04 +00:00
|
|
|
const ArchiveUtil = require('./archive_util');
|
|
|
|
const { Errors } = require('./enig_error');
|
|
|
|
const Message = require('./message');
|
|
|
|
const { splitTextAtTerms } = require('./string_util');
|
2020-04-28 02:55:41 +00:00
|
|
|
const {
|
|
|
|
getMessageConfTagByAreaTag,
|
|
|
|
getMessageAreaByTag,
|
|
|
|
} = require('./message_area');
|
2020-04-25 17:25:47 +00:00
|
|
|
const StatLog = require('./stat_log');
|
|
|
|
const Config = require('./config').get;
|
|
|
|
const SysProps = require('./system_property');
|
2020-05-01 04:07:29 +00:00
|
|
|
const UserProps = require('./user_property');
|
|
|
|
const { numToMbf32 } = require('./mbf');
|
2020-05-02 19:34:28 +00:00
|
|
|
const { getEncodingFromCharacterSetIdentifier } = require('./ftn_util');
|
2020-04-22 01:50:04 +00:00
|
|
|
|
|
|
|
const { EventEmitter } = require('events');
|
2020-04-25 17:25:47 +00:00
|
|
|
const temptmp = require('temptmp');
|
2020-04-22 01:50:04 +00:00
|
|
|
const async = require('async');
|
|
|
|
const fs = require('graceful-fs');
|
|
|
|
const paths = require('path');
|
|
|
|
const { Parser } = require('binary-parser');
|
|
|
|
const iconv = require('iconv-lite');
|
|
|
|
const moment = require('moment');
|
|
|
|
const _ = require('lodash');
|
2020-04-22 04:14:29 +00:00
|
|
|
const IniConfigParser = require('ini-config-parser');
|
2020-04-22 01:50:04 +00:00
|
|
|
|
2020-04-25 17:25:47 +00:00
|
|
|
const enigmaVersion = require('../package.json').version;
|
|
|
|
|
|
|
|
// Synchronet smblib TZ to a UTC offset
|
|
|
|
// see https://github.com/kvadevack/synchronet/blob/master/src/smblib/smbdefs.h
|
|
|
|
const SMBTZToUTCOffset = {
|
|
|
|
// US Standard
|
|
|
|
'40F0' : '-04:00', // Atlantic
|
|
|
|
'412C' : '-05:00', // Eastern
|
|
|
|
'4168' : '-06:00', // Central
|
|
|
|
'41A4' : '-07:00', // Mountain
|
|
|
|
'41E0' : '-08:00', // Pacific
|
|
|
|
'421C' : '-09:00', // Yukon
|
|
|
|
'4258' : '-10:00', // Hawaii/Alaska
|
|
|
|
'4294' : '-11:00', // Bering
|
|
|
|
|
|
|
|
// US Daylight
|
|
|
|
'C0F0' : '-03:00', // Atlantic
|
|
|
|
'C12C' : '-04:00', // Eastern
|
|
|
|
'C168' : '-05:00', // Central
|
|
|
|
'C1A4' : '-06:00', // Mountain
|
|
|
|
'C1E0' : '-07:00', // Pacific
|
|
|
|
'C21C' : '-08:00', // Yukon
|
|
|
|
'C258' : '-09:00', // Hawaii/Alaska
|
|
|
|
'C294' : '-10:00', // Bering
|
|
|
|
|
|
|
|
// "Non-Standard"
|
|
|
|
'2294' : '-11:00', // Midway
|
|
|
|
'21E0' : '-08:00', // Vancouver
|
|
|
|
'21A4' : '-07:00', // Edmonton
|
|
|
|
'2168' : '-06:00', // Winnipeg
|
|
|
|
'212C' : '-05:00', // Bogota
|
|
|
|
'20F0' : '-04:00', // Caracas
|
|
|
|
'20B4' : '-03:00', // Rio de Janeiro
|
|
|
|
'2078' : '-02:00', // Fernando de Noronha
|
|
|
|
'203C' : '-01:00', // Azores
|
|
|
|
'1000' : '+00:00', // London
|
|
|
|
'103C' : '+01:00', // Berlin
|
|
|
|
'1078' : '+02:00', // Athens
|
|
|
|
'10B4' : '+03:00', // Moscow
|
|
|
|
'10F0' : '+04:00', // Dubai
|
|
|
|
'110E' : '+04:30', // Kabul
|
|
|
|
'112C' : '+05:00', // Karachi
|
|
|
|
'114A' : '+05:30', // Bombay
|
|
|
|
'1159' : '+05:45', // Kathmandu
|
|
|
|
'1168' : '+06:00', // Dhaka
|
|
|
|
'11A4' : '+07:00', // Bangkok
|
|
|
|
'11E0' : '+08:00', // Hong Kong
|
|
|
|
'121C' : '+09:00', // Tokyo
|
|
|
|
'1258' : '+10:00', // Sydney
|
|
|
|
'1294' : '+11:00', // Noumea
|
|
|
|
'12D0' : '+12:00', // Wellington
|
2020-04-22 01:50:04 +00:00
|
|
|
};
|
|
|
|
|
2020-04-25 17:25:47 +00:00
|
|
|
const UTCOffsetToSMBTZ = _.invert(SMBTZToUTCOffset);
|
|
|
|
|
|
|
|
const QWKMessageBlockSize = 128;
|
|
|
|
const QWKHeaderTimestampFormat = 'MM-DD-YYHH:mm';
|
|
|
|
const QWKLF = 0xe3;
|
2020-04-22 01:50:04 +00:00
|
|
|
|
2020-04-28 02:55:41 +00:00
|
|
|
const QWKMessageStatusCodes = {
|
|
|
|
UnreadPublic : ' ',
|
|
|
|
ReadPublic : '-',
|
|
|
|
UnreadPrivate : '+',
|
2020-05-01 04:07:29 +00:00
|
|
|
ReadPrivate : '*',
|
2020-04-28 02:55:41 +00:00
|
|
|
UnreadCommentToSysOp : '~',
|
|
|
|
ReadCommentToSysOp : '`',
|
|
|
|
UnreadSenderPWProtected : '%',
|
|
|
|
ReadSenderPWProtected : '^',
|
|
|
|
UnreadGroupPWProtected : '!',
|
|
|
|
ReadGroupPWProtected : '#',
|
|
|
|
PWProtectedToAll : '$',
|
|
|
|
Vote : 'V',
|
|
|
|
};
|
|
|
|
|
|
|
|
const QWKMessageActiveStatus = {
|
|
|
|
Active : 255,
|
|
|
|
Deleted : 226,
|
|
|
|
};
|
|
|
|
|
2020-05-01 04:07:29 +00:00
|
|
|
const QWKNetworkTagIndicator = {
|
|
|
|
Present : '*',
|
|
|
|
NotPresent : ' ',
|
|
|
|
};
|
|
|
|
|
2020-04-22 04:57:06 +00:00
|
|
|
// See the following:
|
|
|
|
// - http://fileformats.archiveteam.org/wiki/QWK
|
|
|
|
// - http://wiki.synchro.net/ref:qwk
|
|
|
|
//
|
2020-04-22 01:50:04 +00:00
|
|
|
const MessageHeaderParser = new Parser()
|
|
|
|
.endianess('little')
|
|
|
|
.string('status', {
|
|
|
|
encoding : 'ascii',
|
|
|
|
length : 1,
|
|
|
|
})
|
|
|
|
.string('num', { // message num or conf num for REP's
|
|
|
|
encoding : 'ascii',
|
|
|
|
length : 7,
|
|
|
|
formatter : n => {
|
|
|
|
return parseInt(n);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.string('timestamp', {
|
|
|
|
encoding : 'ascii',
|
|
|
|
length : 13,
|
|
|
|
})
|
|
|
|
// these fields may be encoded in something other than ascii/CP437
|
|
|
|
.array('toName', {
|
|
|
|
type : 'uint8',
|
|
|
|
length : 25,
|
|
|
|
})
|
|
|
|
.array('fromName', {
|
|
|
|
type : 'uint8',
|
|
|
|
length : 25,
|
|
|
|
})
|
|
|
|
.array('subject', {
|
|
|
|
type : 'uint8',
|
|
|
|
length : 25,
|
|
|
|
})
|
|
|
|
.string('password', {
|
|
|
|
encoding : 'ascii',
|
|
|
|
length : 12,
|
|
|
|
})
|
|
|
|
.string('replyToNum', {
|
|
|
|
encoding : 'ascii',
|
|
|
|
length : 8,
|
|
|
|
formatter : n => {
|
|
|
|
return parseInt(n);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.string('numBlocks', {
|
|
|
|
encoding : 'ascii',
|
|
|
|
length : 6,
|
|
|
|
formatter : n => {
|
|
|
|
return parseInt(n);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.uint8('status2')
|
|
|
|
.uint16('confNum')
|
|
|
|
.uint16('relNum')
|
|
|
|
.uint8('netTag');
|
|
|
|
|
2020-04-25 17:25:47 +00:00
|
|
|
const replaceCharInBuffer = (buffer, search, replace) => {
|
|
|
|
let i = 0;
|
|
|
|
search = Buffer.from([search]);
|
|
|
|
while (i < buffer.length) {
|
|
|
|
i = buffer.indexOf(search, i);
|
|
|
|
if (-1 === i) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
buffer[i] = replace;
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
}
|
2020-04-22 01:50:04 +00:00
|
|
|
|
|
|
|
class QWKPacketReader extends EventEmitter {
|
2020-04-25 17:25:47 +00:00
|
|
|
constructor(
|
|
|
|
packetPath,
|
|
|
|
{ mode = QWKPacketReader.Modes.Guess, keepTearAndOrigin = true } = { mode : QWKPacketReader.Modes.Guess, keepTearAndOrigin : true })
|
|
|
|
{
|
2020-04-22 01:50:04 +00:00
|
|
|
super();
|
|
|
|
|
|
|
|
this.packetPath = packetPath;
|
2020-04-25 17:25:47 +00:00
|
|
|
this.options = { mode, keepTearAndOrigin };
|
|
|
|
this.temptmp = temptmp.createTrackedSession('qwkpacketreader');
|
2020-04-22 01:50:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static get Modes() {
|
|
|
|
return {
|
|
|
|
Guess : 'guess', // try to guess
|
|
|
|
QWK : 'qwk', // standard incoming packet
|
|
|
|
REP : 'rep', // a reply packet
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
read() {
|
|
|
|
//
|
|
|
|
// A general overview:
|
|
|
|
//
|
|
|
|
// - Find out what kind of archive we're dealing with
|
|
|
|
// - Extract to temporary location
|
|
|
|
// - Process various files
|
|
|
|
// - Emit messages we find, information about the packet, so on
|
|
|
|
//
|
|
|
|
async.waterfall(
|
|
|
|
[
|
|
|
|
// determine packet archive type
|
|
|
|
(callback) => {
|
|
|
|
const archiveUtil = ArchiveUtil.getInstance();
|
|
|
|
archiveUtil.detectType(this.packetPath, (err, archiveType) => {
|
|
|
|
if (err) {
|
|
|
|
return callback(err);
|
|
|
|
}
|
|
|
|
this.emit('archive type', archiveType);
|
|
|
|
return callback(null, archiveType);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
// create a temporary location to do processing
|
|
|
|
(archiveType, callback) => {
|
2020-04-25 17:25:47 +00:00
|
|
|
this.temptmp.mkdir( { prefix : 'enigqwkreader-'}, (err, tempDir) => {
|
2020-04-22 01:50:04 +00:00
|
|
|
if (err) {
|
|
|
|
return callback(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
return callback(null, archiveType, tempDir);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
// extract it
|
|
|
|
(archiveType, tempDir, callback) => {
|
|
|
|
const archiveUtil = ArchiveUtil.getInstance();
|
|
|
|
archiveUtil.extractTo(this.packetPath, tempDir, archiveType, err => {
|
|
|
|
if (err) {
|
|
|
|
return callback(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
return callback(null, tempDir);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
// gather extracted file list
|
|
|
|
(tempDir, callback) => {
|
|
|
|
fs.readdir(tempDir, (err, files) => {
|
|
|
|
if (err) {
|
|
|
|
return callback(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Discover basic information about well known files
|
|
|
|
async.reduce(
|
|
|
|
files,
|
|
|
|
{},
|
|
|
|
(out, filename, next) => {
|
|
|
|
const key = filename.toUpperCase();
|
|
|
|
|
|
|
|
switch (key) {
|
|
|
|
case 'MESSAGES.DAT' : // QWK
|
2020-04-25 17:25:47 +00:00
|
|
|
if (this.options.mode === QWKPacketReader.Modes.Guess) {
|
|
|
|
this.options.mode = QWKPacketReader.Modes.QWK;
|
2020-04-22 01:50:04 +00:00
|
|
|
}
|
2020-04-25 17:25:47 +00:00
|
|
|
if (this.options.mode === QWKPacketReader.Modes.QWK) {
|
2020-04-22 01:50:04 +00:00
|
|
|
out.messages = { filename };
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'ID.MSG' :
|
2020-04-25 17:25:47 +00:00
|
|
|
if (this.options.mode === QWKPacketReader.Modes.Guess) {
|
|
|
|
this.options.mode = Modes.REP;
|
2020-04-22 01:50:04 +00:00
|
|
|
}
|
|
|
|
|
2020-04-25 17:25:47 +00:00
|
|
|
if (this.options.mode === QWKPacketReader.Modes.REP) {
|
2020-04-22 01:50:04 +00:00
|
|
|
out.messages = { filename };
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'HEADERS.DAT' : // Synchronet
|
|
|
|
out.headers = { filename };
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'VOTING.DAT' : // Synchronet
|
|
|
|
out.voting = { filename };
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'CONTROL.DAT' : // QWK
|
|
|
|
out.control = { filename };
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'DOOR.ID' : // QWK
|
|
|
|
out.door = { filename };
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'NETFLAGS.DAT' : // QWK
|
|
|
|
out.netflags = { filename };
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'NEWFILES.DAT' : // QWK
|
|
|
|
out.newfiles = { filename };
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'PERSONAL.NDX' : // QWK
|
|
|
|
out.personal = { filename };
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '000.NDX' : // QWK
|
|
|
|
out.inbox = { filename };
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'TOREADER.EXT' : // QWKE
|
|
|
|
out.toreader = { filename };
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'QLR.DAT' :
|
|
|
|
out.qlr = { filename };
|
|
|
|
break;
|
|
|
|
|
|
|
|
default :
|
|
|
|
if (/[0-9]+\.NDX/.test(key)) { // QWK
|
|
|
|
out.pointers = out.pointers || { filenames: [] };
|
|
|
|
out.pointers.filenames.push(filename);
|
|
|
|
} else {
|
|
|
|
out[key] = { filename };
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return next(null, out);
|
|
|
|
},
|
|
|
|
(err, packetFileInfo) => {
|
|
|
|
this.packetInfo = Object.assign(
|
|
|
|
{},
|
|
|
|
packetFileInfo,
|
|
|
|
{
|
|
|
|
tempDir,
|
|
|
|
}
|
|
|
|
);
|
|
|
|
return callback(null);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
(callback) => {
|
|
|
|
return this.processPacketFiles(callback);
|
|
|
|
},
|
|
|
|
],
|
|
|
|
err => {
|
2020-04-25 17:25:47 +00:00
|
|
|
this.temptmp.cleanup();
|
2020-04-22 01:50:04 +00:00
|
|
|
|
|
|
|
if (err) {
|
|
|
|
return this.emit('error', err);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.emit('done');
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
processPacketFiles(cb) {
|
2020-04-22 04:14:29 +00:00
|
|
|
async.series(
|
|
|
|
[
|
2020-04-22 04:57:06 +00:00
|
|
|
(callback) => {
|
|
|
|
return this.readControl(callback);
|
|
|
|
},
|
2020-04-22 04:14:29 +00:00
|
|
|
(callback) => {
|
|
|
|
return this.readHeadersExtension(callback);
|
|
|
|
},
|
|
|
|
(callback) => {
|
|
|
|
return this.readMessages(callback);
|
|
|
|
}
|
|
|
|
],
|
|
|
|
err => {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-04-22 04:57:06 +00:00
|
|
|
readControl(cb) {
|
|
|
|
//
|
|
|
|
// CONTROL.DAT is a CRLF text file containing information about
|
|
|
|
// the originating BBS, conf number <> name mapping, etc.
|
|
|
|
//
|
|
|
|
// References:
|
|
|
|
// - http://fileformats.archiveteam.org/wiki/QWK
|
|
|
|
//
|
|
|
|
if (!this.packetInfo.control) {
|
|
|
|
return cb(Errors.DoesNotExist('No control file found within QWK packet'));
|
|
|
|
}
|
|
|
|
|
|
|
|
const path = paths.join(this.packetInfo.tempDir, this.packetInfo.control.filename);
|
|
|
|
|
|
|
|
// note that we read as UTF-8. Legacy says it should be CP437/ASCII
|
|
|
|
// but this seems safer for now so conference names and the like
|
|
|
|
// can be non-English for example.
|
|
|
|
fs.readFile(path, { encoding : 'utf8' }, (err, controlLines) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
controlLines = splitTextAtTerms(controlLines);
|
|
|
|
|
|
|
|
let state = 'header';
|
|
|
|
const control = { confMap : {} };
|
|
|
|
let currConfNumber;
|
|
|
|
for (let lineNumber = 0; lineNumber < controlLines.length; ++lineNumber) {
|
|
|
|
const line = controlLines[lineNumber].trim();
|
|
|
|
switch (lineNumber) {
|
|
|
|
// first set of lines is header info
|
|
|
|
case 0 : control.bbsName = line; break;
|
|
|
|
case 1 : control.bbsLocation = line; break;
|
|
|
|
case 2 : control.bbsPhone = line; break;
|
|
|
|
case 3 : control.bbsSysOp = line; break;
|
|
|
|
case 4 : control.doorRegAndBoardID = line; break;
|
|
|
|
case 5 : control.packetCreationTime = line; break;
|
|
|
|
case 6 : control.toUser = line; break;
|
|
|
|
case 7 : break; // Qmail menu
|
|
|
|
case 8 : break; // unknown, always 0?
|
|
|
|
case 9 : break; // total messages in packet (often set to 0)
|
|
|
|
case 10 :
|
|
|
|
control.totalMessages = (parseInt(line) + 1);
|
|
|
|
state = 'confNumber';
|
|
|
|
break;
|
|
|
|
|
|
|
|
default :
|
|
|
|
switch (state) {
|
|
|
|
case 'confNumber' :
|
|
|
|
currConfNumber = parseInt(line);
|
|
|
|
if (isNaN(currConfNumber)) {
|
|
|
|
state = 'news';
|
|
|
|
|
|
|
|
control.welcomeFile = line;
|
|
|
|
} else {
|
|
|
|
state = 'confName';
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'confName' :
|
|
|
|
control.confMap[currConfNumber] = line;
|
|
|
|
state = 'confNumber';
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'news' :
|
|
|
|
control.newsFile = line;
|
|
|
|
state = 'logoff';
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'logoff' :
|
|
|
|
control.logoffFile = line;
|
|
|
|
state = 'footer';
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'footer' :
|
|
|
|
// some systems append additional info; we don't care.
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return cb(null);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-04-22 04:14:29 +00:00
|
|
|
readHeadersExtension(cb) {
|
|
|
|
if (!this.packetInfo.headers) {
|
|
|
|
return cb(null); // nothing to do
|
|
|
|
}
|
|
|
|
|
|
|
|
const path = paths.join(this.packetInfo.tempDir, this.packetInfo.headers.filename);
|
|
|
|
fs.readFile(path, { encoding : 'utf8' }, (err, iniData) => {
|
|
|
|
if (err) {
|
2020-04-25 17:25:47 +00:00
|
|
|
this.emit('warning', Errors.Invalid(`Problem reading HEADERS.DAT: ${err.message}`));
|
2020-04-22 04:14:29 +00:00
|
|
|
return cb(null); // non-fatal
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2020-04-25 17:25:47 +00:00
|
|
|
const parserOptions = {
|
|
|
|
lineComment : false, // no line comments; consume full lines
|
|
|
|
nativeType : false, // just keep everything as strings
|
|
|
|
dotKey : false, // 'a.b.c = value' stays 'a.b.c = value'
|
|
|
|
};
|
|
|
|
this.packetInfo.headers.ini = IniConfigParser.parse(iniData, parserOptions);
|
2020-04-22 04:14:29 +00:00
|
|
|
} catch (e) {
|
2020-04-25 17:25:47 +00:00
|
|
|
this.emit('warning', Errors.Invalid(`HEADERS.DAT file appears to be invalid: ${e.message}`));
|
2020-04-22 04:14:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return cb(null);
|
|
|
|
});
|
2020-04-22 01:50:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
readMessages(cb) {
|
|
|
|
if (!this.packetInfo.messages) {
|
|
|
|
return cb(Errors.DoesNotExist('No messages file found within QWK packet'));
|
|
|
|
}
|
|
|
|
|
2020-04-22 04:14:29 +00:00
|
|
|
const encodingToSpec = 'cp437';
|
|
|
|
let encoding = encodingToSpec;
|
|
|
|
|
2020-04-22 01:50:04 +00:00
|
|
|
const path = paths.join(this.packetInfo.tempDir, this.packetInfo.messages.filename);
|
|
|
|
fs.open(path, 'r', (err, fd) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
2020-04-22 04:14:29 +00:00
|
|
|
// Some mappings/etc. used in loops below....
|
|
|
|
// Sync sets these in HEADERS.DAT: http://wiki.synchro.net/ref:qwk
|
|
|
|
const FTNPropertyMapping = {
|
|
|
|
'X-FTN-AREA' : Message.FtnPropertyNames.FtnArea,
|
|
|
|
'X-FTN-SEEN-BY' : Message.FtnPropertyNames.FtnSeenBy,
|
|
|
|
};
|
|
|
|
|
|
|
|
const FTNKludgeMapping = {
|
|
|
|
'X-FTN-PATH' : 'PATH',
|
|
|
|
'X-FTN-MSGID' : 'MSGID',
|
|
|
|
'X-FTN-REPLY' : 'REPLY',
|
|
|
|
'X-FTN-PID' : 'PID',
|
|
|
|
'X-FTN-FLAGS' : 'FLAGS',
|
|
|
|
'X-FTN-TID' : 'TID',
|
|
|
|
'X-FTN-CHRS' : 'CHRS',
|
|
|
|
// :TODO: X-FTN-KLUDGE - not sure what this is?
|
|
|
|
};
|
|
|
|
|
|
|
|
//
|
|
|
|
// Various kludge tags defined by QWKE, etc.
|
|
|
|
// See the following:
|
|
|
|
// - ftp://vert.synchro.net/main/BBS/qwke.txt
|
|
|
|
// - http://wiki.synchro.net/ref:qwk
|
|
|
|
//
|
|
|
|
const Kludges = {
|
|
|
|
// QWKE
|
|
|
|
To : 'To:',
|
|
|
|
From : 'From:',
|
|
|
|
Subject : 'Subject:',
|
|
|
|
|
|
|
|
// Synchronet
|
|
|
|
Via : '@VIA:',
|
|
|
|
MsgID : '@MSGID:',
|
|
|
|
Reply : '@REPLY:',
|
|
|
|
TZ : '@TZ:', // https://github.com/kvadevack/synchronet/blob/master/src/smblib/smbdefs.h
|
|
|
|
ReplyTo : '@REPLYTO:',
|
2020-04-25 17:25:47 +00:00
|
|
|
|
|
|
|
// :TODO: Look into other non-standards
|
|
|
|
// https://github.com/wmcbrine/MultiMail/blob/master/mmail/qwk.cc
|
|
|
|
// title, @subject, etc.
|
2020-04-22 04:14:29 +00:00
|
|
|
};
|
|
|
|
|
2020-04-22 01:50:04 +00:00
|
|
|
let blockCount = 0;
|
|
|
|
let currMessage = { };
|
|
|
|
let state;
|
|
|
|
let messageBlocksRemain;
|
|
|
|
const buffer = Buffer.alloc(QWKMessageBlockSize);
|
|
|
|
|
|
|
|
const readNextBlock = () => {
|
|
|
|
fs.read(fd, buffer, 0, QWKMessageBlockSize, null, (err, read) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (0 == read) {
|
|
|
|
// we're done consuming all blocks
|
|
|
|
return fs.close(fd, err => {
|
|
|
|
return cb(err);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (QWKMessageBlockSize !== read) {
|
|
|
|
return cb(Errors.Invalid(`Invalid QWK message block size. Expected ${QWKMessageBlockSize} got ${read}`));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (0 === blockCount) {
|
|
|
|
// first 128 bytes is a space padded ID
|
|
|
|
const id = buffer.toString('ascii').trim();
|
2020-04-25 17:25:47 +00:00
|
|
|
this.emit('creator', id);
|
2020-04-22 01:50:04 +00:00
|
|
|
state = 'header';
|
|
|
|
} else {
|
|
|
|
switch (state) {
|
|
|
|
case 'header' :
|
|
|
|
const header = MessageHeaderParser.parse(buffer);
|
|
|
|
|
|
|
|
// massage into something a little more sane (things we can't quite do in the parser directly)
|
|
|
|
['toName', 'fromName', 'subject'].forEach(field => {
|
2020-04-22 04:14:29 +00:00
|
|
|
// note: always use to-spec encoding here
|
|
|
|
header[field] = iconv.decode(header[field], encodingToSpec).trim();
|
2020-04-22 01:50:04 +00:00
|
|
|
});
|
|
|
|
|
2020-04-25 17:25:47 +00:00
|
|
|
header.timestamp = moment(header.timestamp, QWKHeaderTimestampFormat);
|
2020-04-22 01:50:04 +00:00
|
|
|
|
|
|
|
currMessage = {
|
|
|
|
header,
|
|
|
|
// these may be overridden
|
|
|
|
toName : header.toName,
|
|
|
|
fromName : header.fromName,
|
|
|
|
subject : header.subject,
|
|
|
|
};
|
|
|
|
|
2020-04-22 04:14:29 +00:00
|
|
|
if (_.has(this.packetInfo, 'headers.ini')) {
|
|
|
|
// Sections for a message in HEADERS.DAT are by current byte offset.
|
|
|
|
// 128 = first message header = 0x80 = section [80]
|
|
|
|
const headersSectionId = (blockCount * QWKMessageBlockSize).toString(16);
|
|
|
|
currMessage.headersExtension = this.packetInfo.headers.ini[headersSectionId];
|
|
|
|
}
|
|
|
|
|
|
|
|
// if we have HEADERS.DAT with a 'Utf8' override for this message,
|
|
|
|
// the overridden to/from/subject/message fields are UTF-8
|
|
|
|
if (currMessage.headersExtension && currMessage.headersExtension.Utf8) {
|
|
|
|
encoding = 'utf8';
|
|
|
|
}
|
|
|
|
|
2020-04-22 01:50:04 +00:00
|
|
|
// remainder of blocks until the end of this message
|
|
|
|
messageBlocksRemain = header.numBlocks - 1;
|
|
|
|
state = 'message';
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'message' :
|
|
|
|
if (!currMessage.body) {
|
2020-04-25 17:25:47 +00:00
|
|
|
currMessage.body = Buffer.from(buffer);
|
2020-04-22 01:50:04 +00:00
|
|
|
} else {
|
|
|
|
currMessage.body = Buffer.concat([currMessage.body, buffer]);
|
|
|
|
}
|
|
|
|
messageBlocksRemain -= 1;
|
|
|
|
|
|
|
|
if (0 === messageBlocksRemain) {
|
|
|
|
// 1:n buffers to make up body. Decode:
|
|
|
|
// First, replace QWK style line feeds (0xe3) unless the message is UTF-8.
|
|
|
|
// If the message is UTF-8, we assume it's using standard line feeds.
|
|
|
|
if (encoding !== 'utf8') {
|
2020-04-25 17:25:47 +00:00
|
|
|
replaceCharInBuffer(currMessage.body, QWKLF, 0x0a);
|
2020-04-22 01:50:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Decode the message based on our final message encoding. Split the message
|
|
|
|
// into lines so we can extract various bits such as QWKE headers, origin, tear
|
|
|
|
// lines, etc.
|
|
|
|
//
|
|
|
|
const messageLines = splitTextAtTerms(iconv.decode(currMessage.body, encoding).trimEnd());
|
|
|
|
const bodyLines = [];
|
|
|
|
|
|
|
|
let bodyState = 'kludge';
|
|
|
|
|
|
|
|
const MessageTrailers = {
|
|
|
|
// While technically FTN oriented, these can come from any network
|
|
|
|
// (though we'll be processing a lot of messages that routed through FTN
|
|
|
|
// at some point)
|
|
|
|
Origin : /^[ ]{1,2}\* Origin: /,
|
|
|
|
Tear : /^--- /,
|
|
|
|
};
|
|
|
|
|
|
|
|
const qwkKludge = {};
|
|
|
|
const ftnProperty = {};
|
2020-04-22 04:14:29 +00:00
|
|
|
const ftnKludge = {};
|
2020-04-22 01:50:04 +00:00
|
|
|
|
|
|
|
messageLines.forEach(line => {
|
|
|
|
if (0 === line.length) {
|
|
|
|
return bodyLines.push('');
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (bodyState) {
|
|
|
|
case 'kludge' :
|
|
|
|
// :TODO: Update these to use the well known consts:
|
|
|
|
if (line.startsWith(Kludges.To)) {
|
|
|
|
currMessage.toName = line.substring(Kludges.To.length).trim();
|
|
|
|
} else if (line.startsWith(Kludges.From)) {
|
|
|
|
currMessage.fromName = line.substring(Kludges.From.length).trim();
|
|
|
|
} else if (line.startsWith(Kludges.Subject)) {
|
|
|
|
currMessage.subject = line.substring(Kludges.Subject.length).trim();
|
|
|
|
} else if (line.startsWith(Kludges.Via)) {
|
2020-04-25 17:25:47 +00:00
|
|
|
qwkKludge['@VIA'] = line;
|
2020-04-22 01:50:04 +00:00
|
|
|
} else if (line.startsWith(Kludges.MsgID)) {
|
2020-04-25 17:25:47 +00:00
|
|
|
qwkKludge['@MSGID'] = line.substring(Kludges.MsgID.length).trim();
|
2020-04-22 01:50:04 +00:00
|
|
|
} else if (line.startsWith(Kludges.Reply)) {
|
2020-04-25 17:25:47 +00:00
|
|
|
qwkKludge['@REPLY'] = line.substring(Kludges.Reply.length).trim();
|
2020-04-22 01:50:04 +00:00
|
|
|
} else if (line.startsWith(Kludges.TZ)) {
|
2020-04-25 17:25:47 +00:00
|
|
|
qwkKludge['@TZ'] = line.substring(Kludges.TZ.length).trim();
|
2020-04-22 01:50:04 +00:00
|
|
|
} else if (line.startsWith(Kludges.ReplyTo)) {
|
2020-04-25 17:25:47 +00:00
|
|
|
qwkKludge['@REPLYTO'] = line.substring(Kludges.ReplyTo.length).trim();
|
2020-04-22 01:50:04 +00:00
|
|
|
} else {
|
|
|
|
bodyState = 'body'; // past this point and up to any tear/origin/etc., is the real message body
|
|
|
|
bodyLines.push(line);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'body' :
|
|
|
|
case 'trailers' :
|
|
|
|
if (MessageTrailers.Origin.test(line)) {
|
|
|
|
ftnProperty.ftn_origin = line;
|
|
|
|
bodyState = 'trailers';
|
|
|
|
} else if (MessageTrailers.Tear.test(line)) {
|
|
|
|
ftnProperty.ftn_tear_line = line;
|
|
|
|
bodyState = 'trailers';
|
|
|
|
} else if ('body' === bodyState) {
|
|
|
|
bodyLines.push(line);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-04-22 04:14:29 +00:00
|
|
|
let messageTimestamp = currMessage.header.timestamp;
|
|
|
|
|
|
|
|
// HEADERS.DAT support.
|
|
|
|
let useTZKludge = true;
|
|
|
|
if (currMessage.headersExtension) {
|
|
|
|
const ext = currMessage.headersExtension;
|
|
|
|
|
|
|
|
// to and subject can be overridden yet again if entries are present
|
2020-04-25 17:25:47 +00:00
|
|
|
currMessage.toName = ext.To || currMessage.toName;
|
2020-04-22 04:14:29 +00:00
|
|
|
currMessage.subject = ext.Subject || currMessage.subject;
|
2020-04-25 17:25:47 +00:00
|
|
|
currMessage.from = ext.Sender || currMessage.fromName; // why not From? Who the fuck knows.
|
2020-04-22 04:14:29 +00:00
|
|
|
|
|
|
|
// possibly override message ID kludge
|
2020-04-25 17:25:47 +00:00
|
|
|
qwkKludge['@MSGID'] = ext['Message-ID'] || qwkKludge['@MSGID'];
|
2020-04-22 04:14:29 +00:00
|
|
|
|
|
|
|
// WhenWritten contains a ISO-8601-ish timestamp and a Synchronet/SMB style TZ offset:
|
|
|
|
// 20180101174837-0600 4168
|
|
|
|
// We can use this to get a very slightly better precision on the timestamp (addition of seconds)
|
|
|
|
// over the headers value. Why not milliseconds? Who the fuck knows.
|
|
|
|
if (ext.WhenWritten) {
|
|
|
|
const whenWritten = moment(ext.WhenWritten, 'YYYYMMDDHHmmssZ');
|
|
|
|
if (whenWritten.isValid()) {
|
|
|
|
messageTimestamp = whenWritten;
|
|
|
|
useTZKludge = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ext.Tags) {
|
2020-04-25 17:25:47 +00:00
|
|
|
currMessage.hashTags = (ext.Tags).toString().split(' ');
|
2020-04-22 04:14:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// FTN style properties/kludges represented as X-FTN-XXXX
|
|
|
|
for (let [extName, propName] of Object.entries(FTNPropertyMapping)) {
|
|
|
|
const v = ext[extName];
|
|
|
|
if (v) {
|
|
|
|
ftnProperty[propName] = v;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (let [extName, kludgeName] of Object.entries(FTNKludgeMapping)) {
|
|
|
|
const v = ext[extName];
|
|
|
|
if (v) {
|
|
|
|
ftnKludge[kludgeName] = v;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-22 01:50:04 +00:00
|
|
|
const message = new Message({
|
|
|
|
toUserName : currMessage.toName,
|
|
|
|
fromUserName : currMessage.fromName,
|
|
|
|
subject : currMessage.subject,
|
2020-04-22 04:14:29 +00:00
|
|
|
modTimestamp : messageTimestamp,
|
2020-04-22 01:50:04 +00:00
|
|
|
message : bodyLines.join('\n'),
|
2020-04-22 04:14:29 +00:00
|
|
|
hashTags : currMessage.hashTags,
|
2020-04-22 01:50:04 +00:00
|
|
|
});
|
|
|
|
|
2020-04-25 17:25:47 +00:00
|
|
|
// Indicate this message was imported from a QWK packet
|
|
|
|
message.meta.System[Message.SystemMetaNames.ExternalFlavor] = Message.AddressFlavor.QWK;
|
|
|
|
|
2020-04-22 01:50:04 +00:00
|
|
|
if (!_.isEmpty(qwkKludge)) {
|
|
|
|
message.meta.QwkKludge = qwkKludge;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!_.isEmpty(ftnProperty)) {
|
|
|
|
message.meta.FtnProperty = ftnProperty;
|
|
|
|
}
|
|
|
|
|
2020-04-22 04:14:29 +00:00
|
|
|
if (!_.isEmpty(ftnKludge)) {
|
|
|
|
message.meta.FtnKludge = ftnKludge;
|
|
|
|
}
|
|
|
|
|
2020-04-22 01:50:04 +00:00
|
|
|
// Add in tear line and origin if requested
|
|
|
|
if (this.options.keepTearAndOrigin) {
|
|
|
|
if (ftnProperty.ftn_tear_line) {
|
|
|
|
message.message += `\r\n${ftnProperty.ftn_tear_line}\r\n`;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ftnProperty.ftn_origin) {
|
|
|
|
message.message += `${ftnProperty.ftn_origin}\r\n`;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update the timestamp if we have a valid TZ
|
2020-04-25 17:25:47 +00:00
|
|
|
if (useTZKludge && qwkKludge['@TZ']) {
|
|
|
|
const tzOffset = SMBTZToUTCOffset[qwkKludge['@TZ']];
|
2020-04-22 01:50:04 +00:00
|
|
|
if (tzOffset) {
|
|
|
|
message.modTimestamp.utcOffset(tzOffset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
message.meta.QwkProperty = {
|
|
|
|
qwk_msg_status : currMessage.header.status,
|
|
|
|
qwk_in_reply_to_num : currMessage.header.replyToNum,
|
|
|
|
};
|
|
|
|
|
2020-04-25 17:25:47 +00:00
|
|
|
if (this.options.mode === QWKPacketReader.Modes.QWK) {
|
2020-04-22 01:50:04 +00:00
|
|
|
message.meta.QwkProperty.qwk_msg_num = currMessage.header.num;
|
2020-04-22 04:14:29 +00:00
|
|
|
message.meta.QwkProperty.qwk_conf_num = currMessage.header.confNum;
|
2020-04-22 01:50:04 +00:00
|
|
|
} else {
|
|
|
|
// For REP's, prefer the larger field.
|
|
|
|
message.meta.QwkProperty.qwk_conf_num = currMessage.header.num || currMessage.header.confNum;
|
|
|
|
}
|
|
|
|
|
2020-04-22 04:14:29 +00:00
|
|
|
// Another quick HEADERS.DAT fix-up
|
|
|
|
if (currMessage.headersExtension) {
|
|
|
|
message.meta.QwkProperty.qwk_conf_num = currMessage.headersExtension.Conference || message.meta.QwkProperty.qwk_conf_num;
|
|
|
|
}
|
|
|
|
|
2020-04-22 01:50:04 +00:00
|
|
|
this.emit('message', message);
|
|
|
|
state = 'header';
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
++blockCount;
|
|
|
|
readNextBlock();
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
// start reading blocks
|
|
|
|
readNextBlock();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-04-25 17:25:47 +00:00
|
|
|
class QWKPacketWriter extends EventEmitter {
|
|
|
|
constructor(
|
|
|
|
{
|
|
|
|
enableQWKE = true,
|
|
|
|
enableHeadersExtension = true,
|
|
|
|
enableAtKludges = true,
|
|
|
|
systemDomain = 'enigma-bbs',
|
|
|
|
bbsID = '',
|
2020-04-28 02:55:41 +00:00
|
|
|
user = null,
|
|
|
|
archiveFormat = 'application/zip',
|
2020-05-02 19:34:28 +00:00
|
|
|
forceEncoding = null,
|
2020-04-25 17:25:47 +00:00
|
|
|
} = QWKPacketWriter.DefaultOptions)
|
|
|
|
{
|
|
|
|
super();
|
|
|
|
|
|
|
|
this.options = {
|
|
|
|
enableQWKE,
|
|
|
|
enableHeadersExtension,
|
|
|
|
enableAtKludges,
|
|
|
|
systemDomain,
|
|
|
|
bbsID,
|
2020-04-28 02:55:41 +00:00
|
|
|
user,
|
|
|
|
archiveFormat,
|
2020-05-02 19:34:28 +00:00
|
|
|
forceEncoding : forceEncoding ? forceEncoding.toLowerCase() : null,
|
2020-04-25 17:25:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
this.temptmp = temptmp.createTrackedSession('qwkpacketwriter');
|
|
|
|
}
|
|
|
|
|
|
|
|
static get DefaultOptions() {
|
|
|
|
return {
|
|
|
|
enableQWKE : true,
|
|
|
|
enableHeadersExtension : true,
|
|
|
|
enableAtKludges : true,
|
|
|
|
systemDomain : 'enigma-bbs',
|
|
|
|
bbsID : '',
|
2020-04-28 02:55:41 +00:00
|
|
|
user : null,
|
|
|
|
archiveFormat :'application/zip',
|
2020-05-02 19:34:28 +00:00
|
|
|
forceEncoding : null,
|
2020-04-25 17:25:47 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
init() {
|
|
|
|
async.series(
|
|
|
|
[
|
|
|
|
(callback) => {
|
|
|
|
return StatLog.init(callback);
|
|
|
|
},
|
|
|
|
(callback) => {
|
|
|
|
this.temptmp.mkdir( { prefix : 'enigqwkwriter-'}, (err, workDir) => {
|
|
|
|
this.workDir = workDir;
|
|
|
|
return callback(err);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
(callback) => {
|
|
|
|
this.messagesStream = fs.createWriteStream(paths.join(this.workDir, 'messages.dat'));
|
|
|
|
|
|
|
|
if (this.options.enableHeadersExtension) {
|
|
|
|
this.headersDatStream = fs.createWriteStream(paths.join(this.workDir, 'headers.dat'));
|
|
|
|
}
|
|
|
|
|
|
|
|
// First block is a space padded ID
|
|
|
|
const id = `Created with ENiGMA 1/2 BBS v${enigmaVersion} Copyright (c) 2015-2020 Bryan Ashby`;
|
|
|
|
this.messagesStream.write(id.padEnd(QWKMessageBlockSize, ' '), 'ascii');
|
|
|
|
this.currentMessageOffset = QWKMessageBlockSize;
|
|
|
|
|
|
|
|
this.totalMessages = 0;
|
|
|
|
this.areaTagsSeen = new Set();
|
2020-05-01 04:07:29 +00:00
|
|
|
this.personalIndex = []; // messages addressed to 'user'
|
|
|
|
this.inboxIndex = []; // private messages for 'user'
|
|
|
|
this.publicIndex = new Map();
|
2020-04-25 17:25:47 +00:00
|
|
|
|
|
|
|
return callback(null);
|
|
|
|
},
|
|
|
|
],
|
|
|
|
err => {
|
|
|
|
if (err) {
|
|
|
|
return this.emit('error', err);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.emit('ready');
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
makeMessageIdentifier(message) {
|
|
|
|
return `<${message.messageId}.${message.messageUuid}@${this.options.systemDomain}>`;
|
|
|
|
}
|
|
|
|
|
|
|
|
appendMessage(message) {
|
|
|
|
//
|
|
|
|
// Each message has to:
|
|
|
|
// - Append to MESSAGES.DAT
|
|
|
|
// - Append to HEADERS.DAT if enabled
|
|
|
|
//
|
|
|
|
// If this is a personal (ie: non-network) packet:
|
|
|
|
// - Produce PERSONAL.NDX
|
|
|
|
// - Produce 000.NDX with pointers to the users personal "inbox" mail
|
|
|
|
// - Produce ####.NDX with pointers to the public/conference mail
|
|
|
|
// - Produce TOREADER.EXT if QWKE support is enabled
|
|
|
|
//
|
|
|
|
|
|
|
|
let fullMessageBody = '';
|
|
|
|
|
|
|
|
// Start of body is kludges if enabled
|
|
|
|
if (this.options.enableQWKE) {
|
|
|
|
if (message.toUserName.length > 25) {
|
|
|
|
fullMessageBody += `To: ${message.toUserName}\n`;
|
|
|
|
}
|
|
|
|
if (message.fromUserName.length > 25) {
|
|
|
|
fullMessageBody += `From: ${message.fromUserName}\n`;
|
|
|
|
}
|
|
|
|
if (message.subject.length > 25) {
|
|
|
|
fullMessageBody += `Subject: ${message.subject}\n`;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.options.enableAtKludges) {
|
|
|
|
// Add in original kludges (perhaps in a different order) if
|
|
|
|
// they were originally imported
|
|
|
|
if (Message.AddressFlavor.QWK == message.meta.System[Message.SystemMetaNames.ExternalFlavor]) {
|
|
|
|
if (message.meta.QwkKludge) {
|
|
|
|
for (let [kludge, value] of Object.entries(message.meta.QwkKludge)) {
|
|
|
|
fullMessageBody += `${kludge}: ${value}\n`;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
fullMessageBody += `@MSGID: ${this.makeMessageIdentifier(message)}\n`;
|
2020-05-02 19:34:28 +00:00
|
|
|
fullMessageBody += `@TZ: ${UTCOffsetToSMBTZ[moment().format('Z')]}\n`;
|
|
|
|
// :TODO: REPLY and REPLYTO
|
2020-04-25 17:25:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-28 02:55:41 +00:00
|
|
|
// Sanitize line feeds (e.g. CRLF -> LF, and possibly -> QWK style below)
|
|
|
|
splitTextAtTerms(message.message).forEach(line => {
|
|
|
|
fullMessageBody += `${line}\n`;
|
|
|
|
});
|
2020-04-25 17:25:47 +00:00
|
|
|
|
2020-05-02 19:34:28 +00:00
|
|
|
const encoding = this._getEncoding(message);
|
|
|
|
|
|
|
|
const encodedMessage = iconv.encode(fullMessageBody, encoding);
|
2020-04-25 17:25:47 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// QWK spec wants line feeds as 0xe3 for some reason, so we'll have
|
|
|
|
// to replace the \n's. If we're going against the spec and using UTF-8
|
|
|
|
// we can just leave them be.
|
|
|
|
//
|
2020-05-02 19:34:28 +00:00
|
|
|
if ('utf8' !== encoding) {
|
2020-04-25 17:25:47 +00:00
|
|
|
replaceCharInBuffer(encodedMessage, 0x0a, QWKLF);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Messages must comprise of multiples of 128 bit blocks with the last
|
|
|
|
// block padded by spaces or nulls (we use nulls)
|
|
|
|
const fullBlocks = Math.trunc(encodedMessage.length / QWKMessageBlockSize);
|
|
|
|
const remainBytes = QWKMessageBlockSize - (encodedMessage.length % QWKMessageBlockSize);
|
2020-05-01 04:07:29 +00:00
|
|
|
const totalBlocks = fullBlocks + 1 + (remainBytes ? 1 : 0);
|
2020-04-25 17:25:47 +00:00
|
|
|
|
|
|
|
// The first block is always a header
|
2020-04-28 02:55:41 +00:00
|
|
|
if (!this._writeMessageHeader(
|
2020-04-25 17:25:47 +00:00
|
|
|
message,
|
2020-05-01 04:07:29 +00:00
|
|
|
totalBlocks
|
2020-04-28 02:55:41 +00:00
|
|
|
))
|
|
|
|
{
|
|
|
|
// we can't write this message
|
|
|
|
return;
|
|
|
|
}
|
2020-04-25 17:25:47 +00:00
|
|
|
|
|
|
|
this.messagesStream.write(encodedMessage);
|
|
|
|
|
|
|
|
if (remainBytes) {
|
2020-04-28 02:55:41 +00:00
|
|
|
this.messagesStream.write(Buffer.alloc(remainBytes, ' '));
|
2020-04-25 17:25:47 +00:00
|
|
|
}
|
|
|
|
|
2020-05-01 04:07:29 +00:00
|
|
|
this._updateIndexTracking(message);
|
|
|
|
|
2020-04-25 17:25:47 +00:00
|
|
|
if (this.options.enableHeadersExtension) {
|
2020-05-02 19:34:28 +00:00
|
|
|
this._appendHeadersExtensionData(message, encoding);
|
2020-04-25 17:25:47 +00:00
|
|
|
}
|
|
|
|
|
2020-05-01 04:07:29 +00:00
|
|
|
// next message starts at this block
|
|
|
|
this.currentMessageOffset += totalBlocks * QWKMessageBlockSize;
|
2020-04-25 17:25:47 +00:00
|
|
|
|
|
|
|
this.totalMessages += 1;
|
|
|
|
this.areaTagsSeen.add(message.areaTag);
|
|
|
|
}
|
|
|
|
|
2020-05-02 19:34:28 +00:00
|
|
|
_getEncoding(message) {
|
|
|
|
if (this.options.forceEncoding) {
|
|
|
|
return this.options.forceEncoding;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the system has stored an explicit encoding, use that.
|
|
|
|
let encoding = _.get(message.meta, 'System.explicit_encoding');
|
|
|
|
if (encoding) {
|
|
|
|
return encoding;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the message is already tagged with a supported encoding
|
|
|
|
// indicator such as FTN-style CHRS, try to use that.
|
|
|
|
encoding = _.get(message.meta, 'FtnKludge.CHRS');
|
|
|
|
if (encoding) {
|
|
|
|
// convert from CHRS to something standard
|
|
|
|
encoding = getEncodingFromCharacterSetIdentifier(encoding);
|
|
|
|
if (encoding) {
|
|
|
|
return encoding;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// The to-spec default is CP437/ASCII. If it can be encoded as
|
|
|
|
// such then do so.
|
|
|
|
if (message.isCP437Encodable()) {
|
|
|
|
return 'cp437';
|
|
|
|
}
|
|
|
|
|
|
|
|
// Something more modern...
|
|
|
|
return 'utf8';
|
|
|
|
}
|
|
|
|
|
2020-05-01 04:07:29 +00:00
|
|
|
_messageAddressedToUser(message) {
|
|
|
|
if (_.isUndefined(this.cachedCompareNames)) {
|
|
|
|
if (this.options.user) {
|
|
|
|
this.cachedCompareNames = [
|
|
|
|
this.options.user.username.toLowerCase()
|
|
|
|
];
|
|
|
|
const realName = this.options.user.getProperty(UserProps.RealName);
|
|
|
|
if (realName) {
|
|
|
|
this.cachedCompareNames.push(realName.toLowerCase());
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
this.cachedCompareNames = [];
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
return this.cachedCompareNames.includes(message.toUserName.toLowerCase());
|
|
|
|
}
|
|
|
|
|
|
|
|
_updateIndexTracking(message) {
|
|
|
|
// index points at start of *message* not the header for... reasons?
|
|
|
|
const index = (this.currentMessageOffset / QWKMessageBlockSize) + 1;
|
|
|
|
if (message.isPrivate()) {
|
|
|
|
this.inboxIndex.push(index);
|
|
|
|
} else {
|
|
|
|
if (this._messageAddressedToUser(message)) {
|
|
|
|
// :TODO: add to both indexes???
|
|
|
|
this.personalIndex.push(index);
|
|
|
|
}
|
|
|
|
|
|
|
|
const areaTag = message.areaTag;
|
|
|
|
if (!this.publicIndex.has(areaTag)) {
|
|
|
|
this.publicIndex.set(areaTag, [index]);
|
|
|
|
} else {
|
|
|
|
this.publicIndex.get(areaTag).push(index);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-25 17:25:47 +00:00
|
|
|
appendNewFile() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-05-02 19:34:28 +00:00
|
|
|
finish(packetDirectory) {
|
2020-04-25 17:25:47 +00:00
|
|
|
async.series(
|
|
|
|
[
|
|
|
|
(callback) => {
|
|
|
|
this.messagesStream.on('close', () => {
|
|
|
|
return callback(null);
|
|
|
|
});
|
|
|
|
this.messagesStream.end();
|
|
|
|
},
|
|
|
|
(callback) => {
|
|
|
|
if (!this.headersDatStream) {
|
|
|
|
return callback(null);
|
|
|
|
}
|
|
|
|
this.headersDatStream.on('close', () => {
|
|
|
|
return callback(null);
|
|
|
|
});
|
|
|
|
this.headersDatStream.end();
|
|
|
|
},
|
|
|
|
(callback) => {
|
|
|
|
return this._createControlData(callback);
|
2020-04-28 02:55:41 +00:00
|
|
|
},
|
2020-05-01 04:07:29 +00:00
|
|
|
(callback) => {
|
|
|
|
return this._createIndexes(callback);
|
|
|
|
},
|
2020-04-28 02:55:41 +00:00
|
|
|
(callback) => {
|
2020-05-02 19:34:28 +00:00
|
|
|
return this._producePacketArchive(packetDirectory, callback);
|
2020-04-25 17:25:47 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
err => {
|
|
|
|
this.temptmp.cleanup();
|
|
|
|
|
|
|
|
if (err) {
|
|
|
|
return this.emit('error', err);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.emit('finished');
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-05-02 19:34:28 +00:00
|
|
|
_getNextAvailPacketFileName(packetDirectory, cb) {
|
|
|
|
//
|
|
|
|
// According to http://wiki.synchro.net/ref:qwk filenames should
|
|
|
|
// start with .QWK -> .QW1 ... .QW9 -> .Q10 ... .Q99
|
|
|
|
//
|
|
|
|
let digits = 0;
|
|
|
|
async.doWhilst( callback => {
|
|
|
|
let ext;
|
|
|
|
if (0 === digits) {
|
|
|
|
ext = 'QWK';
|
|
|
|
} else if (digits < 10) {
|
|
|
|
ext = `QW${digits}`;
|
|
|
|
} else if (digits < 100) {
|
|
|
|
ext = `Q${digits}`;
|
|
|
|
} else {
|
|
|
|
return callback(Errors.UnexpectedState(`Unable to choose a valid QWK output filename`));
|
|
|
|
}
|
|
|
|
|
|
|
|
++digits;
|
|
|
|
|
|
|
|
const filename = `${this.options.bbsID}.${ext}`;
|
|
|
|
fs.stat(paths.join(packetDirectory, filename), (err, stats) => {
|
|
|
|
if (err && 'ENOENT' === err.code) {
|
|
|
|
return callback(null, filename);
|
|
|
|
} else {
|
|
|
|
return callback(null, null);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
(filename, callback) => {
|
|
|
|
return callback(null, filename ? false : true);
|
|
|
|
},
|
|
|
|
(err, filename) => {
|
|
|
|
return cb(err, filename);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
_producePacketArchive(packetDirectory, cb) {
|
2020-04-28 02:55:41 +00:00
|
|
|
const archiveUtil = ArchiveUtil.getInstance();
|
|
|
|
|
2020-05-01 04:07:29 +00:00
|
|
|
fs.readdir(this.workDir, (err, files) => {
|
|
|
|
if (err) {
|
2020-04-28 02:55:41 +00:00
|
|
|
return cb(err);
|
|
|
|
}
|
2020-05-01 04:07:29 +00:00
|
|
|
|
2020-05-02 19:34:28 +00:00
|
|
|
this._getNextAvailPacketFileName(packetDirectory, (err, filename) => {
|
|
|
|
if (err) {
|
2020-05-01 04:07:29 +00:00
|
|
|
return cb(err);
|
|
|
|
}
|
2020-05-02 19:34:28 +00:00
|
|
|
|
|
|
|
const packetPath = paths.join(packetDirectory, filename);
|
|
|
|
archiveUtil.compressTo(
|
|
|
|
this.options.archiveFormat,
|
|
|
|
packetPath,
|
|
|
|
files,
|
|
|
|
this.workDir,
|
|
|
|
err => {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
2020-05-01 04:07:29 +00:00
|
|
|
});
|
2020-04-28 02:55:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_qwkMessageStatus(message) {
|
|
|
|
// - Public vs Private
|
|
|
|
// - Look at message pointers for read status
|
|
|
|
// - If +op is exporting and this message is to +op
|
|
|
|
// -
|
|
|
|
// :TODO: this needs addressed - handle unread vs read, +op, etc.
|
|
|
|
// ....see getNewMessagesInAreaForUser(); Variant with just IDs, or just a way to get first new message ID per area?
|
|
|
|
|
|
|
|
if (message.isPrivate()) {
|
|
|
|
return QWKMessageStatusCodes.UnreadPrivate;
|
|
|
|
}
|
|
|
|
return QWKMessageStatusCodes.UnreadPublic;
|
|
|
|
}
|
|
|
|
|
2020-04-25 17:25:47 +00:00
|
|
|
_writeMessageHeader(message, totalBlocks) {
|
|
|
|
const asciiNum = (n, l) => {
|
|
|
|
if (isNaN(n)) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
return n.toString().substr(0, l);
|
|
|
|
};
|
|
|
|
|
2020-04-28 02:55:41 +00:00
|
|
|
const asciiTotalBlocks = asciiNum(totalBlocks, 6);
|
|
|
|
if (asciiTotalBlocks.length > 6) {
|
|
|
|
this.emit('warning', Errors.General('Message too large for packet'), message);
|
|
|
|
return false;
|
|
|
|
}
|
2020-04-25 17:25:47 +00:00
|
|
|
|
2020-04-28 02:55:41 +00:00
|
|
|
const conferenceNumber = this._getMessageConferenceNumberByAreaTag(message.areaTag);
|
|
|
|
if (isNaN(conferenceNumber)) {
|
|
|
|
this.emit('warning', Errors.MissingConfig(`No QWK conference mapping for areaTag ${message.areaTag}`));
|
|
|
|
return false;
|
2020-04-25 17:25:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const header = Buffer.alloc(QWKMessageBlockSize, ' ');
|
2020-04-28 02:55:41 +00:00
|
|
|
header.write(this._qwkMessageStatus(message), 0, 1, 'ascii');
|
2020-05-01 04:07:29 +00:00
|
|
|
header.write(asciiNum(message.messageId), 1, 'ascii');
|
2020-04-25 17:25:47 +00:00
|
|
|
header.write(message.modTimestamp.format(QWKHeaderTimestampFormat), 8, 13, 'ascii');
|
|
|
|
header.write(message.toUserName.substr(0, 25), 21, 'ascii');
|
|
|
|
header.write(message.fromUserName.substr(0, 25), 46, 'ascii');
|
|
|
|
header.write(message.subject.substr(0, 25), 71, 'ascii');
|
|
|
|
header.write(' '.repeat(12), 96, 'ascii'); // we don't use the password field
|
|
|
|
header.write(asciiNum(message.replyToMsgId), 108, 'ascii');
|
2020-04-28 02:55:41 +00:00
|
|
|
header.write(asciiTotalBlocks, 116, 'ascii');
|
|
|
|
header.writeUInt8(QWKMessageActiveStatus.Active, 122);
|
|
|
|
header.writeUInt16LE(conferenceNumber, 123);
|
2020-05-01 04:07:29 +00:00
|
|
|
header.writeUInt16LE(this.totalMessages + 1, 125);
|
|
|
|
header.write(QWKNetworkTagIndicator.NotPresent, 127, 1, 'ascii'); // :TODO: Present if for network output?
|
2020-04-25 17:25:47 +00:00
|
|
|
|
|
|
|
this.messagesStream.write(header);
|
2020-04-28 02:55:41 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
_getMessageConferenceNumberByAreaTag(areaTag) {
|
2020-05-01 04:07:29 +00:00
|
|
|
if (Message.isPrivateAreaTag(areaTag)) {
|
|
|
|
return 0;
|
|
|
|
}
|
2020-04-28 02:55:41 +00:00
|
|
|
const areaConfig = _.get(Config(), [ 'messageNetworks', 'qwk', 'areas', areaTag ]);
|
|
|
|
return areaConfig && areaConfig.conference;
|
|
|
|
}
|
|
|
|
|
|
|
|
_getExportForUsername() {
|
|
|
|
return _.get(this.options, 'user.username', 'Any');
|
|
|
|
}
|
|
|
|
|
|
|
|
_getExportSysOpUsername() {
|
|
|
|
return StatLog.getSystemStat(SysProps.SysOpUsername) || 'SysOp';
|
2020-04-25 17:25:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_createControlData(cb) {
|
2020-04-28 02:55:41 +00:00
|
|
|
const areas = Array.from(this.areaTagsSeen).map(areaTag => {
|
2020-05-01 04:07:29 +00:00
|
|
|
if (Message.isPrivateAreaTag(areaTag)) {
|
|
|
|
return {
|
|
|
|
areaTag : Message.WellKnownAreaTags.Private,
|
|
|
|
name : 'Private',
|
|
|
|
desc : 'Private Messages',
|
|
|
|
};
|
|
|
|
}
|
2020-04-28 02:55:41 +00:00
|
|
|
return getMessageAreaByTag(areaTag);
|
|
|
|
});
|
|
|
|
|
2020-04-25 17:25:47 +00:00
|
|
|
const controlStream = fs.createWriteStream(paths.join(this.workDir, 'control.dat'));
|
|
|
|
controlStream.setDefaultEncoding('ascii');
|
|
|
|
|
|
|
|
controlStream.on('close', () => {
|
|
|
|
return cb(null);
|
|
|
|
});
|
|
|
|
|
|
|
|
controlStream.on('error', err => {
|
|
|
|
return cb(err);
|
|
|
|
});
|
|
|
|
|
2020-04-28 02:55:41 +00:00
|
|
|
const initialControlData = [
|
2020-04-25 17:25:47 +00:00
|
|
|
Config().general.boardName,
|
|
|
|
'Earth',
|
|
|
|
'XXX-XXX-XXX',
|
2020-04-28 02:55:41 +00:00
|
|
|
`${this._getExportSysOpUsername()}, Sysop`,
|
2020-04-25 17:25:47 +00:00
|
|
|
`0000,${this.options.bbsID}`,
|
|
|
|
moment().format('MM-DD-YYYY,HH:mm:ss'),
|
2020-04-28 02:55:41 +00:00
|
|
|
this._getExportForUsername(),
|
2020-04-25 17:25:47 +00:00
|
|
|
'', // name of Qmail menu
|
|
|
|
'0', // uh, OK
|
|
|
|
this.totalMessages.toString(),
|
|
|
|
// this next line is total conferences - 1:
|
|
|
|
// We have areaTag <> conference mapping, so the number should work out
|
|
|
|
(this.areaTagsSeen.size - 1).toString(),
|
|
|
|
];
|
|
|
|
|
2020-04-28 02:55:41 +00:00
|
|
|
initialControlData.forEach(line => {
|
2020-04-25 17:25:47 +00:00
|
|
|
controlStream.write(`${line}\r\n`);
|
|
|
|
});
|
|
|
|
|
2020-04-28 02:55:41 +00:00
|
|
|
// map areas as conf #\r\nDescription\r\n pairs
|
|
|
|
areas.forEach(area => {
|
|
|
|
const conferenceNumber = this._getMessageConferenceNumberByAreaTag(area.areaTag);
|
2020-05-01 04:07:29 +00:00
|
|
|
let desc = area.name;
|
|
|
|
if (area.desc) {
|
|
|
|
desc += ` - ${area.desc}`
|
|
|
|
}
|
2020-04-28 02:55:41 +00:00
|
|
|
controlStream.write(`${conferenceNumber}\r\n`);
|
2020-05-01 04:07:29 +00:00
|
|
|
controlStream.write(`${desc}\r\n`);
|
2020-04-28 02:55:41 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
// :TODO: do we ever care here?!
|
|
|
|
['HELLO', 'BBSNEWS', 'GOODBYE'].forEach(trailer => {
|
|
|
|
controlStream.write(`${trailer}\r\n`);
|
|
|
|
});
|
|
|
|
|
2020-04-25 17:25:47 +00:00
|
|
|
controlStream.end();
|
|
|
|
}
|
|
|
|
|
2020-05-01 04:07:29 +00:00
|
|
|
_createIndexes(cb) {
|
|
|
|
const appendIndexData = (stream, offset) => {
|
|
|
|
const msb = numToMbf32(offset);
|
|
|
|
stream.write(msb);
|
|
|
|
|
|
|
|
// technically, the conference #, but only as a byte, so pretty much useless
|
|
|
|
// AND the filename itself is the conference number... dafuq.
|
|
|
|
stream.write(Buffer.from([0x00]));
|
|
|
|
};
|
|
|
|
|
|
|
|
async.series(
|
|
|
|
[
|
|
|
|
(callback) => {
|
|
|
|
// Create PERSONAL.NDX
|
|
|
|
if (!this.personalIndex.length) {
|
|
|
|
return callback(null);
|
|
|
|
}
|
|
|
|
|
|
|
|
const indexStream = fs.createWriteStream(paths.join(this.workDir, 'personal.ndx'));
|
|
|
|
this.personalIndex.forEach(offset => appendIndexData(indexStream, offset));
|
|
|
|
|
|
|
|
indexStream.on('close', err => {
|
|
|
|
return callback(err);
|
|
|
|
});
|
|
|
|
|
|
|
|
indexStream.end();
|
|
|
|
},
|
|
|
|
(callback) => {
|
|
|
|
// 000.NDX of private mails
|
|
|
|
if (!this.inboxIndex.length) {
|
|
|
|
return callback(null);
|
|
|
|
}
|
|
|
|
|
|
|
|
const indexStream = fs.createWriteStream(paths.join(this.workDir, '000.ndx'));
|
|
|
|
this.inboxIndex.forEach(offset => appendIndexData(indexStream, offset));
|
|
|
|
|
|
|
|
indexStream.on('close', err => {
|
|
|
|
return callback(err);
|
|
|
|
});
|
|
|
|
|
|
|
|
indexStream.end();
|
|
|
|
},
|
|
|
|
(callback) => {
|
|
|
|
// ####.NDX
|
|
|
|
async.eachSeries(this.publicIndex.keys(), (areaTag, nextArea) => {
|
|
|
|
const offsets = this.publicIndex.get(areaTag);
|
|
|
|
const conferenceNumber = this._getMessageConferenceNumberByAreaTag(areaTag);
|
|
|
|
const indexStream = fs.createWriteStream(paths.join(this.workDir, `${conferenceNumber.toString()}.ndx`));
|
|
|
|
offsets.forEach(offset => appendIndexData(indexStream, offset));
|
|
|
|
|
|
|
|
indexStream.on('close', err => {
|
|
|
|
return nextArea(err);
|
|
|
|
});
|
|
|
|
|
|
|
|
indexStream.end();
|
|
|
|
},
|
|
|
|
err => {
|
|
|
|
return callback(err);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
],
|
|
|
|
err => {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-04-25 17:25:47 +00:00
|
|
|
_makeSynchronetTimestamp(ts) {
|
|
|
|
const syncTimestamp = ts.format('YYYYMMDDHHmmssZZ');
|
|
|
|
const syncTZ = UTCOffsetToSMBTZ[ts.format('Z')] || '0000'; // :TODO: what if we don't have a map?
|
|
|
|
return `${syncTimestamp} ${syncTZ}`;
|
|
|
|
}
|
|
|
|
|
2020-05-02 19:34:28 +00:00
|
|
|
_appendHeadersExtensionData(message, encoding) {
|
2020-04-25 17:25:47 +00:00
|
|
|
const messageData = {
|
|
|
|
// Synchronet style
|
2020-05-02 19:34:28 +00:00
|
|
|
Utf8 : ('utf8' === encoding ? 'true' : 'false'),
|
2020-04-25 17:25:47 +00:00
|
|
|
'Message-ID' : this.makeMessageIdentifier(message),
|
|
|
|
|
|
|
|
WhenWritten : this._makeSynchronetTimestamp(message.modTimestamp),
|
|
|
|
// WhenImported : '', // :TODO: only if we have a imported time from another external system?
|
|
|
|
ExportedFrom : `${this.options.systemID} ${message.areaTag} ${message.messageId}`,
|
|
|
|
Sender : message.fromUserName,
|
|
|
|
|
|
|
|
// :TODO: if exporting for QWK-Net style/etc.
|
|
|
|
//SenderNetAddr
|
|
|
|
|
|
|
|
SenderIpAddr : '127.0.0.1', // no sir, that's private.
|
|
|
|
SenderHostName : this.options.systemDomain,
|
|
|
|
// :TODO: if exported:
|
|
|
|
//SenderProtocol
|
|
|
|
Organization : 'BBS',
|
|
|
|
|
|
|
|
//'Reply-To' : :TODO: "address to direct replies".... ?!
|
|
|
|
Subject : message.subject,
|
|
|
|
To : message.toUserName,
|
|
|
|
//ToNetAddr : :TODO: net addr to?!
|
|
|
|
|
|
|
|
// :TODO: Only set if not imported:
|
|
|
|
Tags : message.hashTags.join(' '),
|
|
|
|
|
|
|
|
// :TODO: Needs tested with Sync/etc.; Sync wants Conference *numbers*
|
2020-05-01 04:07:29 +00:00
|
|
|
Conference : message.isPrivate() ? '0' : getMessageConfTagByAreaTag(message.areaTag),
|
2020-04-25 17:25:47 +00:00
|
|
|
|
|
|
|
// ENiGMA Headers
|
|
|
|
MessageUUID : message.uuid,
|
|
|
|
ModTimestamp : message.modTimestamp.format('YYYY-MM-DDTHH:mm:ss.SSSZ'),
|
|
|
|
AreaTag : message.areaTag,
|
|
|
|
};
|
|
|
|
|
|
|
|
const externalFlavor = message.meta.System[Message.SystemMetaNames.ExternalFlavor];
|
|
|
|
if (externalFlavor === Message.AddressFlavor.FTN) {
|
|
|
|
// Add FTN properties if it came from such an origin
|
|
|
|
if (message.meta.FtnProperty) {
|
|
|
|
const ftnProp = message.meta.FtnProperty;
|
|
|
|
messageData['X-FTN-AREA'] = ftnProp[Message.FtnPropertyNames.FtnArea];
|
2020-04-28 02:55:41 +00:00
|
|
|
messageData['X-FTN-SEEN-BY'] = ftnProp[Message.FtnPropertyNames.FtnSeenBy];
|
2020-04-25 17:25:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (message.meta.FtnKludge) {
|
|
|
|
const ftnKludge = message.meta.FtnKludge;
|
|
|
|
messageData['X-FTN-PATH'] = ftnKludge.PATH;
|
|
|
|
messageData['X-FTN-MSGID'] = ftnKludge.MSGID;
|
2020-04-28 02:55:41 +00:00
|
|
|
messageData['X-FTN-REPLY'] = ftnKludge.REPLY;
|
|
|
|
messageData['X-FTN-PID'] = ftnKludge.PID;
|
2020-04-25 17:25:47 +00:00
|
|
|
messageData['X-FTN-FLAGS'] = ftnKludge.FLAGS;
|
2020-04-28 02:55:41 +00:00
|
|
|
messageData['X-FTN-TID'] = ftnKludge.TID;
|
|
|
|
messageData['X-FTN-CHRS'] = ftnKludge.CHRS;
|
2020-04-25 17:25:47 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
messageData.WhenExported = this._makeSynchronetTimestamp(moment());
|
|
|
|
messageData.Editor = `ENiGMA 1/2 BBS FSE v${enigmaVersion}`;
|
|
|
|
}
|
|
|
|
|
2020-05-02 19:34:28 +00:00
|
|
|
this.headersDatStream.write(iconv.encode(`[${this.currentMessageOffset.toString(16)}]\r\n`, encoding));
|
2020-04-25 17:25:47 +00:00
|
|
|
|
|
|
|
for (let [name, value] of Object.entries(messageData)) {
|
|
|
|
if (value) {
|
2020-05-02 19:34:28 +00:00
|
|
|
this.headersDatStream.write(iconv.encode(`${name}: ${value}\r\n`, encoding));
|
2020-04-25 17:25:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.headersDatStream.write('\r\n');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-22 01:50:04 +00:00
|
|
|
module.exports = {
|
|
|
|
QWKPacketReader,
|
2020-04-25 17:25:47 +00:00
|
|
|
QWKPacketWriter,
|
2020-04-22 01:50:04 +00:00
|
|
|
}
|