-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcore.py
111 lines (81 loc) · 4.01 KB
/
core.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
from pathlib import Path
from importlib import import_module
from django.urls import path, include
from .path import modules_path
def bind_modules_app():
the_modules_path = Path(modules_path()).resolve()
# Initialize an empty list to store installed apps
INSTALLED_APPS = [
# third party apps
'rest_framework',
'rest_framework.authtoken',
'celery',
]
INSTALLED_APPS.append('django_petra.project')
INSTALLED_APPS.append('django_petra.cors')
# Loop through each module directory
for module_dir in the_modules_path.iterdir():
if module_dir.is_dir():
# Construct the path to the urls.py file in the module directory
module_urls_path = module_dir / 'urls.py'
# Get the name of the module
module_name = module_dir.name
# Check if the urls.py file exists
if module_urls_path.exists():
# Append the module to INSTALLED_APPS
INSTALLED_APPS.append(f'modules.{module_name}')
# Return the INSTALLED_APPS list
return INSTALLED_APPS
def bind_modules_urls():
the_modules_path = Path(modules_path()).resolve()
# Initialize an empty list to store urlpatterns
urlpatterns = []
urlpatterns.append(path(f'hello-django-petra/', include(('django_petra.project.urls', 'django_petra.project'))))
# Loop through each module directory
for module_dir in the_modules_path.iterdir():
if module_dir.is_dir():
# Get the name of the module
module_name = module_dir.name
# Construct the path to the urls.py file in the module directory
module_urls_path = module_dir / 'urls.py'
# Check if the urls.py file exists
if module_urls_path.exists():
# Construct the import path for the module's urls
module_urls = f'modules.{module_name}.urls'
# Import the module to get its version
urls_module = import_module(module_urls)
# Get version from module, default to 'v1' if not specified
version = getattr(urls_module, 'API_VERSION', 'v1')
# Append a path to urlpatterns, including the module's urls
urlpatterns.append(path(f'api/{version}/{module_name}/', include((module_urls, module_name))))
# Return the urlpatterns list
return urlpatterns
def show_modules_url():
from django_petra.router import Router, Route
the_modules_path = Path(modules_path()).resolve()
# Initialize an empty list to store urlpatterns
the_routes = []
# urlpatterns.append(path(f'hello-django-petra/', include(('django_petra.project.urls', 'django_petra.project'))))
# Loop through each module directory
for module_dir in the_modules_path.iterdir():
if module_dir.is_dir():
# Get the name of the module
module_name = module_dir.name
# Construct the path to the urls.py file in the module directory
module_urls_path = module_dir / 'urls.py'
# Check if the urls.py file exists
if module_urls_path.exists():
# Construct the import path for the module's urls
module_urls = f'modules.{module_name}.urls'
# Dynamically import the module's urls
urls_module = import_module(module_urls)
# Get the routes from the imported module
module_routes = getattr(urls_module, 'routes', [])
generate_routes = [(route) for route in Route(module_routes).show_lists()]
# Append a path to urlpatterns, including the module's urls
the_routes.extend(generate_routes)
# Return the urlpatterns list
return the_routes
from django_petra.initialize import init_django_petra
def initialize():
init_django_petra()