0.0.5 • Published 5 years ago

hasura-auth v0.0.5

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

Hasura Auth WIP

Inspired by the hasura-backend-plus

Setup

Create tables and initial state for your user management.

CREATE TABLE roles (
  name text NOT NULL PRIMARY KEY
);

INSERT INTO roles (name) VALUES ('admin');
INSERT INTO roles (name) VALUES ('user');

CREATE TABLE users (
  id uuid PRIMARY KEY DEFAULT gen_random_uuid(),
  email text NOT NULL UNIQUE,
  password text NOT NULL,
  is_active boolean NOT NULL DEFAULT false,
  secret_token uuid NOT NULL,
  default_role text NOT NULL DEFAULT 'user',
  created_at timestamp with time zone NOT NULL DEFAULT now(),
  FOREIGN KEY (default_role) REFERENCES roles (name)
);

CREATE TABLE user_roles (
  id uuid PRIMARY KEY DEFAULT gen_random_uuid(),
  user_id uuid NOT NULL,
  role text NOT NULL,
  created_at timestamp with time zone NOT NULL DEFAULT now(),
  FOREIGN KEY (user_id) REFERENCES users (id),
  FOREIGN KEY (role) REFERENCES roles (name),
  UNIQUE (user_id, role)
);

CREATE TABLE refresh_tokens (
  id uuid PRIMARY KEY DEFAULT gen_random_uuid(),
  refresh_token uuid NOT NULL UNIQUE,
  user_id uuid NOT NULL,
  expires_at timestamp with time zone NOT NULL,
  created_at timestamp with time zone NOT NULL DEFAULT now(),
  FOREIGN KEY (user_id) REFERENCES users (id)
);

Track your tables and relations in Hasura

Go to the Hasura console. Click the "Data" menu link and then click "Track all" under both "Untracked tables or views" and "Untracked foreign-key relations"

Enable auth hook

Set your hasura environment to use this configuration:

HASURA_GRAPHQL_AUTH_HOOK=https://<your-domain-with-hasura-auth>/hook

Read more...

Use Remote Schema

Go to the Hasura console. Clink the "Remote Schemas" menu link and then click "Add".

Set a name to "Remote Schema name" like you prefer eg. (hasura-auth) and set the "GraphQL server URL" to use tbe url https://<your-domain-with-hasura-auth>/graphql/ In "Headers for the remote GraphQL server" select the option "Forward all headers from client". After that clink an "Add Remote Schema" button

Environment

namedefaultdescription
PORT4000Express server port
HASURA_GRAPHQL_ENDPOINThttp://graphql-engine:8080/v1alpha1/graphqlEndpoit to hasura server
HASURA_GRAPHQL_ADMIN_SECRETNULLAdmin secrete key of hasura console
HASURA_GRAPHQL_CLAIMS_KEYhttps://hasura.io/jwt/claimsKey hequired by hasura in JWT
HASURA_GRAPHQL_HEADER_PREFIXx-hasura-Hasura header prefix
USER_REGISTRATION_AUTO_ACTIVEtrueAuto active the user account
REFRESH_TOKEN_EXPIRES_IN43200Life time in minutes of refresh token
JWT_ALGORITHMHS256JWT Algorithm
JWT_PRIVATE_KEYsecretkeyJWT Secret key used to generate token
JWT_TOKEN_EXPIRES15Life time in minutes of JWT

Todo

  • Google Login
  • Facebook Login
  • Twitter Login

License

MIT