Future Social Authentication Improvements

Discourse now has the ability to connect and disconnect different authentication providers to your account. This is good, but there is still more we can do. These are things I intended to do with my last round of improvements, but have not managed to complete before needing to move on to another project.

As @fantasticfears pointed out here, features like this are difficult to implement with the current data structure. We should try and consolidate this information into one table, and share as much logic between providers as possible.

An improved system would be a user_associated_accounts table. Columns are based on the omniauth ‘auth hash schema’ https://github.com/omniauth/omniauth/wiki/Auth-Hash-Schema. Email and nickname have dedicated columns as well as the ‘info’ column, so that they can be easily accessed.

  • provider_name (not null) (omniauth ‘provider’ - required)
  • provider_uid (not null) (omniauth ‘uid’ - required’)
  • user_id (not null)
  • last_used (not null)
  • info (jsonb) (omniauth ‘info’)
  • credentials (jsonb) (omniauth ‘credentials’)
  • extra (jsonb) (omniauth ‘extra’)

The tricky bit here will be migrating data to the new structure, and updating plugins accordingly. It’s not a small amount of work, but I think it would be worth it.

20 Likes

I very much support this change. In this very specific case I also support an extra column in the table for “extra auth provider data” so we have some flexibility.

7 Likes

This framework for this is now in place. Core Facebook and Twitter authenticators have been migrated, and other authenticators will follow over the coming weeks. Documentation can be found here: Adding a new 'managed' authentication method to Discourse

There is no plan to prevent use of the old system, but it is highly recommended that plugins do migrated, so that complex account association logic can be shared.

I’ll use this topic to track the migrations of core/official-plugin authenticators:

Core:
Facebook
Twitter
Github
Google
Instagram
Yahoo

Official Plugins:
OpenID Connect
OAuth 2
Discord (moved to core)
Patreon
LinkedIn
[ ] Ubuntu (deprecated)
SAML
[ ] Azure-AD (deprecated)
Office365 Microsoft Auth
Atlassian Crowd
Steam
[ ] Dwolla (deprecated)

14 Likes