structureit/craft-cognito-auth

This package is abandoned and no longer maintained. No replacement package was suggested.

Enable authentication to Craft using Amazon Cognito with JWTs

This package's canonical repository appears to be gone and the package has been frozen as a result.

Installs: 1 271

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 17

Type:craft-plugin

This package has no released version yet, and little information is available.


README

Enable authentication to Craft with Amazon Cognito using JSON Web Tokens (JWT).

Logo

Requirements

This plugin requires Craft CMS 3.3 or later.

Installation

To install the plugin, follow these instructions.

  1. Open your terminal and go to your Craft project:

    cd /path/to/project

  2. Then tell Composer to load the plugin:

    composer require structureit/craft-cognito-auth

  3. In the Control Panel, go to Settings → Plugins and click the “Install” button for Craft Cognito Auth.

Craft Cognito Auth Overview

From the official JWT website:

JSON Web Tokens are an open, industry standard RFC 7519 method for representing claims securely between two parties.

This plugin enables logging into Craft using an Amazon Cognito User Pool. Uses Cognito JWT "Implicit Grant" (type=token) requests.

Configuring Craft Cognito Auth

Once installed, navigate to the settings page of the plugin and enter required settings to activate the plugin:

Setting Description
Auto create users Optional. Activate to enable auto-creation of a public user when provided a verifiable JWT.
Auto create users when Public Registration is disabled Optional. Activate to enable auto-creation of a user even when Public Registration is disabled.
Default user group Optional. Set to a group to add newly-created users to.
Enable CP login button Optional. Enable to add a button to the CP login screen to login using Cognito.
Customize login button text Optional. Used to override the default text on the Login with Cognito button.
Customize login button URL Optional. Used to override the generated URL to the Hosted UI used for the login button.
Redirect URL Optional. Used to redirect the user after they have logged in, default is the current site's base url.
AWS Settings
User Pool Region Required. The AWS Region where the User Pool is hosted.
App Domain Optional. Used to generate the login link for the Login with Cognito button.
App Client ID Required. Used to generate the login link, and to verify the JWT was created for the correct pool.
User Pool ID Required. Used to get the key Cognito used to sign the JWT.

The Cognito User Pool also needs to be configured to allow the callback URL to your site. This is generated by the plugin and is shown as the last "setting" in the plugin's setting page. The callback URL is "Control Panel URL (usually /admin)"/cognitologin.

To configure the User Pool:

  • Go to AWS Cognito (<region>.console.aws.amazon.com/cognito/users) and select your user pool
  • Go to App integration / App client settings
  • Add the callback URL to Callback URL(s) under Sign in and sign out URLs
  • While you're there, make sure Implicit grant is enabled under OAuth 2.0 | Allowed OAuth Flows
  • Click Save changes at the bottom.

Using Craft Cognito Auth

The plugin will attempt to verify incoming requests to the control panel URL (usually /admin) /cognitologin with a JWT present in the parameters.

The plugin will get the Json Web Token Set (JWKS) from Cognito, and use it to attempt to verify the token using the lcobucci/jwt package for PHP. The package adheres to the IANA specifications for JWTs.

If a provided token can be verified AND can be matched to a user account with an email address matching the provided email key or a username matching the provided cognito:username key, the user will be authenticated and the request allowed to continue.

If the token is verifiable but a matching user account does NOT exist, but:

  • the Auto create user setting is enabled AND public registration is enabled
  • OR the Auto create user setting is enabled, public registration is disabled, but the Auto create users when Public Registration is disabled setting is enabled

in the Craft settings, a new user account will be created on-the-fly and the new user then logged in.

Craft Cognito Auth Roadmap

Features

The plugin does or will offer the following features:

  • Validate incoming requests with a JWT present to a specific route (cognitologin under the CP url).
  • Inject Javascript to get the Cognito-provided JWT from the SearchParameters (#id_token=) into the QueryParameters (?jwt=).
  • Check the signature against Amazon's Certificate for the configured User Pool.
  • Match a validated JWT to a user account in Craft CMS and login as that user.
  • Optionally create a new account if no existing account can be found.
  • Optionally add Login with Cognito button to the CP Login screen.
  • Add logout-redirect route to the control panel to redirect back to the page the request came from.
  • Allow using environment variables for text-input settings.

Original JWT auth written by Mike Pierce and made possible by Edenspiekermann. Converted to use Cognito JWTs and verification flow by Matthew Carter. Maintained by StructureIT devs.