Files
Pinry/users/middleware.py

19 lines
505 B
Python
Raw Normal View History

2012-08-01 21:30:18 +00:00
from django.conf import settings
from django.http import HttpResponseForbidden
2012-08-01 21:30:18 +00:00
class Public:
2019-02-22 17:40:02 +08:00
acceptable_paths = (
"/api/v2/profile/",
)
def __init__(self, get_response):
self.get_response = get_response
2012-08-01 21:30:18 +00:00
def process_request(self, request):
2019-02-22 17:40:02 +08:00
if settings.PUBLIC is False and not request.user.is_authenticated():
for path in self.acceptable_paths:
if not request.path.startswith(path):
return HttpResponseForbidden()