Apereo CAS has had support to delegate authentication to external OpenID Connect identity providers for quite some time. This functionality, if memory serves me correctly, started around CAS 3.x as an extension based on the pac4j project which then later found its way into the CAS codebase as a first-class feature. Since then, the functionality more or less has evolved to allow the adopter less configuration overhead and fancier ways to automated workflows.
Of course, delegation is just a fancy word that ultimately means, whether automatically or at the click of a button, the browser is expected to redirect the user to the appropriate identity provider endpoint, and on the return trip back, CAS is tasked to shake hands, parse the response and extract attributes, etc to establish an authentication session, issue tickets, etc. In other words, in delegated scenarios, the main identity provider is an external system and CAS simply begins to act as a client or proxy in between.
In this blog post, we will start from a modest OpenID Connect client application that is integrated with CAS and will be using Azure Active Directory B2C as our external OpenID Connect identity provider to accommodate the following authentication flow:
Our starting position is as follows:
6.4.x
11
Once you have the correct modules in the WAR overlay for OpenID Connect and Delegated Authentication, you will need to make sure CAS can hand off authentication to the Azure Active Directory B2C identity provider:
cas.authn.pac4j.oidc[4].generic.id=...
cas.authn.pac4j.oidc[4].generic.secret=...
cas.authn.pac4j.oidc[4].generic.client-name=AzureB2CClient
cas.authn.pac4j.oidc[4].generic.discovery-uri=https://login.microsoftonline.com/\
<identifier>/v2.0/.well-known/openid-configuration
cas.authn.pac4j.oidc[4].generic.scope=openid,profile,email
cas.authn.pac4j.oidc[4].generic.principal-attribute-id=email
The discovery URI can be found on the Azure Active Directory B2C dashboard for your tenant:
Remember that you need to register the CAS Redirect URI with Azure Active Directory B2C. By default, the redirect (reply) URI is the CAS login endpoint which contains the name of the external identity provider as a path variable:
If you have questions about the contents and the topic of this blog post, or if you need additional guidance and support, feel free to send us a note and ask about consulting and support services.
I hope this review was of some help to you and I am sure that both this post as well as the functionality it attempts to explain can be improved in any number of ways. Please feel free to engage and contribute as best as you can.
Happy Coding,
Monday-Friday
9am-6pm, Central European Time
7am-1pm, U.S. Eastern Time
Monday-Friday
9am-6pm, Central European Time