1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-01 12:24:28 +01:00
fab-manager/doc/sso_with_github.md
2016-09-12 17:29:44 +02:00

3.9 KiB

How to configure Fab-manager to use a Single Sign-On authentication?

For this guide, we will use GitHub as an authentication provider, because it has a standard implementation of the protocol and it is free to use.

  • First, you must have a GitHub account. This is free, so create one if you don't have any. Visit https://github.com/join?source=login to create an account.

  • Secondly, you will need to register your fab-manager instance as an application in GitHub. Visit https://github.com/settings/applications/new to register your instance.

  • You'll be redirected to a page displaying to important informations: your Client ID and your Client Secret.

  • Now go to your fab-manager's instance, login as an administrator, go to Users management and Authentication. Click Add a new authentication provider, and select OAuth 2.0 in the Authentication type drop-down list. As a name, you can set whatever you want but, you must be aware that:

    1. You will need to type this name in a terminal to activate the provider, so prefer avoiding chars that must be escaped.
    2. This name will be occasionally displayed to end users, so prefer sweet names.
  • Fulfill the form with the following parameters:

    • Common URL: https://github.com/login/oauth This is the common part in the URL of the two following parameters.
    • Authorization endpoint: /authorize This URL can be found here.
    • Token Acquisition Endpoint: /access_token This URL can be found here.
    • Profile edition URL: https://github.com/settings/profile This is the URL where you are directed when you click on Edit profile in your GitHub dashboard.
    • Client identifier: Your Client ID, collected just before.
    • Client secret: Your Client Secret, collected just before.
  • Then you will need to define the matching of the fields between the data used in fab-manager and the data that the external SSO can provide. Note that the only mandatory field is User.uid. To continue with our GitHub example, you will need to look at this documentation page to know witch field can be mapped and how and this one to know the root URL of the API.

    • Model: User
    • Field: uid
    • API endpoint URL: https://api.github.com/user Here you can set a complete URL OR only an endpoint referring to the previously set Common URL.
    • API type: JSON Only JSON API are currently supported
    • API fields: id According to the GitHub API documentation, this is the name of the JSON field which uniquely identify the user. You are free to map more fields, like Profile.github to html_url, or Profile.avatar to avatar_url...
  • Once you are done, your newly created authentication provider, will be marked as Pending in the authentication providers list. To set it as the current active provider, you must open a terminal on the hosting server (and/or container) and run the following commands:

# replace GitHub with the name of the provider you just created
rake fablab:switch_auth_provider[GitHub]
  • As the command just prompted you, you have to re-compile the assets (with eg, rake tmp:clear - this vary with the method you used to deploy your instance)
  • Then restart the web-server or the container.
  • Finally, to notify all existing users about the changement and send them their migration code/link, run:
rake fablab:notify_auth_changed