====== TickIT - FidoNet TIC File Processor ====== TickIT (''[[dir:exec]]/tickit.js'') is a simple incoming TICK (TIC File) processor for Synchronet. It is configured via the file: ''[[dir:ctrl]]/tickit.ini'' Managing ''[[dir:ctrl]]/tickit.ini'' may be done manually or via ''[[dir:exec]]/tickitcfg.js''. The preferred method is via [[module:tickitcfg|tickitcfg]] which allows for importing your FDN areas as well as access to global and per area options. In a recent change to SBBSecho/EchoCfg v3 and ''tickit.js'', the TIC file password for each FTN-linked node is now stored in the ''TicFilePwd'' key of the corresponding ''[node]'' section of the ''[[config:sbbsecho.ini]]'' file and can be managed via AreaFix and via ''[[util:echocfg]]''. ===== Install ===== You should create an event to run it when you get .TIC files... Internal Code TICKIT Start-up Directory Command Line ?tickit.js Enabled Yes Execution Node 1 Execution Months Any Execution Days of Month Any Execution Days of Week None Execution Time 00:00 Requires Exclusive Execution No Force Users Off-line For Event No Native Executable No Use Shell to Execute No Background Execution No Always Run After Init/Re-init No * If using BinkD, add a line like this to your ''binkd.cfg'' file to create a semaphore file which triggers the TICKIT timed-event to execute whenever a ''.tic'' file is received: flag /sbbs/data/tickit.now *.tic *.TIC * [[module:binkit|BinkIT]] automatically runs the TICKIT timed event when a TIC file is received * If you would like to treat all imported ''.tic'' files as though they have a ''REPLACES'' clause, add the ''-force-replace'' option to the ticket.js command-line or use the ''Force Replace'' options in tickitcfg for global or per-area forced replacements ===== Invoke ===== ''tickit.js'' may be executed via [[util:JSexec]] or via timed event (as shown in the [[#Install]] section). ==== Command-line Syntax ==== tickit.js [cfg-file=tickit.ini] [-options] ^ Option ^ Description ^ | -force-replace | Always replace existing files of the same name in the same directory | | -debug | Enable extra debug-level log messages | The default configuration file is ''[[dir:ctrl]]/tickit.ini''. To use an alternate configuration file (but still located in the ''[[dir:ctrl]]'' directory), pass that filename on the command-line (not the full path, just the filename). Example: jsexec tickit.js alt_tickit.ini ===== Configure ===== ==== ctrl/tickit.ini ==== === Global Options === The following global options (located in the //root// section of the ''tickit.ini'' file) are used by TickIT: ^ Key ^ Description ^ | ''Path'' | Default local path to store files in. If this is set, the file will NOT be imported into a local sub. | | ''Dir'' | Default BBS file directory internal code to store files in. [[module:binkit|addfiles]] will be called to import the file. | | ''Links'' |Comma-separated list of FTN addresses to forward *all* files to. | | ''IgnorePassword'' | Set to true to ignore the password in the TIC file. This will allow anyone who can send a TIC file to your board to do so even if they are not configured as one of your linked systems. It should be used with extreme caution (and only used with SecureOnly). Global setting only; not overridden per FDN definition | | ''SecureOnly'' | Set to true to only import TIC files from the secure inbound. Global setting only; not overridden per FDN definition | | ''Handler'' | Set to the filename of a handler script as defined below. | | ''HandlerArg'' | A string that is passed to the handler function. | | ''AddFilesLogCap'' | Used to capture addfiles output into a log for debug and troubleshooting. Global setting only; not overridden per FDN definition | | ''SourceAddress'' | FTN address to send *all* files from when you are feeding FDNs to other systems. | | ''AKAMatching'' | Set to true to enable AKAMatching so that your best address is selected to be used when feeding files and TICs to other linked systems. | | ''ForceReplace'' | Set to true to forcibly replace existing files with new ones of the same name even if the TIC does not properly specify the REPLACES verb. This will allow anyone who can send a TIC file to your board to overwrite files in your file bases. It should be used with caution. | | ''Uploader'' |Default uploader name to be used in the files' database records | | ''AutoAreas'' |Set to a comma-separated list of File Library Short Names (case sensitive) which should be **automatically** added to the list of areas in your TickIT configuration. When incoming TICs are processed, the AREA tag must match the ''FidoNet Area Tag'' as defined in scfg. | **NOTE:** ''Path'' and ''Dir'' cannot be used together. === Sections === Each section is a FDN area definition. The ''[section]'' name must match the ''AREA'' tag in the TIC file. Each section supports the following options: ^ Key ^ Description ^ | ''Path'' | Local path to store files in. If this is set, the file will NOT be imported into a local directory. | | ''Dir'' | BBS file directory internal code to store files in. [[module:binkit|addfiles]] will be called to import the file. | | ''Links'' | Comma-separated list of FTN addresses to forward the files to. | | ''Handler'' | Set to the filename of a handler script as defined below. If present, this overrides the global Handler, they do not both run. | | ''HandlerArg'' |String that is passed to the handler function. | | ''SourceAddress''|FTN address to send files from when you are feeding this area to other systems. | | ''AKAMatching'' |Set to true to enable AKAMatching so that your best address is selected to be used when feeding files and TICs to other linked systems. | | ''ForceReplace'' |Set to true to forcibly replace existing files with new ones of the same name even if the TIC does not properly specify the REPLACES verb. | | ''Uploader'' | Uploader name for this FDN area | === Sample FDN Area Definition === The following is a sample FDN Area Definition for the DAILYLIST FDN. [DAILYLIST] Dir=FDIST-DAILYLIS Links=1:261/38,1:123/115,1:123/755,1:135/300,1:3634/12.73,1:3634/27 Handler=tickit/nodelist_handler.js HandlerArg={"domain":"fidonet", "match":"Z1DAILY.Z*", "nlmatch":"Z1DAILY.*"} SourceAddress=1:18/0 AKAMatching=false Uploader=DAILYLIST File Dist The Dir line contains the ''internal code'' for this area. In this case, ''FDIST-'' is the internal code for the file library and ''DAILYLIS'' is the internal code for the specific area. Both are used to determine the full ''internal code'' for the area. You do not have to define a code for the library if you do not want to but you must have an internal code for the area defined. These ''internal codes'' should be unique between areas or you will have them crosslinked and be putting files in the wrong area. The Links line should contain at least one FTN address. This will be the address of your feed for the FDNs you carry. Every system that you link this area to will be listed as shown above. No spaces are allowed and each FTN address must be complete. I generally put the addresses in numerical order with the first address listed being the main linked system feeding the area. This is not set in stone. You can list the addresses in any order you like. See the below [[tickit#nodelist_handlerjs|nodelist_handler]] subsection in the [[tickit#included_handler_scripts|Handler Scripts]] section for the definition of what the file handler related lines do. The SourceAddress is an override field if you want this area to be distributed from a different FTN address than your main one. Your main FTN address is the first one listed in scfg in the fidonet network configuration section. Each of your fidonet technology addresses will be listed in that same section all together. AKAMatching is another override for which of your addresses will be used if you have this area connected to more than one system. AKAMatching determines if your main address will be used, if one of your SourceAddress overrides will be used, or if your AKA will be matched to the closest of your addresses for the destination system. **Example:** If you have addresses 1:3634/12, 1:18/0, 1:123/0, and 1:3634/0 and you want this DAILYLIST FDN to be sent to each of the above listed links with the closest matching of your four FTN addresses, you would set AKAMatching=true. The following table shows which of these example FTN addresses will be used for each destination system based on the three address related options provided. ^ AKAMatching Table ^^ | || ^Global SourceAddress : 1:3634/12 ^^ ^DAILYLIST SourceAddress : [blank] ^^ ^AKAMatching : false ^^ | || ^ Destination System ^ Selected AKA ^ | 1:261/38 | 1:3634/12 | | 1:123/115 | 1:3634/12 | | 1:123/755 | 1:3634/12 | | 1:135/300 | 1:3634/12 | | 1:3634/12.73 | 1:3634/12 | | 1:3634/27 | 1:3634/12 | | || ^Global SourceAddress : 1:3634/12 ^^ ^DAILYLIST SourceAddress : 1:18/0 ^^ ^AKAMatching : false ^^ | || | 1:261/38 | 1:18/0 | | 1:123/115 | 1:18/0 | | 1:123/755 | 1:18/0 | | 1:135/300 | 1:18/0 | | 1:3634/12.73 | 1:18/0 | | 1:3634/27 | 1:18/0 | | || ^Global SourceAddress : 1:3634/12 ^^ ^DAILYLIST SourceAddress : 1:18/0 ^^ ^AKAMatching : true ^^ | || | 1:261/38 | 1:18/0 | | 1:123/115 | 1:123/0 | | 1:123/755 | 1:123/0 | | 1:135/300 | 1:18/0 | | 1:3634/12.73 | 1:3634/12 | | 1:3634/27 | 1:3634/0 | ==== Handler Scripts ==== TIC files can be passed to a handler for special processing. The handler is declared in a separate JS file which must not have a null last statement. If the handler returns a true value, the TIC file is assumed to have been processed and no further import actions are taken. A simple "do-nothing" handler script would be as follows: function Handle_TIC(tic, ctx, arg) { // Do nothing... return false; } 0; If the script returns true, it must ensure that tic.full_path is updated to the path where the unmodified file can be found to ensure it can be transferred to downlinks. If the handler wants to avoid it being sent to downlinks, it can stuff all the downlink addresses into the tic.seenby array like this: function Handle_TIC(tic, ctx, arg) { if (blackhole(tic)) { ctx.tickit.gcfg.links.forEach(function(link) { tic.seenby.push(link); }); ctx.tickit.acfg[tic.area.toLowerCase()].links.forEach(function(link) { tic.seenby.push(link); }); return true; } return false; } 0; ===== Included Handler Scripts ===== There are some TIC handler scripts in CVS now. They live in the exec/load/tickit directory. ==== nodelist_handler.js ==== This handler script is for keeping nodelists up to date. The HandlerArg is a JSON string containing a domain and optionally a filespec for the received file and for the nodelist file in the archive, as well as a return code. It uses the configured packers from sbbsecho.ini/sbbsecho.cfg, so ensure that the archiver used is defined there. It returns false so the file can also be processed normally (ie: imported into your local file area), and is forwarded to downlinks normally. Here is my tickit.ini entry: [DAILYLIST] Dir=DAILYLIST Handler=tickit/nodelist_handler.js HandlerArg={"domain":"fidonet", "match":"Z1DAILY.Z*", "nlmatch":"Z1DAILY.*"} This means that the Fido file area "DAILYLIST" files are imported into my BBS file area "DAILYLIST", and the tickit/nodelist_handler.js file contains the handler for this area. The handler is passed all of the available arguments. * ''domain'' the FTN domain this is the nodelist for. This value is **required**. * ''match'' the filespec for nodelist archives in this area. If the incoming file doesn't match this, the nodelist is not updated. This defaults to '*.*' on Windows and '*' everywhere else. * ''nlmatch'' the filespec for the nodelist file inside the archive. There must be exactly one file matching this filespec inside the archive or the nodelist will not be updated. This defaults to '*.*' on Windows and '*' everywhere else. **NOTE:** This handler will attempt to extract the nlmatch file from the match archive and write it to the directory and file name as defined in echocfg in the Domains definition section. The file will always be saved to the defined name and it will not be changed unless you change the Domain definition in echocfg. The domain argument must also be one defined in echocfg. ===== See Also ===== * [[module:|Module Index]] * [[TickITcfg]] * [[TickFix]] {{tag>fidonet tic tick raid jsutil}}