Difference between revisions of "OpenID Connect"

From TMM Wiki
Jump to navigationJump to search
m (minor changes)
m (Reverted edits by Tmm vincent (talk) to last revision by Boris)
Line 3: Line 3:
 
}}
 
}}
  
Apache module [https://github.com/zmartzone/mod_auth_openidc mod_auth_openidc] allows you to authenticate [[Ct#Member|members]] using NATS as the [[Openid_connect|OpenID Connect server]]
+
As of version 4.1.21.1 NATS can be used as an OpenID Connect server.  This is another option for member authentication.  In order to utilize this feature, you will need to use an OpenID Connect client.  When developing this feature, we used the [https://github.com/zmartzone/mod_auth_openidc mod_auth_openidc] apache module. Here is an [[Mod_auth_openidc|example]] implementation.  Unlike the standard OpenID Connect server implemantaion, consent for the surfer to provide protected details (like username and email) to the client (members area) is implied.
  
== Installing mod_auth_openidc ==
+
== Setup ==
Please ask your host to install the mod_auth_openidc apache module on your member area server(s) if not already installed.  Here is a [https://github.com/zmartzone/mod_auth_openidc/releases link] to their releases.  It would be best if they can use one of the install packages.  If not, they can compile it from source.  NATS OpenID Connect server supports mod_auth_openidc version >= 2.2.0.
+
* Go to the NATS config admin -> surfers and scroll down to the 'Member OpenID Connect Server' section
 +
* Enable the ENABLE_MEMBER_OPENID config option
 +
* Provide a list of all ips defined on your member area server(s) by entering it into the MEMBER_OPENID_SECURE_IPS field
 +
* Enter the password that your member area(s) is(are) going to use for the token endpoint authentication into the MEMBER_OPENID_CLIENT_SECRET field
 +
* Decide what [[OpenID_Connect#Authorization_Domain|domain]] (and protocol) you will use for the authorization (login) page as well as the token and the userinfo endpoints
 +
* Determine what [[OpenID_Connect#Claims|claims]] you want returned
 +
* Setup an OpenID Connect client in your members area(s)
  
== Member Area Configuration ==
+
== Additional Configuration Options ==
* You will need to create a vanity script inside your members areaThis should be a completely blank script that servers no content.  It is only needed for the inner workings of the mod_auth_openidc apache module.  The only requirement is that this script must be protected by the mod_auth_openidc apache module using either the <Directory> or the <Files> directives.
+
* MEMBER_OPENID_EXPIRED_LOGIN - enabling this option will allow expired members to loginYou will be able to differentiate active members from expired members by using the [[http://tmmwiki.com/index.php/OpenID_Connect#Claims|status claim]]It will have value 1 for active members and 2 for expired members.
* You can optionally create an error template and an unauthorized page so that you have better control of what your members see in case of errorsThis will allow you to control the look and feel of those pages as well as provide members with help (like links back to the login page).
 
* You might need to update the link to your members area.  It will need to be a link to any script protected by the <Directory> or the <Files> directives other than the vanity script.
 
  
== Apache Configuration ==
+
* MEMBER_OPENID_DESCRIPTIVE_LOGIN_ERROR - enabling this option will display a descriptive error message on the login page when the authentication failsSome of the example error messages include 'Incorrect username!' and 'Incorrect password!'If this option is disabled, regardless of the reason for failed authentication, members will receive the 'Login Failed!' error message.  This option helps with debugging.  But for security reasons, we recommend disabling this option in production environments.
Documentation for all available apache settings is [https://github.com/zmartzone/mod_auth_openidc/blob/master/auth_openidc.conf here]You can protect directories or individual files using the <Directory> or the <Files> directivesHere is an example:
 
<pre>
 
<Directory /path/to/the/members/section>
 
  AuthType openid-connect
 
  Require valid-user
 
</Directory>
 
</pre>
 
  
If you choose to sign the reply from the userinfo endpoint (recommended), you will need to add this to your apache virtual host configuration:
+
* MEMBER_OPENID_SETUP_ERROR_SHOW_TEMPLATE - enabling this option will display a NATS site template when a configuration error occurs instead of redirecting back to the members area.  One example of the configuration error is not enabling the ENABLE_MEMBER_OPENID option.
<pre>
 
OIDCUserInfoSignedResponseAlg RS256
 
</pre>
 
  
If you do not have an ssl cert for the login page and/or your members area (not recommended), you will need to add this to your apache virtual host configuration:
+
* MEMBER_OPENID_AUTH_CODE_DURATION - this option determines the length of time (in seconds) that the auth code (from the authorization endpoint aka the login page) is good for.
<pre>
 
OIDCSSLValidateServer Off
 
</pre>
 
  
If you choose to set up an error template, you will need to add this to your apache virtual host configuration:
+
* MEMBER_OPENID_ACCESS_TOKEN_DURATION - this option determines the length of time (in seconds) that the access token (from the token endpoint) is good for.
<pre>
 
OIDCHTMLErrorTemplate <path/to/your/apache/error/template>
 
</pre>
 
  
If you choose to set up an unauthorized page, you will need to add this to your apache virtual host configuration:
+
* MEMBER_OPENID_SIGN_USERINFO_REPLY - enabling this option will cause NATS OpenID Connect server to sign the userinfo endpoint reply (in the same way that id_token is signed in the token endpoint reply) and return a JSON Web Token instead of a JSON encoded array.
<pre>
+
 
ErrorDocument 401 <full or relative url to your unauthorized page>
+
* MEMBER_OPENID_REDIECT_ERROR_DETAIL - enabling this option will provide a detailed error description when a configuration error occurs at the authorization endpoint.  This option helps with debugging.  But for security reasons, we recommend disabling this option in production environments.
</pre>
+
 
 +
* MEMBER_OPENID_POST_ERROR_DETAIL - enabling this option will provide a detailed error description on token and userinfo endpoint errors.  This option helps with debugging.  But for security reasons, we recommend disabling this option in production environments.
 +
 
 +
* THROTTLE_LOGIN, THROTTLE_LOGIN_MAX_COUNT, THROTTLE_LOGIN_TIME_LIMIT - these work like the other [[Throttling|throttling]] settings and apply to the authorization endpoint
 +
 
 +
== Authorization Domain ==
 +
You have a couple options when deciding what domain (and protocol) will be used for the authorization (login) page as well as the token and the userinfo endpoints.
 +
# You can use the main NATS url.  In this case, the value of the PROJECT_HOSTNAME config setting will be used for the domain and the protocol will be determined by the PROJECT_HOSTNAME_DISPLAY_HTTPS config setting.
 +
# You can provide a single domain (and protocol) to use via the MEMBER_OPENID_DOMAIN config setting.  This is very similar to the option above, except that it will be different than the main NATS domain.
 +
# You can use each site's link domain.  To do this, you will need to enabled the MEMBER_OPENID_DYNAMIC_DOMAIN config option.
 +
# You can make a custom authorization domain for each site.  This is very similar to the option above, except that it will be different than the domain of the join page (login.yoursite.com instead of join.yoursite.com).  You will need to setup each of these domains in a similar way that you setup your [[Link_Domain|link domains]].
  
 
== Claims ==
 
== Claims ==
The mod_auth_openidc apache module will add all claims received from the token and the userinfo endpoints to the $_SERVER superglobalFor example, if you enable the MEMBER_OPENID_BASE_INFO configuration option in your NATS install, you will get the trial flag value as part of the userinfo responseYou can then use it in your code by using the $_SERVER['OIDC_CLAIM_trial'] variablePlease reference the [[OpenID_Connect|OpenID Connect setup article]] for more info on available claims.
+
The id_token that is generated by the token endpoint contains only the sub claimThe value is the NATS member id for the successfully authenticated memberThe userinfo endpoint contains a variety of other claimsNATS OpenID Connect server will return all claims that you enabled. Here is the breakdown of claims that the NATS OpenID Connect server can return.
 
 
Please note that the member's username will be available in the following variables:
 
<pre>
 
$_SERVER['OIDC_CLAIM_username']
 
$_SERVER['REMOTE_USER']
 
$_SERVER['PHP_AUTH_USER']
 
</pre>
 
  
When protecting your members area, you can use the value of one of the claims.  Here is an example:
+
* Default
<pre>
+
** sub (NATS memberid)
<Directory /path/to/the/full/members/section>
+
** username
  AuthType openid-connect
 
  Require claim trial:0
 
</Directory>
 
</pre>
 
  
== Example Virtual Host Settings ==
+
* if you enabled the MEMBER_OPENID_BASE_INFO configuration option, you will also get:
Here is an example extract from an apache virtual host for a members area:
+
** email
 +
** firstname
 +
** lastname
 +
** trial (1 if in trial, 0 otherwise)
 +
** status (1 if active, 2 if expired)
 +
** siteid
  
<pre>
+
* if you enable the MEMBER_OPENID_JOIN_EXPIRE_INFO configuration option, you will also get a JSON encoded array named join_expire with the following fields (all UNIX timestamps):
<Directory /path/to/the/members/section>
+
** joined
  AuthType openid-connect
+
** expired
  Require valid-user
+
** expires
</Directory>
+
** nats_expires
 +
** biller_expires
  
OIDCProviderMetadataURL <your OpenID Connect domain and protocol>/.well-known/member-openid-configuration
+
* if you enable the MEMBER_OPENID_IDENTIFIER_INFO configuration option, you will also get a JSON encoded array named identifier with the following fields:
OIDCClientID <NATS Site ID or a comma separated list of NATS Site IDs>
+
** identid (internal NATS identifier id)
OIDCClientSecret <value of the NATS MEMBER_OPENID_CLIENT_SECRET configuration option>
+
** loginid (id of the affiliate)
OIDCScope openid
+
** campaignid
OIDCRedirectURI <url of your vanity script>
+
** programid
OIDCCryptoPassphrase <encryption password that is used for cookie and cache data>
+
** optoinid
OIDCSessionInactivityTimeout <period of inactivity (in seconds) before the member is logged out>
+
** siteid
OIDCSessionMaxDuration <value of the MEMBER_OPENID_ACCESS_TOKEN_DURATION configuration option>
+
** tourid
OIDCRemoteUserClaim username
+
** countryid
OIDCUserInfoRefreshInterval 0
+
** adtoolid
OIDCTokenBindingPolicy disabled
+
** billerid
</pre>
+
** subid1
 +
** subid2
 +
** promotionalid
  
== Sample Scripts ==
+
* if you enable the MEMBER_OPENID_ADDRESS_INFO configuration option, you will also get a JSON encoded array named address with the following fields:
vanity page (not a typo, it should be blank)
+
** address1
<pre>
+
** address2
</pre>
+
** city
 +
** state
 +
** zip
 +
** country
  
unauthorized page
+
* if you enable the MEMBER_OPENID_CUSTOM_INFO configuration option, you will also get a JSON encoded array named customs with the custom1..10 fields
<pre>
 
You are not allowed to view this page, please try logging in<br><br>
 
<a href="<url of your members area>">Log In</a>
 
</pre>
 
  
error template
+
* if you enable the MEMBER_OPENID_PASSTHROUGH_INFO configuration option, you will also get a JSON encoded array named passthroughs with the passthroughs1..5 fields (affiliate passthroughs)
<pre>
 
there was an error<br>
 
message: %s<br>
 
description: %s<br><br>
 
<a href="<url of your members area>">Try Again</a>
 
</pre>
 
  
 
== Additional Resources ==
 
== Additional Resources ==
* [https://github.com/zmartzone/mod_auth_openidc/releases mod_auth_openidc releases]
+
[[Mod_auth_openidc|TMM wiki on mod_auth_openidc]]
* [https://github.com/zmartzone/mod_auth_openidc/wiki mod_auth_openidc wiki]
+
[http://openid.net/specs/openid-connect-core-1_0.html OpenID Connect Specs]
* [https://github.com/zmartzone/mod_auth_openidc mod_auth_openidc source code]
 

Revision as of 18:37, 6 August 2018

NATS 4
Members Admin
The Members Admin
View Member Details
Add Member
MySQL Auth
Mod Authn DB
Multisite Access
Member Logging
Member Password Retrieval
OpenID Connect
Mod Auth OpenIDC
ID Numbers

As of version 4.1.21.1 NATS can be used as an OpenID Connect server. This is another option for member authentication. In order to utilize this feature, you will need to use an OpenID Connect client. When developing this feature, we used the mod_auth_openidc apache module. Here is an example implementation. Unlike the standard OpenID Connect server implemantaion, consent for the surfer to provide protected details (like username and email) to the client (members area) is implied.

Setup

  • Go to the NATS config admin -> surfers and scroll down to the 'Member OpenID Connect Server' section
  • Enable the ENABLE_MEMBER_OPENID config option
  • Provide a list of all ips defined on your member area server(s) by entering it into the MEMBER_OPENID_SECURE_IPS field
  • Enter the password that your member area(s) is(are) going to use for the token endpoint authentication into the MEMBER_OPENID_CLIENT_SECRET field
  • Decide what domain (and protocol) you will use for the authorization (login) page as well as the token and the userinfo endpoints
  • Determine what claims you want returned
  • Setup an OpenID Connect client in your members area(s)

Additional Configuration Options

  • MEMBER_OPENID_EXPIRED_LOGIN - enabling this option will allow expired members to login. You will be able to differentiate active members from expired members by using the [claim]. It will have value 1 for active members and 2 for expired members.
  • MEMBER_OPENID_DESCRIPTIVE_LOGIN_ERROR - enabling this option will display a descriptive error message on the login page when the authentication fails. Some of the example error messages include 'Incorrect username!' and 'Incorrect password!'. If this option is disabled, regardless of the reason for failed authentication, members will receive the 'Login Failed!' error message. This option helps with debugging. But for security reasons, we recommend disabling this option in production environments.
  • MEMBER_OPENID_SETUP_ERROR_SHOW_TEMPLATE - enabling this option will display a NATS site template when a configuration error occurs instead of redirecting back to the members area. One example of the configuration error is not enabling the ENABLE_MEMBER_OPENID option.
  • MEMBER_OPENID_AUTH_CODE_DURATION - this option determines the length of time (in seconds) that the auth code (from the authorization endpoint aka the login page) is good for.
  • MEMBER_OPENID_ACCESS_TOKEN_DURATION - this option determines the length of time (in seconds) that the access token (from the token endpoint) is good for.
  • MEMBER_OPENID_SIGN_USERINFO_REPLY - enabling this option will cause NATS OpenID Connect server to sign the userinfo endpoint reply (in the same way that id_token is signed in the token endpoint reply) and return a JSON Web Token instead of a JSON encoded array.
  • MEMBER_OPENID_REDIECT_ERROR_DETAIL - enabling this option will provide a detailed error description when a configuration error occurs at the authorization endpoint. This option helps with debugging. But for security reasons, we recommend disabling this option in production environments.
  • MEMBER_OPENID_POST_ERROR_DETAIL - enabling this option will provide a detailed error description on token and userinfo endpoint errors. This option helps with debugging. But for security reasons, we recommend disabling this option in production environments.
  • THROTTLE_LOGIN, THROTTLE_LOGIN_MAX_COUNT, THROTTLE_LOGIN_TIME_LIMIT - these work like the other throttling settings and apply to the authorization endpoint

Authorization Domain

You have a couple options when deciding what domain (and protocol) will be used for the authorization (login) page as well as the token and the userinfo endpoints.

  1. You can use the main NATS url. In this case, the value of the PROJECT_HOSTNAME config setting will be used for the domain and the protocol will be determined by the PROJECT_HOSTNAME_DISPLAY_HTTPS config setting.
  2. You can provide a single domain (and protocol) to use via the MEMBER_OPENID_DOMAIN config setting. This is very similar to the option above, except that it will be different than the main NATS domain.
  3. You can use each site's link domain. To do this, you will need to enabled the MEMBER_OPENID_DYNAMIC_DOMAIN config option.
  4. You can make a custom authorization domain for each site. This is very similar to the option above, except that it will be different than the domain of the join page (login.yoursite.com instead of join.yoursite.com). You will need to setup each of these domains in a similar way that you setup your link domains.

Claims

The id_token that is generated by the token endpoint contains only the sub claim. The value is the NATS member id for the successfully authenticated member. The userinfo endpoint contains a variety of other claims. NATS OpenID Connect server will return all claims that you enabled. Here is the breakdown of claims that the NATS OpenID Connect server can return.

  • Default
    • sub (NATS memberid)
    • username
  • if you enabled the MEMBER_OPENID_BASE_INFO configuration option, you will also get:
    • email
    • firstname
    • lastname
    • trial (1 if in trial, 0 otherwise)
    • status (1 if active, 2 if expired)
    • siteid
  • if you enable the MEMBER_OPENID_JOIN_EXPIRE_INFO configuration option, you will also get a JSON encoded array named join_expire with the following fields (all UNIX timestamps):
    • joined
    • expired
    • expires
    • nats_expires
    • biller_expires
  • if you enable the MEMBER_OPENID_IDENTIFIER_INFO configuration option, you will also get a JSON encoded array named identifier with the following fields:
    • identid (internal NATS identifier id)
    • loginid (id of the affiliate)
    • campaignid
    • programid
    • optoinid
    • siteid
    • tourid
    • countryid
    • adtoolid
    • billerid
    • subid1
    • subid2
    • promotionalid
  • if you enable the MEMBER_OPENID_ADDRESS_INFO configuration option, you will also get a JSON encoded array named address with the following fields:
    • address1
    • address2
    • city
    • state
    • zip
    • country
  • if you enable the MEMBER_OPENID_CUSTOM_INFO configuration option, you will also get a JSON encoded array named customs with the custom1..10 fields
  • if you enable the MEMBER_OPENID_PASSTHROUGH_INFO configuration option, you will also get a JSON encoded array named passthroughs with the passthroughs1..5 fields (affiliate passthroughs)

Additional Resources

TMM wiki on mod_auth_openidc OpenID Connect Specs