* web: align style to show current user for webauthn enroll
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
* ask for aaguid
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
* initial MDS import
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
* add API
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
* add restriction
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
* fix api, add actual restriction
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
* default authenticator name based on aaguid
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
* connect device with device type
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
* fix typo in webauthn stage name
this typo has been around for 3 years 8708e487ae (diff-bb4aee4a37f4b95c8daa7beb6bf6251d8d2b6deb8c16dce0cd7cb0d6cd71900aR16)
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
* add fido2 dep
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
* add CI pipeline to automate updating blob
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
* fix tests, include device type
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
* add tests
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
* exclude icon for now
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
* add passkeys aaguid
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
* make special unknown device type work, add docs
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
		
	
		
			
				
	
	
		
			180 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			180 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
[tool.poetry]
 | 
						|
name = "authentik"
 | 
						|
version = "2024.2.2"
 | 
						|
description = ""
 | 
						|
authors = ["authentik Team <hello@goauthentik.io>"]
 | 
						|
 | 
						|
[tool.black]
 | 
						|
line-length = 100
 | 
						|
target-version = ['py312']
 | 
						|
exclude = 'node_modules'
 | 
						|
 | 
						|
[tool.ruff]
 | 
						|
line-length = 100
 | 
						|
target-version = "py312"
 | 
						|
exclude = ["**/migrations/**", "**/node_modules/**"]
 | 
						|
 | 
						|
[tool.ruff.lint]
 | 
						|
select = [
 | 
						|
    # pycodestyle
 | 
						|
    "E",
 | 
						|
    # Pyflakes
 | 
						|
    "F",
 | 
						|
    # isort
 | 
						|
    "I",
 | 
						|
    # pyupgrade
 | 
						|
    "UP",
 | 
						|
    # flake8-bugbear
 | 
						|
    "B",
 | 
						|
    # django
 | 
						|
    "DJ",
 | 
						|
    # pylint
 | 
						|
    "PL",
 | 
						|
]
 | 
						|
ignore = [
 | 
						|
    "DJ001" # Avoid using `null=True` on string-based fields,
 | 
						|
]
 | 
						|
[tool.ruff.lint.pylint]
 | 
						|
max-args = 7
 | 
						|
max-branches = 18
 | 
						|
max-returns = 10
 | 
						|
 | 
						|
[tool.coverage.run]
 | 
						|
source = ["authentik"]
 | 
						|
relative_files = true
 | 
						|
omit = [
 | 
						|
    "*/asgi.py",
 | 
						|
    "manage.py",
 | 
						|
    "*/migrations/*",
 | 
						|
    "*/management/commands/*",
 | 
						|
    "*/apps.py",
 | 
						|
    "website/",
 | 
						|
]
 | 
						|
 | 
						|
[tool.coverage.report]
 | 
						|
sort = "Cover"
 | 
						|
skip_covered = true
 | 
						|
precision = 2
 | 
						|
exclude_lines = [
 | 
						|
    "pragma: no cover",
 | 
						|
    # Don't complain about missing debug-only code:
 | 
						|
    "def __unicode__",
 | 
						|
    "def __str__",
 | 
						|
    "def __repr__",
 | 
						|
    "if self.debug",
 | 
						|
    "if TYPE_CHECKING",
 | 
						|
    # Don't complain if tests don't hit defensive assertion code:
 | 
						|
    "raise AssertionError",
 | 
						|
    "raise NotImplementedError",
 | 
						|
    # Don't complain if non-runnable code isn't run:
 | 
						|
    "if 0:",
 | 
						|
    "if __name__ == .__main__.:",
 | 
						|
]
 | 
						|
show_missing = true
 | 
						|
 | 
						|
[tool.pytest.ini_options]
 | 
						|
DJANGO_SETTINGS_MODULE = "authentik.root.settings"
 | 
						|
python_files = ["tests.py", "test_*.py", "*_tests.py"]
 | 
						|
junit_family = "xunit2"
 | 
						|
addopts = "-p no:celery --junitxml=unittest.xml -vv --full-trace --doctest-modules"
 | 
						|
filterwarnings = [
 | 
						|
    "ignore:defusedxml.lxml is no longer supported and will be removed in a future release.:DeprecationWarning",
 | 
						|
    "ignore:SelectableGroups dict interface is deprecated. Use select.:DeprecationWarning",
 | 
						|
]
 | 
						|
 | 
						|
[tool.poetry.dependencies]
 | 
						|
argon2-cffi = "*"
 | 
						|
celery = "*"
 | 
						|
channels = { version = "*", extras = ["daphne"] }
 | 
						|
channels-redis = "*"
 | 
						|
codespell = "*"
 | 
						|
colorama = "*"
 | 
						|
dacite = "*"
 | 
						|
deepmerge = "*"
 | 
						|
defusedxml = "*"
 | 
						|
django = "*"
 | 
						|
django-filter = "*"
 | 
						|
django-guardian = "*"
 | 
						|
django-model-utils = "*"
 | 
						|
django-prometheus = "*"
 | 
						|
django-redis = "*"
 | 
						|
django-storages = { extras = ["s3"], version = "*" }
 | 
						|
# See https://github.com/django-tenants/django-tenants/pull/997
 | 
						|
django-tenants = { git = "https://github.com/rissson/django-tenants.git", branch="authentik-fixes" }
 | 
						|
djangorestframework = "*"
 | 
						|
djangorestframework-guardian = "*"
 | 
						|
docker = "*"
 | 
						|
drf-spectacular = "*"
 | 
						|
dumb-init = "*"
 | 
						|
duo-client = "*"
 | 
						|
facebook-sdk = "*"
 | 
						|
fido2 = "*"
 | 
						|
flower = "*"
 | 
						|
geoip2 = "*"
 | 
						|
gunicorn = "*"
 | 
						|
kubernetes = "*"
 | 
						|
ldap3 = "*"
 | 
						|
lxml = [
 | 
						|
    # 5.0.0 works with libxml2 2.11.x, which is standard on brew
 | 
						|
    { version = "5.0.0", platform = "darwin" },
 | 
						|
    # 4.9.x works with previous libxml2 versions, which is what we get on linux
 | 
						|
    { version = "4.9.4", platform = "linux" },
 | 
						|
]
 | 
						|
jsonpatch = "*"
 | 
						|
opencontainers = { extras = ["reggie"], version = "*" }
 | 
						|
packaging = "*"
 | 
						|
paramiko = "*"
 | 
						|
psycopg = { extras = ["c"], version = "*" }
 | 
						|
pycryptodome = "*"
 | 
						|
pydantic = "*"
 | 
						|
pydantic-scim = "*"
 | 
						|
pyjwt = "*"
 | 
						|
python = "~3.12"
 | 
						|
pyyaml = "*"
 | 
						|
requests-oauthlib = "*"
 | 
						|
sentry-sdk = "*"
 | 
						|
service_identity = "*"
 | 
						|
setproctitle = "*"
 | 
						|
structlog = "*"
 | 
						|
swagger-spec-validator = "*"
 | 
						|
tenant-schemas-celery = "*"
 | 
						|
twilio = "*"
 | 
						|
twisted = "*"
 | 
						|
ua-parser = "*"
 | 
						|
# Pinned because of botocore https://github.com/orgs/python-poetry/discussions/7937
 | 
						|
urllib3 = { extras = ["secure"], version = "<3" }
 | 
						|
uvicorn = { extras = ["standard"], version = "*" }
 | 
						|
watchdog = "*"
 | 
						|
webauthn = "*"
 | 
						|
wsproto = "*"
 | 
						|
xmlsec = "*"
 | 
						|
zxcvbn = "*"
 | 
						|
 | 
						|
[tool.poetry.dev-dependencies]
 | 
						|
bandit = "*"
 | 
						|
black = "*"
 | 
						|
bump2version = "*"
 | 
						|
colorama = "*"
 | 
						|
coverage = { extras = ["toml"], version = "*" }
 | 
						|
debugpy = "*"
 | 
						|
drf-jsonschema-serializer = "*"
 | 
						|
freezegun = "*"
 | 
						|
importlib-metadata = "*"
 | 
						|
pdoc = "*"
 | 
						|
pyrad = "*"
 | 
						|
pytest = "*"
 | 
						|
pytest-django = "*"
 | 
						|
pytest-github-actions-annotate-failures = "*"
 | 
						|
pytest-randomly = "*"
 | 
						|
pytest-timeout = "*"
 | 
						|
requests-mock = "*"
 | 
						|
ruff = "*"
 | 
						|
selenium = "*"
 | 
						|
 | 
						|
[build-system]
 | 
						|
requires = ["poetry-core>=1.0.0"]
 | 
						|
build-backend = "poetry.core.masonry.api"
 | 
						|
 | 
						|
[tool.poetry.scripts]
 | 
						|
ak = "lifecycle.ak:main"
 |