Features
The web.properties
file configures several attributes for the InterMine web application.
attributeLink
Used to configure hyperlinks, generally to external dbs. See External Links below
bag.example.identifiers
Text present in the list upload form. See List upload examples below
externallink
Redirects links in query results. See Link redirects
galaxy
See Galaxy
genomicRegionSearch
See Region Search
header.links
Links at upper right corner
meta.keywords
Will populate meta tag for keywords
meta.description
Will populate meta tag for description. Google uses this in their search results, I think
project.citation
Populates the "Cite" text in the footer.
portal.welcome
The message to show when a user arrives at the webapp via the portal action (eg. <something>/portal.do)
quickSearch.identifiers
Text displayed in search box
theme
Colour scheme for the webapp. Available options are blue, bright_blue, gold, green, grey, brown, ecoli_blue, metabolic, modmine, ratmine and purple
xrefLink
Used to configure hyperlinks for CrossReferences. See below
markup.webpages.enable
Used to enable structured data in JSON-LD format in InterMine web pages. Available options are true or false
#
BrandingThese parameters are returned by the branding API end point, and are used by external applications, e.g. the InterMine iOS app, the InterMine registry and the InterMine R client.
branding.images.logo | This image should be 45px by 45px |
branding.colors.header.main | Main colour for your mine, defaults to grey, #595455 |
branding.colors.header.text | Text colour for your mine, defaults to white, #fff |
#
Home pageSearch box (first box on the left)
begin.searchBox.title | title of box on left |
begin.searchBox.description | text in the box on the left |
begin.searchBox.example | text in the form field |
List upload box (middle box)
begin.listBox.title | Title of box |
begin.listBox.description | Text in box |
bag.example.identifiers | Text in form field |
Third box
begin.thirdBox.title | Title of box if user is new |
begin.thirdBox.visitedTitle | Title of box if user has visited before |
begin.thirdBox.description | Text in box |
begin.thirdBox.linkTitle | Text for large button |
begin.thirdBox.link | URL for large button |
#
TabsTemplates tagged with each category will appear under the appropriate tab.
begin.tabs.1.id | Name of category, eg. Genes |
begin.tabs.1.description | Text for that tab |
#
List upload examplesUsing the bag.example.identifiers
key, one can provide a list of keyword examples on the list create/upload page. This could lead to a mixed list of items being updated and only, say Protein or Gene, identifiers being uploaded.
#
External linksYou can add links to other websites by adding entries to the web.properties
file.
The format for this property is:
unique_name
Used to distinguish between multiple configurations for the same attribute/organism/class combination
class
Class of object to link, eg. Protein
taxonId
Either a proper id or '*' when no assumption is made regarding the organism
attributeName
Which identifier field to pass to the URL, e.g. if attributeName is primaryIdentifier, the value of primary identifier field will be used as the attribute value
list
Indicates the link will have a list of identifiers
url
URL to link to
imageName
Name of logo (optional), must be in /model directory
text
Text that will appear next to the logo
The value of the attribute (for the current object) is substituted anywhere the string "<<attributeValue>>" occurs in the text or the URL
For example:
In this case Gene
pages for Drosophila melanogaster will have a link that uses the organismDbId
field.
A list example:
Only if a taxonId is specified, the code will check if the link to the external db is relevant.
#
Settings for the xrefLink propertyYou can configure the URLs for querying CrossReference from external sources by adding entries to the web.properties
file.
The format for this property is:
dataSource_name
The name of the external database
url
URL to link to
imageName
Name of logo (optional), must be in /model directory
For example:
Cross references represent identifiers used in external databases, eg. FlyBase, UniProt. An object in InterMine which has CrossReference will have an identifier and data source for that cross reference. In order to find the cross reference in that data source, a URL is required to link to, and the full path should look like url+identifier, e.g. ''http://pfam.sanger.ac.uk/family?PF00001''. In web.properties, the first part of the full path could be configured as in "url", and identifier will be added programmatically to the rear of it. The dataSource_name should be consistent with the source name of the CrossReferences in the InterMine database.
#
OpenAuth2 Settings (aka. OpenID Connect)You can configure your mine to accept delegated authentication from one or more identity resources which are protected by OAuth2 authentication. This involves sending the user to another site, having them sign in there, and being sent back to your InterMine with their credentials.
We are using the Apache OLTU library to help manage the authentication flow. This means that configuring some of the more common providers, such as Google, Facebook, Github and Microsoft is very simple. It also allows us to add any identity provider that meets certain minimum sanity requirements.
Warning Google has closed down their OpenID-2 based authentication solution in favour of OpenID Connect (OAuth2). If you want to use Google as an authentication provider you must use OAuth2.
Configuration is managed through adding values to the web-properties
.
#
Registering your Application.You must register your application with the provider, giving them details of your application such as its name, and where it will be located. This varies from provider to provider - see this tutorial for a good guide to the registration process for a number of popular providers. For example, for Google, you will need a Google+ account and to visit the Google developer's console to create an application.
For ELIXIR, you will need:
an ELIXIR identity. Please register the ELIXIR ID here , if you don't already
have it
register the new client here, using the Self-service client registration page.
send an email to aai-contact@elixir-europe.org in order to receive a form that you have to complete with additional information
For each application you will need to register the callback URI, which looks like:
Where webapp.baseurl
and webapp.path
are the corresponding values from your configuration, and PROVIDER
is the name of the provider in all uppercase letters (as configured below). Google requires the provider
parameter as part of the URI, but other providers do not - you should check with each of them.
You will probably be asked to register a JavaScript domain. This is not used by us, but you can enter the webapp.baseurl
.
#
Enabling Supported ProvidersYou will need to inform the InterMine system of the names of the providers which have been configured to work with your application. This should be a comma separated list of provider names. The values are case insensitive, and will be processed as upper-case values. E.g.:
#
Configuring OLTU Supported ProvidersTo configure an OLTU supported provider (such as Github or Facebook), you simply need to define the client-id and client-secret you registered your application with, eg:
Warning All secrets, including these ones (especially the client-secret) MUST not be committed to version control or made publicly accessible. DO NOT add them to your web.properties file, but instead, add them to your mine.properties file (eg. ~/.intermine/MINE.properties).
#
Configuring a Custom ProviderTo configure a custom provider, some other properties need to be provided. Taking AIP's araport system as an example, this can be configured thusly:
The URLs needed by the flow - contact your provider to find these out:
The scopes need to access the identity resource. This should include sufficient levels of permission to access the name and email of the authenticating user.
Information about the way the token endpoint functions. If the token endpoint expects parameters to be passed in the query-string use the value "QUERY", and if the endpoint expects the parameters to be passed in the message body provide the value "BODY":
Information about the way the token endpoint responds. If the token endpoint responds with JSON
, then provide the value "JSON", and if the endpoint responds with url-encoded form-data, then provide the value "FORM"
Information about the way the identity resource operates. If the resource expects the bearer token to be in the query parameters, provide the value "query", and if the bearer token is expected to be in the Authorization
header, pass the value "header".
The location of the identity resource. This must be a resource that can respond with JSON
. If query parameters are needed they should be included in the URL. An Accept
header will be provided with the value application/json
.
Guides to interpreting the response from the identity resource. These are all optional.
#
Delegated Authentication with JWTsInterMine supports completely automated delegated authentication, whereby a mediator may add a token that authenticates the user according to a chain of trust. This uses public-key cryptography to establish trust, and JWTs to transmit assertions.
Note
All the configuration in this section can (and should) go in your ~/.intermine/MINE.properties
file.
To enable this feature you need to do a couple of things:
#
Create a Key Store [optional]InterMine needs access to public keys - this can mean creating a JKS key store (http://docs.oracle.com/javase/7/docs/api/java/security/KeyStore.html) with the certificate used to sign the JWTs - you should store the certificate against the alias with the same name as used in the iss
claim in the JWT. The keystore file should be saved as keystore.jks.$release
in the ~/.intermine
directory, or moved as part of your release cycle to MINE/resources/webapp/WEB-INF/
immediately prior to building your webapp.
If you do this, then you need to provide the following configuration:
security.keystore.password | The password for this keystore. |
---|
If your keystore has no password, then you do not need to set that property. See below for a quick guide to creating a valid keystore.
#
Provide Public Keys in your properties files [optional]Instead of (or in addition to) creating a keystore, you can also provide keys in property files. Even though these are public keys, they are best included in your ~/.intermine/MINE.properties.release
file, since they will be specific to a particular instance. Internally if you do not provide a keystore, an empty one will be created.
This is done by listing them as follows:
security.publickey.$ALIAS | $BASE64_ENCODED_PUBLIC_KEY |
---|
You can provide multiple keys and they will all be stored in the applications key-store under the given alias. Every key must have an alias, even if there is only one. If there is a problem with the key (it cannot be decoded, it is not valid, etc) it will be skipped by default, unless the following property is set to true
(in which case it will throw an error and prevent your web-application from starting):
keystore.strictpublickeydecoding | true or false |
---|
The value BASE64_ENCODED_PUBLIC_KEY
is the base64 encoding of the bytes of public key. Below is a sample program to illustrate how to do this in Java and python respectively:
or
#
Selecting keys at runtime.Since this feature relies on public key cryptography, you need to tell the InterMine application which keys to use to verify which JWT tokens. This can be done with the following properties:
jwt.verification.strategy | NAMED_ALIAS (default), ANY , or WHITELIST - optional |
---|
This property defaults to the most secure option, NAMED_ALIAS
, where only keys associated with the issuer of the token will be used to verify it. This means you will need to link the two. Each token must identify its issuer (with the iss
claim), you can map from that value to a key available to InterMine by providing the alias it is available as in the keystore. If you plan on accepting your own tokens, then you can provide the alias of your private key.
security.keystore.alias.$iss | The alias for the key certificate used to sign the JWT. |
---|
If you use the WHITELIST
strategy, then you must provide the list of aliases that can be used to verify JWTs. All of them will be tried until one verifies successfully.
jwt.alias.whitelist | The comma separated list of aliases to use. |
---|
If you select the ANY
strategy, no further configuration is needed.
Multiple issuers can be supported by providing a key for each alias.
#
Managing non-standard claimsInterMine reads to claims about the end user from the JWT - who it identifies, and their email address. The email claim is non-standard, and needs to be configured. The subject claim can be overridden if the JWT tokens you are receiving have their subject identified in a different claim. To do so provide the following properties (in the following table, $iss
is the value of the iss
claim of the token):
jwt.key.email.$iss | The name of the claim that provides the email of the subject. Defaults to http://wso2.org/claims/emailaddress |
jwt.key.sub.$iss | The name of the claim that provides the identity of the subject. This should be unique for each issuer. Not needed if the token provides the sub claim |
#
Other propertiesThe following properties may also be important
jwt.publicidentity | Used as the iss claim on any tokens the application issues itself. Also, if the tokens received include an aud claim (see aud definition) then this value must match that value for verification to complete. Defaults to your project title. |
jwt.verifyaudience | true or false (default = true). Whether to verify the aud claim. |
security.privatekey.password | Used to gain access to the private key used by the application for signing its own tokens. |
security.privatekey.alias | Used to retrieve the private key used by the application for signing its own tokens. To provide a private key you must configure a key store. |
#
Checking your configurationAn ant task is provided to make checking this (admittedly rather complex) set-up easier. To make use of it you should configure your keys as for production, acquire a valid JWT representative of one of the ones you expect to encounter in production, enter you webapp directory ($MINE/webapp
) and then call the following ant task:
If correctly set up, you should get a message printed to the console telling you who the token identifies.
#
Setting up the Key-StoreYou will need a Java Key Store to use public-key cryptography for security. To get started, you can use the following command to generate a keystore.jks
file with a new public/private key-pair:
The following command will allow you to add a certificate to your key-store:
This set-up would allow you to start accepting JWT tokens signed by the owner of B.crt
, which could be configured by making sure they are associated in your property files. So if the owner of B.crt
identified themselves with the iss
(issuer) claim http://b.com
, then you could link the certificate to the claim with the following property:
#
Overriding propertiesintermine/webapp/main/resources/webapp/WEB-INF/global.web.properties
-used by all mines. Properties set here will be available to everyone, even the test model mine.
bio/webapp/resources/webapp/WEB-INF/bio.web.properties
-used by all bio-mines. Properties set here will be available to all mines that use the bio layer. So, not the test model. Can overwrite properties in the global.web.properties file.
flymine/webapp/resources/web.properties
- used by a mine. Properties set here will be available to only that specific mine. Can create mine-specific properties or overwrite properties in the above two files.$HOME/.intermine/flymine.properties
- used by a mine. Properties set here will be available only to that specific mine, and will override all other properties. Put sensitive values here that should not be committed to version control.