forked from arteria/cmsplugin-contact-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.py
88 lines (75 loc) · 2.79 KB
/
utils.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
import glob
import os
import threading
import importlib
from django.conf import settings
localdata = threading.local()
localdata.TEMPLATES = tuple()
TEMPLATES = localdata.TEMPLATES
def autodiscover_templates():
'''
Autodiscovers cmsplugin_contact_plus templates the way
'django.template.loaders.filesystem.Loader' and
'django.template.loaders.app_directories.Loader' work.
'''
def sorted_templates(templates):
'''
Sorts templates
'''
TEMPLATES = sorted(templates, key=lambda template: template[1])
return TEMPLATES
# obviously, cache for better performance
global TEMPLATES
if TEMPLATES:
return TEMPLATES
# override templates from settings
override_dir = getattr(settings, 'CMSPLUGIN_CONTACT_PLUS_TEMPLATES', None)
if override_dir:
return sorted_templates(override_dir)
templates = []
# templates = [
# ('cmsplugin_contact_plus/hello.html', 'hello.html'),
# ]
dirs_to_scan = []
if 'django.template.loaders.app_directories.Loader' in settings.TEMPLATE_LOADERS:
for app in settings.INSTALLED_APPS:
_ = __import__(app)
dir = os.path.dirname(_.__file__)
if not dir in dirs_to_scan:
# append 'templates' for app directories
dirs_to_scan.append(os.path.join(dir, 'templates'))
if 'django.template.loaders.filesystem.Loader' in settings.TEMPLATE_LOADERS:
for dir in settings.TEMPLATE_DIRS:
if not dir in dirs_to_scan:
# filesystem loader assumes our templates in 'templates'
# already
dirs_to_scan.append(dir)
for dir in dirs_to_scan:
found = glob.glob(os.path.join(dir, 'cmsplugin_contact_plus/*.html'))
for file in found:
dir, file = os.path.split(file)
key, value = os.path.join(dir.split('/')[-1], file), file
f = False
for _, template in templates:
if template == file:
f = True
if not f:
templates.append((key, value,))
# print os.path.basename(file)
return sorted_templates(templates)
def get_validators():
val = []
# See if validators have been defined
if hasattr(settings, 'CMSPLUGIN_CONTACT_FORM_VALIDATORS'):
validators = getattr(settings,
'CMSPLUGIN_CONTACT_FORM_VALIDATORS')
for validator in validators:
try:
f = getattr(importlib.import_module(validator[0]),
validator[1])
val.append(f)
except ImportError:
raise ImportError(
"Cannot import {} from module {}.".format(
validator[1], validator[0]))
return val