mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +03:00
166 lines
8.4 KiB
ReStructuredText
166 lines
8.4 KiB
ReStructuredText
.. meta::
|
|
:description: Integrate AuthGuardian JWT with Hasura
|
|
:keywords: hasura, docs, guide, authentication, auth, jwt, integration
|
|
|
|
.. _guides_auth_guardian_jwt:
|
|
|
|
OneGraph's AuthGuardian JWT Integration with Hasura GraphQL engine
|
|
==================================================================
|
|
|
|
.. contents:: Table of contents
|
|
:backlinks: none
|
|
:depth: 1
|
|
:local:
|
|
|
|
In this guide, we will walk through how to set up AuthGuardian JWT to work with the Hasura GraphQL engine.
|
|
|
|
About AuthGuardian
|
|
^^^^^^^^^^^^^^^^^^
|
|
|
|
`AuthGuardian <https://www.onegraph.com/docs/auth_guardian.html>`__
|
|
is a free service by `OneGraph <https://www.onegraph.com/>`__ that allows you to both add sign-on with dozens of services like GitHub, Twitch, Stripe, Salesforce, and more, and also to easily visually describe authentication and authorization rules for your app, API, or service.
|
|
|
|
It will generate JWTs compatible with any service that supports JWTs - like Hasura! And on top of that, AuthGuardian has built-in support for generating Hasura roles to make working with Hasura's permission system as easy as possible.
|
|
|
|
Step 1: Create an account
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
Sign into `OneGraph <https://www.onegraph.com/>`__ with either GitHub or an email/password.
|
|
|
|
On the left sidebar, chose "Auth Services" and then "AuthGuardian", and we're ready to start!
|
|
|
|
Step 2: Add an auth rule
|
|
^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
AuthGuardian works with two basic concepts: ``rules`` and ``effects``.
|
|
|
|
``Effects`` are useful for modifying the JWT during sign-in. AuthGuardian supports four ``effects``:
|
|
|
|
- Set the ``user_id`` for Hasura in the JWT
|
|
- Set the default Hasura user role in the JWT
|
|
- Set the allowed Hasura user roles in the JWT
|
|
- Set session variables for Hasura to use in the JWT
|
|
|
|
These can all be mixed and matched when creating Hasura-compatible JWTs to fully cover your app's permission settings.
|
|
|
|
The second concept, ``rules`` determines whether the ``effects`` are allowed to be added to the JWT. The rules might look like:
|
|
|
|
- "If this user is logged into Twitch.tv"
|
|
- "If this user has an email on Salesforce that belongs to my organization's domain"
|
|
- "If this user is a member of my GitHub organization"
|
|
|
|
|
|
Let's see how to use these ``rules`` and ``effects`` in action!
|
|
|
|
Option 1: Set Hasura ``user_id``
|
|
--------------------------------
|
|
Let's say you're using GitHub as the primary login for your Hasura app, and that you want to use their GitHub ``user_id`` as a primary key:
|
|
|
|
- For the section "When the user on", select ``GitHub`` -> ``login status`` -> ``is true`` ("When this user is logged into GitHub")
|
|
- For the section "Then", choose ``On hasura set user id``.
|
|
- Add set the user id in the "built-in value" field to ``GITHUB_USER_ID``
|
|
- Click the ``save`` button on the right hand side.
|
|
|
|
.. thumbnail:: /img/graphql/manual/guides/auth-guardian-user-id.png
|
|
:alt: Set an AuthGuardian JWT with a user id
|
|
|
|
Option 2: Set the default Hasura role
|
|
-------------------------------------
|
|
Next, you want to assign a *default* role for all users, even those who haven't logged in with GitHub yet.
|
|
|
|
Add a new rule (the ``+`` button in the top-left), and fill it out:
|
|
|
|
- For the section "When the user is on", select ``Always`` (this will *always* pass, even if the user isn't logged into any service).
|
|
- For the section "Then", choose ``On hasura set default role``.
|
|
- Add the default role, e.g. ``user``.
|
|
- Click the ``save`` button on the right hand side.
|
|
|
|
.. thumbnail:: /img/graphql/manual/guides/auth-guardian-default-role.png
|
|
:alt: Set an AuthGuardian JWT with default role
|
|
|
|
.. note::
|
|
|
|
Note that AuthGuardian knows that Hasura requires that the ``default role`` *also* appear in the list of ``x-hasura-allowed-roles``, and added it in both places automatically.
|
|
|
|
Option 3: Allow additional Hasura roles
|
|
---------------------------------------
|
|
Now, you want to restrict access to some data in Hasura so that only you and your teammates can read it. We'll use Hasura's permissions to restrict data to those who have an ``admin`` role, and use AuthGuardian's rules to set that role in the JWT to people who belong to your GitHub organization:
|
|
|
|
- For the section "When the user is on", select ``GitHub`` -> ``is member of organization named`` -> ``<your org name, e.g. AcmeCo>`` ("When this user is a member of AcmeCo on GitHub")
|
|
- For the section "Then", choose ``On hasura add roles``.
|
|
- Click on "Add" and add an additional role, e.g. ``admin``.
|
|
- Click the ``save`` button on the right hand side.
|
|
|
|
.. thumbnail:: /img/graphql/manual/guides/auth-guardian-additional-role.png
|
|
:alt: Set an AuthGuardian JWT with additional roles
|
|
|
|
Option 4: Set a session variable
|
|
--------------------------------
|
|
Hasura can use **session variables** for all sorts of `powerful cases <https://docs.hasura.io/1.0/graphql/manual/auth/authorization/roles-variables.html#dynamic-session-variables>`_. AuthGuardian also supports setting these in your JWT!
|
|
|
|
Let's say we want to restrict access to some super-interesting data in our Hasura backend to users who have starred a particular GitHub repository:
|
|
|
|
- For the section "When the user is on", select ``GitHub`` -> ``has starred a repository with a full name of`` -> ``hasura/graphql-engine`` ("When this user has starred the 'hasura/graphql-engine' on GitHub")
|
|
- For the section "Then", choose ``On hasura set session variable``.
|
|
- Add your session variable name ``is-our-biggest-fan`` and value to JSON ``true``.
|
|
- Click the ``save`` button on the right hand side.
|
|
|
|
.. thumbnail:: /img/graphql/manual/guides/auth-guardian-session-variable.png
|
|
:alt: Set an AuthGuardian JWT with session variables for Hasura to use
|
|
|
|
.. note::
|
|
|
|
AuthGuardian knows where to place Hasura session variables in the JWT, and also knows to prefix the variables with ``x-hasura-`` automatically.
|
|
|
|
You're all done! Now whenever a user hits your Hasura API they'll always have a default role of ``user``, and:
|
|
|
|
- Their Hasura user-id will match their (permanent) GitHub user id if they're logged into GitHub.
|
|
- They'll be allowed to use the ``admin`` permissions if they're a member of your GitHub organization.
|
|
- They'll have a session variable of ``x-hasura-is-our-biggest-fan: true`` if they've starred ``hasura/graphql-engine`` on GitHub.
|
|
|
|
Nice!
|
|
|
|
|
|
Step 3: Generate Hasura's JWT config to securely verify your new tokens
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
Next we'll configure Hasura to verify our new JWTs - don't worry, AuthGuardian also has built-in support for that!
|
|
|
|
- On the left sidebar, click on "JWT Settings" and scroll down to "Configuration generator".
|
|
- Choose either "Hasura" or "Hasura on Heroku".
|
|
|
|
The generated config has the following structure:
|
|
|
|
.. code-block:: json
|
|
|
|
{
|
|
"type": "RS256",
|
|
"jwk_url": "https://serve.onegraph.com/app/35bcf98c-1df0-4644-a453-bf06a1349449/.well-known/jwks.json",
|
|
"claims_format": "json"
|
|
}
|
|
|
|
- Add the generated config as a value for the environment variable ``HASURA_GRAPHQL_JWT_SECRET`` or for the ``--jwt-secret`` server flag.
|
|
|
|
.. thumbnail:: /img/graphql/manual/guides/auth-guardian-config-generator.png
|
|
:alt: AuthGuardian lets you copy/paste the required JWT configuration for either Hasura or Hasura-on-Heroku
|
|
|
|
Step 4: Test the config and tokens
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
When configuring your permissions in Hasura, it's useful to be able to quickly generate test tokens to make sure everything works as you expect.
|
|
|
|
- Copy the JWT that you created in step 2.
|
|
- On the left sidebar, click on "JWT settings" and scroll down to "Generate signed token".
|
|
- Paste the copied JWT (or optionally write your own JSON if you want to test alternative scenarios).
|
|
- Copy the signed token and add it as a header in the Hasura console.
|
|
|
|
.. thumbnail:: /img/graphql/manual/guides/auth-guardian-generate-test-jwt.png
|
|
:alt: Use the JWT-signer form to quickly sign any JSON and test in the Hasura console
|
|
|
|
- In GraphiQL, try out queries to test that the integration works as expected by adding an ``Authorization`` header, with a value of ``Bearer <the-copied-JWT-text>``. Hasura's GraphiQL will recognize this header, show you its content, and confirm whether it recognizes the JWT as securely signed.
|
|
|
|
.. thumbnail:: /img/graphql/manual/guides/auth-guardian-test-jwt.png
|
|
:alt: Test AuthGuardian JWT
|
|
|
|
Next Steps
|
|
^^^^^^^^^^
|
|
AuthGuardian supports much more, including the ability to eject your rules as a pair of GraphQL query and JavaScript function so you can customize the auth as necessary. To read more about it, please visit the `AuthGuardian docs <https://www.onegraph.com/docs/>`__.
|