Skip to content
Snippets Groups Projects
Commit 2ce026fb authored by deuce's avatar deuce
Browse files

If the file from a TIC already exists, use wildmatch() on Replaces to see

if it should be replaced.  It's common on FidoNet for replaces to have a
wildcard in it.

Also, add support for a new Handler key in tickit.ini.  This defines a file
which defines a Handle_TIC function and whose last statement isn't null.
The parsed TIC file is passed to this function and, if it returns true, the
file is assumed to be handled.
parent 3b39526e
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,22 @@ require('fido.js', 'FIDO');
* TickITCfg Properties:
* gcfg{} global config all keys converted to lower-case
* acfg{}{} per-address config objects all keys converted to lower-case
* Each object supports 'Links', 'Dir', and 'Path' properties.
* Each object supports 'Links', 'Dir', 'Path', and 'Handler'
* properties.
*
* A handler is a load() path to a script which must define a
* Handle_TIC(tic, obj) method. This method takes two arguments, the
* tic object and the "this" context of the caller. If Handle_TIC()
* returns true, it is assumed to have performed all processing necessary,
* so normal processing does not occur. The tic.full_path property *MUST*
* be updated to point to where an unmodified copy of the file can be
* found to transferring to downlinks. If no such copy can be kept, the
* tic.seenby array can be stuffed with the contents of obj.tickit.gcfg.links
* and obj.tickit.acfg[tic.area.toLowerCase()].links (if any) to prevent
* sending to any of the configured links. Failing to do this will result
* in TIC files without the corresponding attachment being send to downlinks.
* Further, the load file must not have a null last statement.
*
* cset character set used in base-X file naming
*
* TickITCfg Methods:
......@@ -22,6 +37,7 @@ function TickITCfg() {
var tcfg = new File(system.ctrl_dir+'tickit.ini');
var sects;
var i;
var tmp;
function get_bool(val) {
if (val === undefined)
......@@ -55,10 +71,22 @@ function TickITCfg() {
throw("Unable to open '"+tcfg.name+"'");
this.gcfg = tcfg.iniGetObject();
lcprops(this.gcfg);
if (this.gcfg.handler !== undefined) {
tmp = this.gcfg.handler;
this.gcfg.handler = {};
if (require(this.gcfg.handler, tmp, "Handle_TIC") == null)
delete this.gcfg.handler;
}
sects = tcfg.iniGetSections();
for (i=0; i<sects.length; i++) {
this.acfg[sects[i].toLowerCase()] = tcfg.iniGetObject(sects[i]);
lcprops(this.acfg[sects[i].toLowerCase()]);
if (this.acfg[sects[i].toLowerCase()].handler !== undefined) {
tmp = this.acfg[sects[i].toLowerCase()].handler;
this.acfg[sects[i].toLowerCase()].handler = {};
if (require(this.acfg[sects[i].toLowerCase()].handler, tmp, "Handle_TIC") == null)
delete this.acfg[sects[i].toLowerCase()].handler;
}
}
tcfg.close();
this.gcfg.ignorepassword = get_bool(this.gcfg.ignorepassword);
......
......@@ -124,11 +124,14 @@ function process_tic(tic)
var ld;
var i,j;
var cfg;
var handler;
if (tickit.gcfg.path !== undefined)
path = backslash(tickit.gcfg.path);
if (tickit.gcfg.dir !== undefined)
dir = tickit.gcfg.dir.toLowerCase();
if (tickit.gcfg.handler !== undefined)
handler = tickit.gcfg.handler;
cfg = tickit.acfg[tic.area.toLowerCase()];
if (cfg !== undefined) {
......@@ -141,6 +144,13 @@ function process_tic(tic)
if (cfg.path === undefined)
path = undefined;
}
if (cfg.handler !== undefined)
handler = cfg.handler;
}
if (handler !== undefined) {
if (handler.Handle_TIC(tic, this);
return true;
}
if (dir !== undefined) {
......@@ -177,9 +187,10 @@ function process_tic(tic)
}
log(LOG_DEBUG, "Moving file from "+tic.full_path+" to "+path+".");
// TODO: optionally delete replaced files even if it's not an overwrite
if (file_exists(path+tic.file)) {
if (tic.file !== tic.replaces) {
log(LOG_ERROR, "'"+tic.full_path+"' already exists in '"+path+"' and TIC does not have Replaces line.");
if (tic.replaces === undefined || !wildmatch(tic.file, tic.replaces)) {
log(LOG_ERROR, "'"+tic.full_path+"' already exists in '"+path+"' and TIC does not have matching Replaces line.");
return false;
}
else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment