85 lines
2.7 KiB
Python
85 lines
2.7 KiB
Python
from __future__ import unicode_literals
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from mayan.apps.acls.classes 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.apps import MayanAppConfig
|
|
from mayan.apps.common.menus import (
|
|
menu_list_facet, menu_multi_item, menu_object, menu_secondary, menu_tools
|
|
)
|
|
from mayan.apps.events.classes import ModelEventType
|
|
from mayan.apps.events.links import (
|
|
link_events_for_object, link_object_event_types_user_subcriptions_list
|
|
)
|
|
from mayan.apps.navigation.classes import SourceColumn
|
|
|
|
from .events import event_cache_edited, event_cache_purged
|
|
from .links import (
|
|
link_caches_list, link_cache_multiple_purge, link_cache_purge
|
|
)
|
|
from .permissions import permission_cache_purge, permission_cache_view
|
|
|
|
|
|
class FileCachingConfig(MayanAppConfig):
|
|
app_namespace = 'file_caching'
|
|
app_url = 'file_caching'
|
|
has_tests = True
|
|
name = 'mayan.apps.file_caching'
|
|
verbose_name = _('File caching')
|
|
|
|
def ready(self):
|
|
super(FileCachingConfig, self).ready()
|
|
from actstream import registry
|
|
|
|
Cache = self.get_model(model_name='Cache')
|
|
|
|
ModelEventType.register(
|
|
event_types=(event_cache_edited, event_cache_purged,),
|
|
model=Cache
|
|
)
|
|
|
|
ModelPermission.register(
|
|
model=Cache, permissions=(
|
|
permission_acl_edit, permission_acl_view,
|
|
permission_cache_purge, permission_cache_view
|
|
)
|
|
)
|
|
|
|
SourceColumn(attribute='label', is_sortable=True, source=Cache)
|
|
SourceColumn(attribute='name', is_sortable=True, source=Cache)
|
|
SourceColumn(
|
|
attribute='storage_instance_path', is_sortable=True, source=Cache
|
|
)
|
|
SourceColumn(
|
|
attribute='get_maximum_size_display', is_sortable=True,
|
|
sort_field='maximum_size', source=Cache
|
|
)
|
|
SourceColumn(attribute='get_total_size_display', source=Cache)
|
|
|
|
menu_list_facet.bind_links(
|
|
links=(
|
|
link_acl_list, link_events_for_object,
|
|
link_object_event_types_user_subcriptions_list,
|
|
), sources=(Cache,)
|
|
)
|
|
|
|
menu_object.bind_links(
|
|
links=(link_cache_purge,),
|
|
sources=(Cache,)
|
|
)
|
|
menu_multi_item.bind_links(
|
|
links=(link_cache_multiple_purge,),
|
|
sources=(Cache,)
|
|
)
|
|
menu_secondary.bind_links(
|
|
links=(link_caches_list,), sources=(
|
|
Cache,
|
|
)
|
|
)
|
|
|
|
menu_tools.bind_links(links=(link_caches_list,))
|
|
|
|
registry.register(Cache)
|