HFS: Event scripts: Difference between revisions

From rejetto wiki
Jump to navigation Jump to search
Line 39: Line 39:
; on macro rename : a <tt>{.rename.}</tt> was successful. Use <tt>%old-name%</tt> and <tt>%new-name%</tt> to know the full path of them.  
; on macro rename : a <tt>{.rename.}</tt> was successful. Use <tt>%old-name%</tt> and <tt>%new-name%</tt> to know the full path of them.  
: If you do a <tt>{.rename.}</tt> inside this event, by default, it won't fire the event again. If you want it to do it, you must use named parameter <tt>{.rename|recursive=1.}</tt>.
: If you do a <tt>{.rename.}</tt> inside this event, by default, it won't fire the event again. If you want it to do it, you must use named parameter <tt>{.rename|recursive=1.}</tt>.
;pre-filter-request : not documented yet
;pre-filter-request : not yet documented


=== Timed events ===
=== Timed events ===

Revision as of 23:20, 27 May 2010

Warning: this feature requires version 2.3 or above.

Event scripts are scripts that run when something happens: an event.

The syntax is very similar to the one used in templates. The name of the event is on a line, surrounded by [square brakets]. The script commands follows.

Example:

[upload completed]
{.move|%item-resource%|C:\another_folder\%item-name%.}

Would you need to not overwrite an existing event script, you can prefix the event name with a "+" sign. Example: [+upload completed].

You can read more on the forum.

Events list

Network events

server start
HFS was switched on, to accept connections.
server stop
HFS was switched off, connections are accepted no more.
request
an HTTP request has been made, this includes browsing, icons, archives, and normal downloads.
request completed
the request was fulfilled.
unauthorized
this user has no permission to access the requested resource.
connected
a new connection was established by a client.
disconnected
a connection is ended.
download
a download was requested.
download completed
a download has just finished.
upload completed
a file has been uploaded.
upload failed
a file has failed to be uploaded.

Naming events

You can use these events to change the name that will be given to the file that is about to be uploaded or downloaded: upload name, archive name, download name. The resulting text of these events will be used as new name for the worked file.

Other events

start
HFS was started.
quit
HFS is quitting.
file deleted
a file was remotely deleted. Use %item-deleted% ll path to it.
on macro rename
a {.rename.} was successful. Use %old-name% and %new-name% to know the full path of them.
If you do a {.rename.} inside this event, by default, it won't fire the event again. If you want it to do it, you must use named parameter {.rename|recursive=1.}.
pre-filter-request
not yet documented

Timed events

You can ask HFS to run a script at a certain time, or interval.

To run a script at 1PM o'clock, you can make an event [at 13:00].

To run every 15 minutes instead you should make an event [every 15 minutes].

You can read more on the forum.