Metadata-Version: 2.1
Name: keycloak-utils
Version: 0.2.0
Summary: Helper classes for keycloak authentication in Django and FastAPI
Author-email: Jerin Peter George <jerinpetergeorge@gmail.com>
Project-URL: Homepage, https://github.com/jerinpetergeorge/keycloak-auth-utils
Classifier: Environment :: Web Environment
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Utilities
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: requests (<2.31.0)
Requires-Dist: pyjwt[crypto] (<2.7.0)
Provides-Extra: all
Requires-Dist: keycloak-utils[django,fastapi] ; extra == 'all'
Provides-Extra: dev
Requires-Dist: keycloak-utils[lint-and-formatting,test] ; extra == 'dev'
Requires-Dist: bump2version (~=1.0.1) ; extra == 'dev'
Provides-Extra: django
Requires-Dist: djangorestframework (>=3.12.0) ; extra == 'django'
Provides-Extra: fastapi
Requires-Dist: fastapi (>=0.68.0) ; extra == 'fastapi'
Provides-Extra: fastapi-test
Requires-Dist: fastapi[test] (>=0.68.0) ; extra == 'fastapi-test'
Provides-Extra: lint-and-formatting
Requires-Dist: black ; extra == 'lint-and-formatting'
Requires-Dist: flake8 ; extra == 'lint-and-formatting'
Requires-Dist: flake8-print ; extra == 'lint-and-formatting'
Requires-Dist: isort ; extra == 'lint-and-formatting'
Requires-Dist: pre-commit ; extra == 'lint-and-formatting'
Provides-Extra: test
Requires-Dist: keycloak-utils[django,fastapi-test] ; extra == 'test'
Requires-Dist: pytest-django (~=4.5.2) ; extra == 'test'

# keycloak auth utils

## Installation

### 1. Django/DRF

```bash
pip install git+https://github.com/ottuco/keycloak-auth-utils#egg=keycloak-utils[django]
```

### 2. FastAPI

```bash
pip install git+https://github.com/ottuco/keycloak-auth-utils#egg=keycloak-utils[fastapi]
````

## Usage

### 1. Django/DRF

```python
# authentication.py
from django.contrib.auth import get_user_model
from keycloak_utils.authentication.rest_framework import BaseDRFKCAuthentication

User = get_user_model()


class KeycloakDRFAuthentication(BaseDRFKCAuthentication):
    kc_host = "http://localhost:8080"
    kc_realm = "your-realm-nae"
    kc_algorithms = ["RS256"]
    kc_audience = "account"

    def get_or_create_user(self, claims: dict):
        # override this method to get or create user
        # return User.objects.get_or_create(email=claims["email"])
        return user_instance


# views.py
from rest_framework.views import APIView

class TestView(APIView):
    authentication_classes = [KeycloakDRFAuthentication] # Add authentication class here

    def get(self, request):
        return Response({"message": "Hello, world!"})
```

### 2. FastAPI

```python
# middlewares.py
import typing

from fastapi import Request
from keycloak_utils.authentication.fastapi import BaseFastAPIKCAuthentication


class AuthenticationMiddleware(BaseFastAPIKCAuthentication):
    kc_host = "http://localhost:8080"
    kc_realm = "your-realm-nae"
    kc_algorithms = ["RS256"]
    kc_audience = "account"

    def post_process_claims(
            self,
            claims: typing.Optional[dict],
            request: Request,
    ) -> Request:
        # do something with `claims` here
        return request


# main.py
from fastapi import FastAPI

app = FastAPI()

app.add_middleware(AuthenticationMiddleware) # Add middleware here


@app.get("/")
def read_root():
    return {"Hello": "World"}

```
## Test

```bash
# Install the dependencies
pip install .[test]

# Run tests
python -m pytest
```

## Release
```base
# do a dry-run first -
bump2version --dry-run --verbose [major|minor|patch]

# if everything looks good, run the following command to release
bump2version --verbose [major|minor|patch]
```
