Frame import into message base
This commit is contained in:
parent
d31778d7b9
commit
7b13525108
@ -12,17 +12,17 @@ load('texfuncs.js');
|
|||||||
|
|
||||||
while(bbs.online) {
|
while(bbs.online) {
|
||||||
var mode = false; // Initial mode
|
var mode = false; // Initial mode
|
||||||
var next_page = { frame: 1,index: 'a'}; // Start Frame
|
var next_page = { frame: 1,index: 'a'}; // Start Frame
|
||||||
var action = ACTION_GOTO; // Initial action
|
var action = ACTION_GOTO; // Initial action
|
||||||
var inkey_timeout = 0; // Timeout waiting for input @todo required? check if idle timetout occurs
|
var inkey_timeout = 0; // Timeout waiting for input @todo required? check if idle timetout occurs
|
||||||
var fo = null; // Current Frame
|
var fo = null; // Current Frame
|
||||||
ansiterm.send('ext_mode','clear','cursor');
|
ansiterm.send('ext_mode','clear','cursor');
|
||||||
|
|
||||||
while (action != ACTION_TERMINATE) {
|
while (action != ACTION_TERMINATE) {
|
||||||
bbs.nodesync(false); // @todo Stop the display of telegrams
|
bbs.nodesync(false); // @todo Stop the display of telegrams
|
||||||
read = console.inkey(K_NONE,inkey_timeout);
|
read = console.inkey(K_NONE,inkey_timeout);
|
||||||
system.node_list[bbs.node_num-1].action=0xff; // to ensure our node status is updated correctly
|
system.node_list[bbs.node_num-1].action=0xff; // to ensure our node status is updated correctly
|
||||||
inkey_timeout = 60000; // Set our key timeout to 60s
|
inkey_timeout = 60000; // Set our key timeout to 60s
|
||||||
log(LOG_DEBUG,'READ: ['+read+']');
|
log(LOG_DEBUG,'READ: ['+read+']');
|
||||||
|
|
||||||
log(LOG_DEBUG,'MODE START: ['+read+']');
|
log(LOG_DEBUG,'MODE START: ['+read+']');
|
||||||
|
@ -1,54 +1,115 @@
|
|||||||
load('texdefs.js');
|
load('texdefs.js');
|
||||||
load('texfuncs.js');
|
load('texfuncs.js');
|
||||||
|
|
||||||
// File to convert
|
// Import
|
||||||
file = getArg('-f','No file specified with -f',true);
|
send = getArg('-s','Use -s 1 to send',false);
|
||||||
// Page
|
file = getArg('-S','Use -S filename',false);
|
||||||
p = getArg('-p','No page specified with -p',true);
|
frame = '';
|
||||||
// Index
|
|
||||||
i = getArg('-i','No index specified with -i',false);
|
|
||||||
// Key
|
|
||||||
key = getArg('-k','No index specified with -k',false);
|
|
||||||
// Cost
|
|
||||||
cost = getArg('-c','No index specified with -c',false);
|
|
||||||
// Owner
|
|
||||||
owner = getArg('-o','No owner specified with -o',true);
|
|
||||||
|
|
||||||
f = new File(file);
|
if (! send || ! file) {
|
||||||
if (! f.exists || ! f.open('r')) {
|
// File to convert
|
||||||
log(LOG_ERROR,'Unable to open ['+file+']');
|
file = getArg('-f','No file specified with -f',true);
|
||||||
exit(1);
|
// Page
|
||||||
|
p = getArg('-p','No page specified with -p',true);
|
||||||
|
// Index
|
||||||
|
i = getArg('-i','No index specified with -i',false);
|
||||||
|
// Key
|
||||||
|
key = getArg('-k','No index specified with -k',false);
|
||||||
|
// Cost
|
||||||
|
cost = getArg('-c','No index specified with -c',false);
|
||||||
|
// Owner
|
||||||
|
owner = getArg('-o','No owner specified with -o',true);
|
||||||
|
// Import
|
||||||
|
send = getArg('-s','Use -s 1 to send',false);
|
||||||
|
|
||||||
|
f = new File(file);
|
||||||
|
if (! f.exists || ! f.open('r')) {
|
||||||
|
log(LOG_ERROR,'! ERROR: Unable to open ['+file+']');
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
frame = new Frame(p,i);
|
||||||
|
frame.owner = base64_encode(owner.replace(/\\1/g,"\1"));
|
||||||
|
frame.content = base64_encode(f.read());
|
||||||
|
|
||||||
|
if (key) {
|
||||||
|
frame.key = key.split(',').map(function(t){return parseInt(t)});
|
||||||
|
|
||||||
|
if (frame.key.length != 10) {
|
||||||
|
log(LOG_ERROR,'! ERROR: Must specify 10 keys with -k');
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Public
|
||||||
|
frame.isPublic = (argv.indexOf('-P') >= 0);
|
||||||
|
frame.isAccessible = (argv.indexOf('-A') >= 0);
|
||||||
|
if (cost)
|
||||||
|
frame.cost = cost;
|
||||||
|
|
||||||
|
// Date
|
||||||
|
frame.date = new Date().toISOString();
|
||||||
|
|
||||||
|
// Store the frame in file
|
||||||
|
file = system.text_dir+'ansitex/'+frame.page+'.tex';
|
||||||
|
w = new File(file);
|
||||||
|
if (! w.open('w')) {
|
||||||
|
log(LOG_ERROR,'! ERROR: Unable to create TEX file for '+frame.page);
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
w.write(JSON.stringify(frame));
|
||||||
|
w.close();
|
||||||
|
|
||||||
|
printf('Saved file: %s.tex',frame.page);
|
||||||
}
|
}
|
||||||
|
|
||||||
frame = new Frame(p,i);
|
// @NOTE: We need to use a binary signature then base64 encode it, as mailers may strip 0x0a while messages are in transit.
|
||||||
frame.owner = base64_encode(owner.replace(/\\1/g,"\1"));
|
if (send == 1) {
|
||||||
frame.content = base64_encode(f.read());
|
if (! file_exists(file)) {
|
||||||
|
log(LOG_ERROR,'! ERROR: File '+file+' doesnt exist?');
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
if (key) {
|
if (! frame) {
|
||||||
frame.key = key.split(',').map(function(t){return parseInt(t)});
|
f = new File(file);
|
||||||
|
if (! f.open('r')) {
|
||||||
|
log(LOG_ERROR,'! ERROR: Unable to open '+file);
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
if (frame.key.length != 10) {
|
try {
|
||||||
log(LOG_ERROR,'Must specify 10 keys with -k');
|
frame = JSON.parse(f.read());
|
||||||
exit(1);
|
x = new Frame(0);
|
||||||
}
|
frame.render = x.render;
|
||||||
|
|
||||||
|
// @todo Figure out how to delete this duplicate code
|
||||||
|
Object.defineProperty(frame,'page', {
|
||||||
|
get: function() {return this.frame+this.index}
|
||||||
|
});
|
||||||
|
} catch (error) {
|
||||||
|
log(LOG_ERROR,error);
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
f.close();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (file_exists(file+'.gpg'))
|
||||||
|
file_remove(file+'.gpg')
|
||||||
|
|
||||||
|
result = system.exec('gpg --homedir /opt/sbbs/mods/keys --batch --local-user 516@videotex -s '+file);
|
||||||
|
w = new File(file+'.gpg');
|
||||||
|
|
||||||
|
if (w.open('r')) {
|
||||||
|
msg = base64_encode(w.read());
|
||||||
|
|
||||||
|
} else {
|
||||||
|
log(LOG_ERROR,'! ERROR: Unable to send with GPG for '+frame.page + ' Error: '+w.error);
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
w.close();
|
||||||
|
|
||||||
|
msgBaseExport(null,frame.page,msg);
|
||||||
|
printf('GPG Result: %s',result);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Public
|
|
||||||
frame.isPublic = (argv.indexOf('-P') >= 0);
|
|
||||||
frame.isAccessible = (argv.indexOf('-A') >= 0);
|
|
||||||
if (cost)
|
|
||||||
frame.cost = cost;
|
|
||||||
|
|
||||||
// Date
|
|
||||||
frame.date = new Date().toISOString();
|
|
||||||
|
|
||||||
w = new File(system.text_dir+'ansitex/'+frame.page+'.tex');
|
|
||||||
if (! w.open('w')) {
|
|
||||||
log(LOG_ERROR,'Unable to create TEX file for '+frame.page);
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
w.write(JSON.stringify(frame));
|
|
||||||
w.close();
|
|
||||||
|
|
||||||
printf('Saved file: %s.tex',frame.page);
|
|
7
mods/keys/genkey.txt
Normal file
7
mods/keys/genkey.txt
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
Key-Type: default
|
||||||
|
Key-Usage: encrypt,sign
|
||||||
|
Name-Real: Your Name
|
||||||
|
Name-Comment: Ansitex Page *???#
|
||||||
|
Name-Email: ???@videotex
|
||||||
|
Expire-Date: 0
|
||||||
|
%commit
|
@ -1,48 +1,72 @@
|
|||||||
if (!String.prototype.repeat) {
|
if (!String.prototype.repeat) {
|
||||||
String.prototype.repeat = function(count) {
|
String.prototype.repeat = function(count) {
|
||||||
'use strict';
|
'use strict';
|
||||||
if (this == null) {
|
if (this == null) {
|
||||||
throw new TypeError('can\'t convert ' + this + ' to object');
|
throw new TypeError('can\'t convert ' + this + ' to object');
|
||||||
}
|
}
|
||||||
var str = '' + this;
|
var str = '' + this;
|
||||||
count = +count;
|
count = +count;
|
||||||
if (count != count) {
|
if (count != count) {
|
||||||
count = 0;
|
count = 0;
|
||||||
}
|
}
|
||||||
if (count < 0) {
|
if (count < 0) {
|
||||||
throw new RangeError('repeat count must be non-negative');
|
throw new RangeError('repeat count must be non-negative');
|
||||||
}
|
}
|
||||||
if (count == Infinity) {
|
if (count == Infinity) {
|
||||||
throw new RangeError('repeat count must be less than infinity');
|
throw new RangeError('repeat count must be less than infinity');
|
||||||
}
|
}
|
||||||
count = Math.floor(count);
|
count = Math.floor(count);
|
||||||
if (str.length == 0 || count == 0) {
|
if (str.length == 0 || count == 0) {
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
// Ensuring count is a 31-bit integer allows us to heavily optimize the
|
// Ensuring count is a 31-bit integer allows us to heavily optimize the
|
||||||
// main part. But anyway, most current (August 2014) browsers can't handle
|
// main part. But anyway, most current (August 2014) browsers can't handle
|
||||||
// strings 1 << 28 chars or longer, so:
|
// strings 1 << 28 chars or longer, so:
|
||||||
if (str.length * count >= 1 << 28) {
|
if (str.length * count >= 1 << 28) {
|
||||||
throw new RangeError('repeat count must not overflow maximum string size');
|
throw new RangeError('repeat count must not overflow maximum string size');
|
||||||
}
|
}
|
||||||
var rpt = '';
|
var rpt = '';
|
||||||
for (;;) {
|
for (;;) {
|
||||||
if ((count & 1) == 1) {
|
if ((count & 1) == 1) {
|
||||||
rpt += str;
|
rpt += str;
|
||||||
}
|
}
|
||||||
count >>>= 1;
|
count >>>= 1;
|
||||||
if (count == 0) {
|
if (count == 0) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
str += str;
|
str += str;
|
||||||
}
|
}
|
||||||
return rpt;
|
return rpt;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
function cursorOff() {
|
function cursorOff() {
|
||||||
ansiterm.send('ext_mode','clear','cursor');
|
ansiterm.send('ext_mode','clear','cursor');
|
||||||
console.gotoxy(0,24);
|
console.gotoxy(0,24);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Find a message base by code
|
||||||
|
*
|
||||||
|
* @param code
|
||||||
|
* @returns {number | string|boolean}
|
||||||
|
*/
|
||||||
|
function findMsgBase(code)
|
||||||
|
{
|
||||||
|
if (! code)
|
||||||
|
code = "tex_data";
|
||||||
|
|
||||||
|
// Find the actual sub-code
|
||||||
|
var sub_code;
|
||||||
|
|
||||||
|
for (var s in msg_area.sub) {
|
||||||
|
var sub = msg_area.sub[s];
|
||||||
|
|
||||||
|
if (sub.code.substr(-code.length).toLowerCase() == code)
|
||||||
|
return sub.code;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -52,16 +76,16 @@ function cursorOff() {
|
|||||||
* @param error
|
* @param error
|
||||||
*/
|
*/
|
||||||
function getArg(key,error,abort) {
|
function getArg(key,error,abort) {
|
||||||
index = argv.indexOf(key);
|
index = argv.indexOf(key);
|
||||||
|
|
||||||
if ((index !== -1) && (! (argv[index+1] === undefined || argv[index+1].match(/^-/)))) {
|
if ((index !== -1) && (! (argv[index+1] === undefined || argv[index+1].match(/^-/)))) {
|
||||||
return argv[index+1];
|
return argv[index+1];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (abort) {
|
if (abort) {
|
||||||
log(LOG_ERROR,error);
|
log(LOG_ERROR,error);
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function getFrame(page) {
|
function getFrame(page) {
|
||||||
@ -75,29 +99,43 @@ function getFrame(page) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
frame = JSON.parse(f.read());
|
frame = JSON.parse(f.read());
|
||||||
x = new Frame(0);
|
x = new Frame(0);
|
||||||
frame.render = x.render;
|
frame.render = x.render;
|
||||||
|
|
||||||
// @todo Figure out how to delete this duplicate code
|
// @todo Figure out how to delete this duplicate code
|
||||||
Object.defineProperty(frame,'page', {
|
Object.defineProperty(frame,'page', {
|
||||||
get: function() {return this.frame+this.index}
|
get: function() {return this.frame+this.index}
|
||||||
});
|
});
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
log(LOG_ERROR,error);
|
log(LOG_ERROR,error);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
log(LOG_DEBUG,'Loaded frame: ['+frame.frame+']['+frame.index+'] ('+frame.page+')');
|
log(LOG_DEBUG,'Loaded frame: ['+frame.frame+']['+frame.index+'] ('+frame.page+')');
|
||||||
return frame;
|
return frame;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function msgBaseExport(msgbase,page,text) {
|
||||||
|
var msgbase = new MsgBase(findMsgBase(msgbase));
|
||||||
|
|
||||||
|
log(LOG_DEBUG,'Sending ['+page+'] to message base ['+msgbase.cfg.code+']');
|
||||||
|
|
||||||
|
var hdr = { to:'All', from:'Videotex', subject:'Frame: '+page };
|
||||||
|
|
||||||
|
var body = '';
|
||||||
|
body += text+"\r\n";
|
||||||
|
body += "--- " + js.exec_file + " " + '1.0' + "\r\n";
|
||||||
|
|
||||||
|
return msgbase.save_msg(hdr, body);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return the frame as a string
|
* Return the frame as a string
|
||||||
*/
|
*/
|
||||||
function pageStr(page) {
|
function pageStr(page) {
|
||||||
if (! page.index)
|
if (! page.index)
|
||||||
page.index = 'a';
|
page.index = 'a';
|
||||||
|
|
||||||
return page.frame+page.index;
|
return page.frame+page.index;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user