Files
Stefan Pratter 2e8788b595 Support 202210 (#1286)
* Allow REALPEER to overwrite GHOSTPEER netixlan entry, if asn and IPv6/v4 addresses matches the IX-F Members Export information #983

* Lightweight user notification mechanism #758

* do not allow affiliation with a deleted organisation #953

* Improve readability when users have special permissions #659

* fix advanced search export when api-cache exist and no filters were supplied #1153

* Ops: Throttle strings with "Response size" should be renamed "Repeated request" #1168

* allow ixlan prefix to be changed / deleted regardless of existence of netixlans in the address space #924

* linting

* poetry relock

* remove debug code

* linting

* fixed Reset IX-F suggestions link non-functional #1253

* solved UI shows own email when viewing affiliation requests for an organization #1250

* Adjust "Add Facility" menu to include newly defined fields #1091

* Footer "Global System Statistics" should be cached within django instance, not updated with every page load #1283

* linting

* django-handleref to 1.1.0 and relock poetry

* GLOBAL_STATS_CACHE_DURATION default to 900 seconds

* remove vscode and idea

* remove Ctl/dev/docker-compose.debug.yml

* remove unsused variable

* rename STATS to __STATS

* linting

* regen docs
2022-11-08 11:25:32 -06:00

129 lines
2.9 KiB
Markdown

Generated from middleware.py on 2022-11-08 14:31:50.933987
# peeringdb_server.middleware
Custom django middleware.
# Classes
---
## CurrentRequestContext
```
CurrentRequestContext(builtins.object)
```
Middleware that sets the current request context.
This allows access to the current request from anywhere.
### Methods
#### \__call__
`def __call__(self, request)`
Call self as a function.
---
#### \__init__
`def __init__(self, get_response)`
Initialize self. See help(type(self)) for accurate signature.
---
## HttpResponseUnauthorized
```
HttpResponseUnauthorized(django.http.response.HttpResponse)
```
An HTTP response class with a string as content.
This content can be read, appended to, or replaced.
## PDBCommonMiddleware
```
PDBCommonMiddleware(django.middleware.common.CommonMiddleware)
```
"Common" middleware for taking care of some basic operations:
- Forbid access to User-Agents in settings.DISALLOWED_USER_AGENTS
- URL rewriting: Based on the APPEND_SLASH and PREPEND_WWW settings,
append missing slashes and/or prepends missing "www."s.
- If APPEND_SLASH is set and the initial URL doesn't end with a
slash, and it is not found in urlpatterns, form a new URL by
appending a slash at the end. If this new URL is found in
urlpatterns, return an HTTP redirect to this new URL; otherwise
process the initial URL as usual.
This behavior can be customized by subclassing CommonMiddleware and
overriding the response_redirect_class attribute.
### Methods
#### process_request
`def process_request(self, request)`
Check for denied User-Agents and rewrite the URL based on
settings.APPEND_SLASH and settings.PREPEND_WWW
---
## PDBPermissionMiddleware
```
PDBPermissionMiddleware(django.utils.deprecation.MiddlewareMixin)
```
Middleware that checks if the current user has the correct permissions
to access the requested resource.
### Methods
#### get_username_and_password
`def get_username_and_password(self, http_auth)`
Get the username and password from the HTTP auth header.
---
#### response_unauthorized
`def response_unauthorized(self, request, status=None, message=None)`
Return a Unauthorized response.
---
## PDBSessionMiddleware
```
PDBSessionMiddleware(django.contrib.sessions.middleware.SessionMiddleware)
```
As PeeringDB gets a lot of repeated anonymous requests that do not
store and re-use session cookies this lead to substantial amount of junk
django session objects.
It was decided in #1205 that new django sessions are only to be established
On the login and registration processes.
### Methods
#### process_response
`def process_response(self, request, response)`
If request.session was modified, or if the configuration is to save the
session every time, save the changes and set a session cookie or delete
the session cookie if the session has been emptied.
---