forked from django-cms/django-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapphook_pool.py
74 lines (65 loc) · 2.56 KB
/
apphook_pool.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# -*- coding: utf-8 -*-
from cms.exceptions import AppAlreadyRegistered
from cms.utils.conf import get_cms_setting
from cms.utils.django_load import load, iterload_objects
from django.core.exceptions import ImproperlyConfigured
import warnings
class ApphookPool(object):
def __init__(self):
self.apps = {}
self.discovered = False
self.block_register = False
def discover_apps(self):
if self.discovered:
return
#import all the modules
apphooks = get_cms_setting('APPHOOKS')
if apphooks:
self.block_register = True
for cls in iterload_objects(apphooks):
self.block_register = False
self.register(cls)
self.block_register = True
self.block_register = False
else:
load('cms_app')
self.discovered = True
def clear(self):
self.apps = {}
self.discovered = False
def register(self, app):
if self.block_register:
return
from cms.app_base import CMSApp
# validate the app
if not issubclass(app, CMSApp):
raise ImproperlyConfigured('CMS Apps must inherit '
'cms.app_base.CMSApp, %r does not' % app)
if hasattr(app, 'menu') and not app.menus:
warnings.warn("You define a 'menu' attribute on your CMS App %r, "
"but the 'menus' attribute is empty, did you make a typo?")
name = app.__name__
if name in self.apps.keys():
raise AppAlreadyRegistered("[%s] a cms app with this name is already registered" % name)
self.apps[name] = app
def get_apphooks(self):
self.discover_apps()
hooks = []
for app_name in self.apps.keys():
app = self.apps[app_name]
if app.urls:
hooks.append((app_name, app.name))
# Unfortunately, we loose the ordering since we now have a list of tuples. Let's reorder by app_name:
hooks = sorted(hooks, key=lambda hook: hook[1])
return hooks
def get_apphook(self, app_name):
self.discover_apps()
try:
return self.apps[app_name]
except KeyError:
# deprecated: return apphooks registered in db with urlconf name instead of apphook class name
for app in self.apps.values():
if app_name in app.urls:
return app
raise ImproperlyConfigured('No registered apphook `%s` found.' % app_name)
apphook_pool = ApphookPool()