Authentication UI for DRF Spectacular with AWS Cognito support
Project description
DRF Spectacular Auth
🔐 Authentication UI for DRF Spectacular with AWS Cognito support
A Django package that adds a beautiful authentication panel to your DRF Spectacular (Swagger UI) documentation, with built-in support for AWS Cognito and extensible authentication providers.
✨ Features
- 🎨 Beautiful UI: Clean, modern authentication panel that integrates seamlessly with Swagger UI
- 🔐 AWS Cognito Support: Built-in integration with AWS Cognito User Pools
- 📋 Token Management: Easy token copying with clipboard integration and manual fallback
- 🎯 Auto Authorization: Automatically populates Swagger UI authorization headers
- 🎨 Customizable: Flexible theming and positioning options
- 🌍 i18n Ready: Multi-language support (Korean, English, Japanese)
- 🔧 Extensible: Plugin system for additional authentication providers
- 📦 Easy Integration: Minimal setup with sensible defaults
🚀 Quick Start
Installation
pip install drf-spectacular-auth
Basic Setup
- Add to your Django settings:
INSTALLED_APPS = [
'drf_spectacular',
'drf_spectacular_auth', # Add this
# ... your other apps
]
DRF_SPECTACULAR_AUTH = {
'COGNITO_REGION': 'your-aws-region',
'COGNITO_CLIENT_ID': 'your-cognito-client-id',
}
- Update your URLs:
from drf_spectacular_auth.views import SpectacularAuthSwaggerView
urlpatterns = [
path('api/docs/', SpectacularAuthSwaggerView.as_view(url_name='schema'), name='swagger-ui'),
# ... your other urls
]
- That's it! 🎉 Your Swagger UI now has an authentication panel.
⚙️ Configuration
Full Configuration Options
DRF_SPECTACULAR_AUTH = {
# AWS Cognito Settings
'COGNITO_REGION': 'ap-northeast-2',
'COGNITO_CLIENT_ID': 'your-client-id',
# API Endpoints
'LOGIN_ENDPOINT': '/api/auth/login/',
'LOGOUT_ENDPOINT': '/api/auth/logout/',
# UI Settings
'PANEL_POSITION': 'top-right', # top-left, top-right, bottom-left, bottom-right
'PANEL_STYLE': 'floating', # floating, embedded
'AUTO_AUTHORIZE': True, # Auto-fill authorization headers
'SHOW_COPY_BUTTON': True, # Show token copy button
'SHOW_USER_INFO': True, # Show user email in panel
# Theming
'THEME': {
'PRIMARY_COLOR': '#61affe',
'SUCCESS_COLOR': '#28a745',
'ERROR_COLOR': '#dc3545',
'BACKGROUND_COLOR': '#ffffff',
'BORDER_RADIUS': '8px',
'SHADOW': '0 2px 10px rgba(0,0,0,0.1)',
},
# Localization
'DEFAULT_LANGUAGE': 'ko',
'SUPPORTED_LANGUAGES': ['ko', 'en', 'ja'],
# Security
'TOKEN_STORAGE': 'localStorage', # localStorage, sessionStorage
'CSRF_PROTECTION': True,
# Extensibility
'CUSTOM_AUTH_PROVIDERS': [],
'HOOKS': {
'PRE_LOGIN': None,
'POST_LOGIN': None,
'PRE_LOGOUT': None,
'POST_LOGOUT': None,
}
}
🎨 Customization
Custom Authentication Provider
from drf_spectacular_auth.providers.base import AuthProvider
class CustomAuthProvider(AuthProvider):
def authenticate(self, credentials):
# Your custom authentication logic
return {
'access_token': 'your-token',
'user': {'email': 'user@example.com'}
}
def get_user_info(self, token):
# Get user information from token
return {'email': 'user@example.com'}
# Register your provider
DRF_SPECTACULAR_AUTH = {
'CUSTOM_AUTH_PROVIDERS': [
'path.to.your.CustomAuthProvider'
]
}
Custom Templates
DRF_SPECTACULAR_AUTH = {
'CUSTOM_TEMPLATES': {
'auth_panel': 'your_app/custom_auth_panel.html',
'login_form': 'your_app/custom_login_form.html',
}
}
📱 Screenshots
| Light Theme | Dark Theme |
|---|---|
🔧 Development
Local Development
git clone https://github.com/yourusername/drf-spectacular-auth.git
cd drf-spectacular-auth
pip install -e ".[dev]"
Running Tests
pytest
pytest --cov=drf_spectacular_auth
Code Quality
black .
isort .
flake8
🤝 Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/AmazingFeature) - Commit your changes (
git commit -m 'Add some AmazingFeature') - Push to the branch (
git push origin feature/AmazingFeature) - Open a Pull Request
📄 License
This project is licensed under the MIT License - see the LICENSE file for details.
🙏 Acknowledgments
- DRF Spectacular for the excellent API documentation framework
- AWS Cognito for authentication services
- Swagger UI for the beautiful API documentation interface
📚 Links
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file drf_spectacular_auth-1.0.1.tar.gz.
File metadata
- Download URL: drf_spectacular_auth-1.0.1.tar.gz
- Upload date:
- Size: 20.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
268b99cda65fc4a7f0eb2703cf84d392312e5e238ae13b29b2b92751fa71ab62
|
|
| MD5 |
f9dd3ba51492379153bfdfa6fd4185e2
|
|
| BLAKE2b-256 |
67eb084619da230db25f352e3480b8b612dd12055ee8826a1147a958d5d9b124
|
File details
Details for the file drf_spectacular_auth-1.0.1-py3-none-any.whl.
File metadata
- Download URL: drf_spectacular_auth-1.0.1-py3-none-any.whl
- Upload date:
- Size: 19.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de54139bc6b27ef7078bdf25cfa7fae392c58ab058e2a7e94ea27c7e4ce11b9f
|
|
| MD5 |
12e620141f083d6a5317abe8088dbe07
|
|
| BLAKE2b-256 |
a41899ba64f29eba93c8450bb49198faee49a06303373aafe5112b4adb2a02b5
|