Skip to main content

Authentication in Chemotion

This page provides comprehensive instructions for all configurations related to user authentication.

The default authentication method for Chemotion is database authentication, allowing users to log in with an email address or acronym. Passwords in Chemotion are encrypted.

Database Authentication

This method involves hashing and storing a user's password in the database. When a user attempts to sign in, the system validates their authenticity by comparing the entered password, once hashed, with the stored hash. This process ensures that sensitive password information is never stored in plain text, enhancing the security of user data.

Third-Party Authentication

We also offer third-party authentication options, including Shibboleth, OIDC (Open ID Connect), ORCID, GitHub, and NFDI AAI. To configure these options, visit the Chemotion Administration page. On the left side, under 'UI Features', find the function labeled 'User Provider'. Click on the yellow 'Edit JSON' button to access the configuration settings.

adminui-uifeatures-edit_permission

Shibboleth

{
shibboleth: { 
enable: false,
uid: 'pairwise-id',
email: 'mail',
last_name: 'sn',
first_name: 'givenName'
}
}

Parameters

ParametersValueDescription
enabletrue or false
uid'pairwise-id'
email'mail'
last_name'sn'
first_name'givenName'

OIDC (Open ID Connect)

{
openid_connect: {
enable: true,
host: "oidc.address.edu",
icon: "path/to/image.png",
issuer: "https://oidc.address.edu/path/to/issuer",
scheme: "https",
client_id: "myClientID",
redirect_uri: "https://your-eln.edu/users/auth/openid_connect/callback",
client_secret: "secret",
token_endpoint: "/oauth2/token",
authorization_endpoint: "/oauth2/auth"
}
}

Parameters

ParameterValueDescription
enabletrue or false
hostaddress of the service
iconpath to a public image to display on the sign-in page
issuerURL of the issuer
schemehttps
client_idclient ID
redirect_uriyour Chemotion ELN URL + '/users/auth/openid_connect/callback'
client_secretsecret
token_endpoint/oauth2/token
authorization_endpoint/oauth2/auth

ORCID

{
github: {
enable: false
client_id: null
client_secret: null
}
}

Parameters

ParametersValueDescription
enabletrue or false
uid'pairwise-id'
email'mail'
last_name'sn'
first_name'givenName'

GitHub

{
github: {
enable: false
client_id: null
client_secret: null
}
}

Parameters

ParametersValueDescription
enabletrue or false
uid'pairwise-id'
email'mail'
last_name'sn'
first_name'givenName'

NFDI AAI

In ELN 1.6, we've introduced several third-party login authentication methods, including Shibboleth and OpenID Connect. Since NFDI AAI RegAPP uses OpenID Connect, it is ready for use with ELN version 1.6 or higher. The integration of Chemotion with NFDI AAI RegAPP has been successfully tested and is now available on the labimotion test instance.

info

Instructions for applying for a client ID for Your Instance:

Please **send an email to chemotion-nfdi-aai@lists.kit.edu with the following information:

  1. Your Institution name (e.g., Karlsruhe Institute of Technology)
  2. Your FQDN (Fully Qualified Domain Name) (e.g., https://your-eln.edu)
  3. ELN Version
{
openid_connect: {
enable: true,
host: "regapp.nfdi-aai.de",
label: "NFDI AAI",
issuer: "https://regapp.nfdi-aai.de/oidc/realms/nfdi",
scheme: "https",
client_id: "myClientID",
redirect_uri: "https://https://your-eln.edu/users/auth/openid_connect/callback",
client_secret: "secret",
token_endpoint: "/oauth2/token",
authorization_endpoint: "/oauth2/auth"
}
}

Parameters

ParameterValueDescription
enabletrue or false
hostregapp.nfdi-aai.deaddress of the service
labelNFDI AAIlabel of the login button
iconpath to a public image to display on the sign-in page
issuerhttps://regapp.nfdi-aai.de/oidc/realms/nfdiURL of the issuer
schemehttps
client_idclient IDPlease send an email to chemotion-nfdi-aai@lists.kit.edu
redirect_uriyour Chemotion ELN URL + '/users/auth/openid_connect/callback'
client_secretsecret
token_endpoint/oauth2/token
authorization_endpoint/oauth2/auth