arclink-access¶
Access module for Arclink.
Description¶
The Arclink access module is a virtual module that does not contain a binary. It is used to define access rule for particular stations and thus only provides bindings. The module itself does not need any configuration.
Bindings¶
For each network, station, stream marked as restricted in the inventory you may define a set of e-mail addresses of users that should have access to the data. This information is stored inside the SeisComp3 databases and it is later used by the request-handler (part of ArcLink) during the request authorization.
The process of expanding the access rules and generation of entries in the database is similar to the routing.
Generating Access¶
To define a list of users (pedro and joao) that have access to a certain restricted network, for example 9U, just create a file called profile_9u at the etc/key/arclink-access/ with the following line:
access.users = pedro, joao
or on a more sophisticated case:
access.users = pedro, joao
access.streams = BH*
Then link this profile from each station binding file in the etc/key folder. To link this profile just add a line like:
arclink-access:9u
to the station key file (file named like station_[Network Code]_[Station Code]).
Tuning of the access can be done by using disabledStationCode (advised), streams, start and end parameters like (similar syntax and behavior) done with the routing binding configuration on the ArcLink module.
Dumping Access¶
To dump access you should use the dump_db command, that is also used to dump the routing. Just add the option with-access like in:
% dump_db --routing --with-access routing.xml
the resulting file will then contain a list of access entries found in the database. Example:
<?xml version="1.0" encoding="utf-8"?>
<ns0:routing xmlns:ns0="http://geofon.gfz-potsdam.de/ns/Routing/1.0/">
<ns0:route locationCode="" networkCode="GE"
publicID="Route#20120830110313.459068.338"
stationCode="" streamCode="">
<ns0:arclink address="localhost:18001" end="" priority="1"
start="1980-01-01T00:00:00.0000Z" />
<ns0:seedlink address="localhost:18000" priority="1" />
</ns0:route>
<ns0:access end="" locationCode="" networkCode="GE"
start="1980-01-01T00:00:00.0000Z" stationCode=""
streamCode="" user="pedro" />
<ns0:access end="" locationCode="" networkCode="GE"
start="1980-01-01T00:00:00.0000Z" stationCode=""
streamCode="" user="joao" />
</ns0:routing>
Configuration¶
Note
access.* Defines access to restricted data. When defined it will add the listed users to the list of authorized users to access certain restricted data give the parameters on this binding.
-
access.users
¶ Type: list:string
List of users (e-mail addresses) allowed to access the restricted data.
-
access.disableStationCode
¶ Type: boolean
When disableStationCode option is set to true the access entries will be generated only for the network level (and optionally stream level), no station code will be filled (this can potentially reduce the number of entries on the access table, and save memory on the request handler when used). Default is
false
.
-
access.streams
¶ Type: list:string
List of locations.streams this access rule applies to. The location code is optional (optional, allow wildcards).
-
access.start
¶ Type: datetime
Start of validity (optional).
-
access.end
¶ Type: datetime
End of validity (optional).