Instead of inserting the path of the apps into the Python app, the apps are now referenced by their full import path. This solves name clashes with external or native Python libraries. Example: Mayan statistics app vs. Python new statistics library. Every app reference is now prepended with 'mayan.apps'. Existing config.yml files need to be updated manually. Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
37 lines
1.1 KiB
Python
37 lines
1.1 KiB
Python
from __future__ import unicode_literals
|
|
|
|
from django.apps import apps
|
|
from django.conf import settings
|
|
from django.utils.module_loading import import_string
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from mayan.apps.common import MayanAppConfig, menu_tools
|
|
|
|
from .links import (
|
|
link_api, link_api_documentation, link_api_documentation_redoc
|
|
)
|
|
from .licenses import * # NOQA
|
|
|
|
|
|
class RESTAPIApp(MayanAppConfig):
|
|
app_url = 'api'
|
|
app_namespace = 'rest_api'
|
|
name = 'mayan.apps.rest_api'
|
|
verbose_name = _('REST API')
|
|
|
|
def ready(self):
|
|
super(RESTAPIApp, self).ready()
|
|
from .urls import api_urls
|
|
|
|
settings.STRONGHOLD_PUBLIC_URLS += (r'^/%s/.+$' % self.app_url,)
|
|
menu_tools.bind_links(
|
|
links=(
|
|
link_api, link_api_documentation, link_api_documentation_redoc
|
|
)
|
|
)
|
|
|
|
for app in apps.get_app_configs():
|
|
if getattr(app, 'has_rest_api', False):
|
|
app_api_urls = import_string('{}.urls.api_urls'.format(app.name))
|
|
api_urls.extend(app_api_urls)
|