Skip to main content

Handle login and ticket validation for french GAR

Project description

django-gar

Python 3.11 Django 4.x Python CI codecov Code style: black security: bandit

Django app to handle CAS authentication and resource management for the french Gestionnaire d'Accès aux Ressources (GAR).

Features

  • CAS authentication with GAR
  • Institution management with subscription tracking
  • Allocation monitoring for resources
  • Caching of GAR data (allocations, subscriptions, ENT IDs)
  • Admin interface for institution management
  • CSV export of allocation reports

Installation

Install with pip:

pip install django-gar

Setup

In order to make django-gar work, you'll need to follow these steps:

1. Settings

Add the required configuration to your settings:

INSTALLED_APPS = (
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.sessions',
    'django.contrib.messages',

    'django_gar',
    ...
)

MIDDLEWARE_CLASSES = (
    'django.middleware.common.CommonMiddleware',
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    
    'django_gar.middleware.GARMiddleware', # mandatory
    ...
)

AUTHENTICATION_BACKENDS = (
    'django.contrib.auth.backends.ModelBackend',
    
    'django_gar.backends.GARBackend',
    ...
)

2. Migrations

Run migrations to create the necessary database tables:

python manage.py migrate

3. Required Settings

Configure these mandatory settings:

# GAR Connection Settings
GAR_BASE_URL = "https://idp-auth.partenaire.test-gar.education.fr/"
GAR_BASE_SUBSCRIPTION_URL = "https://abonnement.partenaire.test-gar.education.fr/"
GAR_SUBSCRIPTION_PREFIX = "your_prefix"
GAR_DISTRIBUTOR_ID = "your_distributor_id"

# Authentication Certificates
GAR_CERTIFICATE_PATH = "/path/to/your/cert.pem"
GAR_KEY_PATH = "/path/to/your/key.pem"

# Resource Configuration
GAR_RESOURCES_ID = "your_resource_id"
GAR_ORGANIZATION_NAME = "Your Organization"

Optional settings with their defaults:

GAR_ACTIVE_USER_REDIRECT = "/"  # Redirect after successful login
GAR_INACTIVE_USER_REDIRECT = "/"  # Redirect for inactive users
GAR_QUERY_STRING_TRIGGER = "sso_id"  # URL parameter for SSO

Management Commands

refresh_gar_caches

Updates GAR data caches for institutions.

# Refresh all institutions
python manage.py refresh_gar_caches

# Refresh specific institution
python manage.py refresh_gar_caches --uai=0123456A

The command updates:

  • Resource allocation data
  • Subscription information

Use cases:

  • Initial setup of new institutions
  • Manual cache refresh
  • Troubleshooting GAR integration

refresh_gar_idents

Updates ENT IDs for all institutions from GAR.

python manage.py refresh_gar_idents

The command:

  • Fetches the latest institution list from GAR
  • Updates the ENT IDs (id_ent) for all matching institutions
  • Performs updates in bulk for better performance

Use cases:

  • Initial setup of new institutions
  • Bulk update of ENT IDs
  • Synchronizing with GAR institution list

Testing

Run tests with pytest:

# Install test dependencies
pip install -r test_requirements.txt

# Run tests
pytest

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

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_gar-4.2.1.tar.gz (34.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_gar-4.2.1-py3-none-any.whl (34.0 kB view details)

Uploaded Python 3

File details

Details for the file django_gar-4.2.1.tar.gz.

File metadata

  • Download URL: django_gar-4.2.1.tar.gz
  • Upload date:
  • Size: 34.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.10

File hashes

Hashes for django_gar-4.2.1.tar.gz
Algorithm Hash digest
SHA256 e6777ee20dea9a41be0e36e906fc2d0240c53c331f2f659e21b304d4443d89ae
MD5 6f883dc7a0433c4b7633fae4b96df99f
BLAKE2b-256 16981e2ce6475c4af9dc84db678c68ff38c07f6d920358235eb56d890d1e2b7a

See more details on using hashes here.

File details

Details for the file django_gar-4.2.1-py3-none-any.whl.

File metadata

  • Download URL: django_gar-4.2.1-py3-none-any.whl
  • Upload date:
  • Size: 34.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.10

File hashes

Hashes for django_gar-4.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 4d01faf0ccb77dbd2b5f11e7a008d806117aa48cb902bb4a47ab110e53d2cf96
MD5 d021a56dcf9b6f5e2293fc844e8b74b5
BLAKE2b-256 77edce909454fdd2f74387d6e80709b1c3c2a6c01be22021b9470373c9c59d94

See more details on using hashes here.

Supported by

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