mirror of
https://github.com/pretix/pretix.git
synced 2026-05-05 15:14:04 +00:00
54 lines
2.0 KiB
Python
54 lines
2.0 KiB
Python
import importlib.util
|
|
import warnings
|
|
|
|
from django.apps import apps
|
|
from django.conf.urls import include, url
|
|
|
|
from pretix.multidomain.plugin_handler import plugin_event_urls
|
|
from pretix.presale.urls import (
|
|
event_patterns, locale_patterns, organizer_patterns,
|
|
)
|
|
from pretix.urls import common_patterns
|
|
|
|
presale_patterns = [
|
|
url(r'', include((locale_patterns + [
|
|
url(r'', include(organizer_patterns)),
|
|
url(r'^(?P<event>[^/]+)/', include(event_patterns)),
|
|
], 'presale')))
|
|
]
|
|
|
|
raw_plugin_patterns = []
|
|
for app in apps.get_app_configs():
|
|
if hasattr(app, 'PretixPluginMeta'):
|
|
if importlib.util.find_spec(app.name + '.urls'):
|
|
urlmod = importlib.import_module(app.name + '.urls')
|
|
if hasattr(urlmod, 'event_patterns'):
|
|
patterns = plugin_event_urls(urlmod.event_patterns, plugin=app.name)
|
|
raw_plugin_patterns.append(
|
|
url(r'^(?P<event>[^/]+)/', include((patterns, app.label)))
|
|
)
|
|
if hasattr(urlmod, 'organizer_patterns'):
|
|
patterns = urlmod.organizer_patterns
|
|
raw_plugin_patterns.append(
|
|
url(r'', include((patterns, app.label)))
|
|
)
|
|
|
|
elif importlib.util.find_spec(app.name + '.subdomain_urls'): # noqa
|
|
warnings.warn('Please put your config in an \'urls\' module using the event_patterns '
|
|
'attribute. Support for subdomain_urls in plugins will be dropped in the future.',
|
|
DeprecationWarning)
|
|
urlmod = importlib.import_module(app.name + '.subdomain_urls')
|
|
raw_plugin_patterns.append(
|
|
url(r'', include((urlmod, app.label)))
|
|
)
|
|
|
|
plugin_patterns = [
|
|
url(r'', include((raw_plugin_patterns, 'plugins')))
|
|
]
|
|
|
|
# The presale namespace comes last, because it contains a wildcard catch
|
|
urlpatterns = common_patterns + plugin_patterns + presale_patterns
|
|
|
|
handler404 = 'pretix.base.views.errors.page_not_found'
|
|
handler500 = 'pretix.base.views.errors.server_error'
|