mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Allow authentication via HTTP_REMOTE_USER
This commit is contained in:
parent
db4b621631
commit
7b56ad9dad
@ -162,6 +162,12 @@ PAPERLESS_COOKIE_PREFIX=<str>
|
|||||||
|
|
||||||
Defaults to ``""``, which does not alter the cookie names.
|
Defaults to ``""``, which does not alter the cookie names.
|
||||||
|
|
||||||
|
PAPERLESS_ENABLE_HTTP_REMOTE_USER=<bool>
|
||||||
|
Allows authentication via HTTP_REMOTE_USER which is used by some SSO
|
||||||
|
applications.
|
||||||
|
|
||||||
|
Defaults to `false` which disables this feature.
|
||||||
|
|
||||||
.. _configuration-ocr:
|
.. _configuration-ocr:
|
||||||
|
|
||||||
OCR settings
|
OCR settings
|
||||||
@ -210,20 +216,20 @@ PAPERLESS_OCR_MODE=<mode>
|
|||||||
into images and puts the OCRed text on top. This works for all documents,
|
into images and puts the OCRed text on top. This works for all documents,
|
||||||
however, the resulting document may be significantly larger and text
|
however, the resulting document may be significantly larger and text
|
||||||
won't appear as sharp when zoomed in.
|
won't appear as sharp when zoomed in.
|
||||||
|
|
||||||
The default is ``skip``, which only performs OCR when necessary and always
|
The default is ``skip``, which only performs OCR when necessary and always
|
||||||
creates archived documents.
|
creates archived documents.
|
||||||
|
|
||||||
PAPERLESS_OCR_OUTPUT_TYPE=<type>
|
PAPERLESS_OCR_OUTPUT_TYPE=<type>
|
||||||
Specify the the type of PDF documents that paperless should produce.
|
Specify the the type of PDF documents that paperless should produce.
|
||||||
|
|
||||||
* ``pdf``: Modify the PDF document as little as possible.
|
* ``pdf``: Modify the PDF document as little as possible.
|
||||||
* ``pdfa``: Convert PDF documents into PDF/A-2b documents, which is a
|
* ``pdfa``: Convert PDF documents into PDF/A-2b documents, which is a
|
||||||
subset of the entire PDF specification and meant for storing
|
subset of the entire PDF specification and meant for storing
|
||||||
documents long term.
|
documents long term.
|
||||||
* ``pdfa-1``, ``pdfa-2``, ``pdfa-3`` to specify the exact version of
|
* ``pdfa-1``, ``pdfa-2``, ``pdfa-3`` to specify the exact version of
|
||||||
PDF/A you wish to use.
|
PDF/A you wish to use.
|
||||||
|
|
||||||
If not specified, ``pdfa`` is used. Remember that paperless also keeps
|
If not specified, ``pdfa`` is used. Remember that paperless also keeps
|
||||||
the original input file as well as the archived version.
|
the original input file as well as the archived version.
|
||||||
|
|
||||||
@ -275,9 +281,9 @@ PAPERLESS_OCR_USER_ARG=<json>
|
|||||||
|
|
||||||
.. code:: json
|
.. code:: json
|
||||||
|
|
||||||
{"deskew": true, "optimize": 3, "unpaper_args": "--pre-rotate 90"}
|
{"deskew": true, "optimize": 3, "unpaper_args": "--pre-rotate 90"}
|
||||||
|
|
||||||
|
|
||||||
Software tweaks
|
Software tweaks
|
||||||
###############
|
###############
|
||||||
|
|
||||||
|
@ -31,6 +31,7 @@
|
|||||||
#PAPERLESS_STATIC_URL=/static/
|
#PAPERLESS_STATIC_URL=/static/
|
||||||
#PAPERLESS_AUTO_LOGIN_USERNAME=
|
#PAPERLESS_AUTO_LOGIN_USERNAME=
|
||||||
#PAPERLESS_COOKIE_PREFIX=
|
#PAPERLESS_COOKIE_PREFIX=
|
||||||
|
#PAPERLESS_ENABLE_HTTP_REMOTE_USER=false
|
||||||
|
|
||||||
# OCR settings
|
# OCR settings
|
||||||
|
|
||||||
|
@ -2,6 +2,7 @@ from django.conf import settings
|
|||||||
from django.contrib.auth.models import User
|
from django.contrib.auth.models import User
|
||||||
from django.utils.deprecation import MiddlewareMixin
|
from django.utils.deprecation import MiddlewareMixin
|
||||||
from rest_framework import authentication
|
from rest_framework import authentication
|
||||||
|
from rest_framework import exceptions
|
||||||
|
|
||||||
|
|
||||||
class AutoLoginMiddleware(MiddlewareMixin):
|
class AutoLoginMiddleware(MiddlewareMixin):
|
||||||
@ -26,3 +27,21 @@ class AngularApiAuthenticationOverride(authentication.BaseAuthentication):
|
|||||||
return (user, None)
|
return (user, None)
|
||||||
else:
|
else:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
class HttpRemoteUserAuthentication(authentication.BaseAuthentication):
|
||||||
|
""" This class allows authentication via HTTP_REMOTE_USER which is set for
|
||||||
|
example by certain SSO applications.
|
||||||
|
"""
|
||||||
|
|
||||||
|
def authenticate(self, request):
|
||||||
|
username = request.META.get('HTTP_REMOTE_USER')
|
||||||
|
if not username:
|
||||||
|
return None
|
||||||
|
|
||||||
|
try:
|
||||||
|
user = User.objects.get(username=username)
|
||||||
|
except User.DoesNotExist:
|
||||||
|
raise exceptions.AuthenticationFailed('No such user')
|
||||||
|
|
||||||
|
return (user, None)
|
||||||
|
@ -112,6 +112,13 @@ if DEBUG:
|
|||||||
'paperless.auth.AngularApiAuthenticationOverride'
|
'paperless.auth.AngularApiAuthenticationOverride'
|
||||||
)
|
)
|
||||||
|
|
||||||
|
ENABLE_HTTP_REMOTE_USER = __get_boolean("PAPERLESS_ENABLE_HTTP_REMOTE_USER")
|
||||||
|
|
||||||
|
if ENABLE_HTTP_REMOTE_USER:
|
||||||
|
REST_FRAMEWORK['DEFAULT_AUTHENTICATION_CLASSES'].append(
|
||||||
|
'paperless.auth.HttpRemoteUserAuthentication'
|
||||||
|
)
|
||||||
|
|
||||||
MIDDLEWARE = [
|
MIDDLEWARE = [
|
||||||
'django.middleware.security.SecurityMiddleware',
|
'django.middleware.security.SecurityMiddleware',
|
||||||
'whitenoise.middleware.WhiteNoiseMiddleware',
|
'whitenoise.middleware.WhiteNoiseMiddleware',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user