From 96c517d65c4ad8eb0a202836eb34394d8da5023c Mon Sep 17 00:00:00 2001 From: Matt Date: Fri, 2 Feb 2018 09:50:43 -0500 Subject: [PATCH] Rejiggering code style to make upstream pycodestyle checks happy --- src/paperless/auto_auth.py | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/src/paperless/auto_auth.py b/src/paperless/auto_auth.py index f4b908c7d..a12bf9405 100644 --- a/src/paperless/auto_auth.py +++ b/src/paperless/auto_auth.py @@ -1,24 +1,34 @@ from django.contrib.auth.models import User ''' - This is a dummy authentication middleware module that creates what + This is a dummy authentication middleware module that creates what is roughly an Anonymous authenticated user so we can disable login and not interfere with existing user ID's. ''' + class User: is_superuser = True is_active = True is_staff = True - is_authenticated=True - id = -1 #Must be -1 to avoid colliding with possible existing user ID's (that start number at 1) + is_authenticated = True + + ''' + Must be -1 to avoid colliding with possible + existing user ID's (that start number at 1) + ''' + id = -1 pk = -1 + def return_true(*args, **kwargs): return True + + User.has_module_perms = return_true User.has_perm = return_true + class Middleware(object): def process_request(self, request): request.user = User()