Skip to main content

Authentication provider for graphene-django and Google Firebase's Authentication service.

Project description

# graphene-django-firebase-auth

Authentication provider for graphene-django and Firebase’s Authentication service.

Note this is a WIP and abandoned project since I never ended up using Firebase. But the code is still a good starting point as of writing this.

Partially inspired by [django-firebase-auth](https://github.com/fcornelius/django-firebase-auth) for Django REST framework.

This app is used with [Firebase Authentication](https://firebase.google.com/docs/auth/) on a client.

## Compatibility

This code has only been tested with Python 3.7.0 and Django 2.1.2.

## Installing

  1. Install the app:

`sh pipenv install graphene-django-firebase-auth `

  1. Download the JSON file from your [Firebase console](https://console.firebase.google.com/) with your account’s credentials.

  2. Set FIREBASE_KEY_FILE in your project’s settings to the path of the credentials file:

`python import os FIREBASE_KEY_FILE = os.path.join(BASE_DIR, 'path/to/firebase-credentials.json') `

  1. Add the authentication backend to AUTHENTICATION_BACKENDS:

`python AUTHENTICATION_BACKENDS = ['firebase_auth.authentication.FirebaseAuthentication'] `

  1. Add firebase_auth to INSTALLED_APPS:

`python INSTALLED_APPS = [ 'firebase_auth', ] `

  1. Add FirebaseAuthMixin to your AUTH_USER_MODEL:

`python class User(PermissionsMixin, FirebaseAuthMixin): `

  1. Build and run your DB migrations to add the changes:

`sh ./manage.py makemigrations ./manage.py migrate `

## Sending tokens on the client

Your client will need to send an Authorization: Bearer token on each request. How you do this depends on your client and is outside the scope of this documentation.

## Developing

### Setting up your environment

  1. Install the dependencies:

`sh pipenv install -d `

  1. Download the JSON file from your [Firebase console](https://console.firebase.google.com/) with your account’s credentials.

  2. Create an .env file using .env.example as a template. Make sure to specify the path to the file in the previous step.

  3. Enter the virtual environment:

`sh ./manage.py shell `

### Other commands

`sh # Run the tests ./manage.py test `

`sh # Lint the code ./lint.sh `

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_graphene_firebase_auth-0.0.30.tar.gz (4.6 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file django_graphene_firebase_auth-0.0.30.tar.gz.

File metadata

File hashes

Hashes for django_graphene_firebase_auth-0.0.30.tar.gz
Algorithm Hash digest
SHA256 8aab5efc179092f9e9d970ca55652ef3a4b1a4460f90f8c00414231c2a744053
MD5 49af8f2d8d2defb81ed62843f7f6a55e
BLAKE2b-256 184547090434fe9a1c26e6f7b9165d49c7a84c85cfcec8c722f3355d7ba35adf

See more details on using hashes here.

File details

Details for the file django_graphene_firebase_auth-0.0.30-py3-none-any.whl.

File metadata

File hashes

Hashes for django_graphene_firebase_auth-0.0.30-py3-none-any.whl
Algorithm Hash digest
SHA256 ffee2ed888064a257c3357de725469fc0b95164d33c5eea89c017947883b650a
MD5 10c72a92307023d9e99b69f7f92b4043
BLAKE2b-256 6af78d044ea2cf611a6cf6df35c23fab7dcabc94a5191d0f331a1c0104ad1c6e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page