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>
120 lines
3.9 KiB
Python
120 lines
3.9 KiB
Python
from __future__ import unicode_literals
|
|
|
|
from django.apps import apps
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from mayan.apps.acls import ModelPermission
|
|
from mayan.apps.acls.links import link_acl_list
|
|
from mayan.apps.acls.permissions import permission_acl_edit, permission_acl_view
|
|
from mayan.apps.common import (
|
|
MayanAppConfig, menu_facet, menu_object, menu_secondary, menu_setup,
|
|
menu_sidebar
|
|
)
|
|
from mayan.apps.common.widgets import TwoStateWidget
|
|
from mayan.apps.navigation import SourceColumn
|
|
|
|
from .links import (
|
|
link_smart_link_create, link_smart_link_condition_create,
|
|
link_smart_link_condition_delete, link_smart_link_condition_edit,
|
|
link_smart_link_condition_list, link_smart_link_delete,
|
|
link_smart_link_document_types, link_smart_link_edit,
|
|
link_smart_link_instance_view, link_smart_link_instances_for_document,
|
|
link_smart_link_list, link_smart_link_setup
|
|
)
|
|
from .permissions import (
|
|
permission_smart_link_delete, permission_smart_link_edit,
|
|
permission_smart_link_view
|
|
)
|
|
|
|
|
|
class LinkingApp(MayanAppConfig):
|
|
app_namespace = 'linking'
|
|
app_url = 'smart_links'
|
|
has_rest_api = True
|
|
has_tests = True
|
|
name = 'mayan.apps.linking'
|
|
verbose_name = _('Linking')
|
|
|
|
def ready(self):
|
|
super(LinkingApp, self).ready()
|
|
|
|
Document = apps.get_model(
|
|
app_label='documents', model_name='Document'
|
|
)
|
|
|
|
ResolvedSmartLink = self.get_model('ResolvedSmartLink')
|
|
SmartLink = self.get_model('SmartLink')
|
|
SmartLinkCondition = self.get_model('SmartLinkCondition')
|
|
|
|
ModelPermission.register(
|
|
model=SmartLink, permissions=(
|
|
permission_acl_edit, permission_acl_view,
|
|
permission_smart_link_delete, permission_smart_link_edit,
|
|
permission_smart_link_view
|
|
)
|
|
)
|
|
|
|
SourceColumn(
|
|
source=ResolvedSmartLink, label=_('Label'),
|
|
func=lambda context: context['object'].get_label_for(
|
|
document=context['document']
|
|
)
|
|
)
|
|
|
|
SourceColumn(
|
|
source=SmartLink, label=_('Dynamic label'),
|
|
attribute='dynamic_label'
|
|
)
|
|
SourceColumn(
|
|
source=SmartLink, label=_('Enabled'),
|
|
func=lambda context: TwoStateWidget(
|
|
state=context['object'].enabled
|
|
).render()
|
|
)
|
|
|
|
SourceColumn(
|
|
source=SmartLinkCondition, label=_('Enabled'),
|
|
func=lambda context: TwoStateWidget(
|
|
state=context['object'].enabled
|
|
).render()
|
|
)
|
|
|
|
menu_facet.bind_links(
|
|
links=(link_smart_link_instances_for_document,),
|
|
sources=(Document,)
|
|
)
|
|
menu_object.bind_links(
|
|
links=(
|
|
link_smart_link_condition_edit,
|
|
link_smart_link_condition_delete
|
|
), sources=(SmartLinkCondition,)
|
|
)
|
|
menu_object.bind_links(
|
|
links=(
|
|
link_smart_link_edit, link_smart_link_document_types,
|
|
link_smart_link_condition_list, link_acl_list,
|
|
link_smart_link_delete
|
|
), sources=(SmartLink,)
|
|
)
|
|
menu_object.bind_links(
|
|
links=(link_smart_link_instance_view,),
|
|
sources=(ResolvedSmartLink,)
|
|
)
|
|
menu_secondary.bind_links(
|
|
links=(link_smart_link_list, link_smart_link_create),
|
|
sources=(
|
|
SmartLink, 'linking:smart_link_list',
|
|
'linking:smart_link_create'
|
|
)
|
|
)
|
|
menu_setup.bind_links(links=(link_smart_link_setup,))
|
|
menu_sidebar.bind_links(
|
|
links=(link_smart_link_condition_create,),
|
|
sources=(
|
|
'linking:smart_link_condition_list',
|
|
'linking:smart_link_condition_create',
|
|
'linking:smart_link_condition_edit',
|
|
'linking:smart_link_condition_delete'
|
|
)
|
|
)
|