Add the new list facet navigation menu. Used to provide facets to the list subtemplate. The list facet allows separating the object action links from the object navigation links. The list facet links are displayed before the list object links on the list subtemplate. In the object views, the list facet menu behaves exactly the same as the form facet menu. Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
184 lines
6.3 KiB
Python
184 lines
6.3 KiB
Python
from __future__ import absolute_import, unicode_literals
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from kombu import Exchange, Queue
|
|
|
|
from common import (
|
|
MayanAppConfig, MissingItem, menu_list_facet, menu_object, menu_secondary,
|
|
menu_sidebar, menu_setup
|
|
)
|
|
from common.signals import post_initial_setup, post_upgrade
|
|
from converter.links import link_transformation_list
|
|
from documents.menus import menu_documents
|
|
from documents.signals import post_version_upload
|
|
from mayan.celery import app
|
|
from navigation import SourceColumn
|
|
|
|
from .classes import StagingFile
|
|
from .handlers import (
|
|
copy_transformations_to_version, create_default_document_source,
|
|
initialize_periodic_tasks
|
|
)
|
|
from .links import (
|
|
link_document_create_multiple, link_setup_sources,
|
|
link_setup_source_check_now, link_setup_source_create_imap_email,
|
|
link_setup_source_create_pop3_email, link_setup_source_create_sane_scanner,
|
|
link_setup_source_create_watch_folder, link_setup_source_create_webform,
|
|
link_setup_source_create_staging_folder, link_setup_source_delete,
|
|
link_setup_source_edit, link_setup_source_logs, link_staging_file_delete,
|
|
link_upload_version
|
|
)
|
|
from .queues import * # NOQA
|
|
from .widgets import StagingFileThumbnailWidget
|
|
|
|
|
|
class SourcesApp(MayanAppConfig):
|
|
has_rest_api = True
|
|
has_tests = True
|
|
name = 'sources'
|
|
verbose_name = _('Sources')
|
|
|
|
def ready(self):
|
|
super(SourcesApp, self).ready()
|
|
|
|
POP3Email = self.get_model('POP3Email')
|
|
IMAPEmail = self.get_model('IMAPEmail')
|
|
Source = self.get_model('Source')
|
|
SourceLog = self.get_model('SourceLog')
|
|
SaneScanner = self.get_model('SaneScanner')
|
|
StagingFolderSource = self.get_model('StagingFolderSource')
|
|
WatchFolderSource = self.get_model('WatchFolderSource')
|
|
WebFormSource = self.get_model('WebFormSource')
|
|
|
|
MissingItem(
|
|
label=_('Create a document source'),
|
|
description=_(
|
|
'Document sources are the way in which new documents are '
|
|
'feed to Mayan EDMS, create at least a web form source to '
|
|
'be able to upload documents from a browser.'
|
|
),
|
|
condition=lambda: not Source.objects.exists(),
|
|
view='sources:setup_source_list'
|
|
)
|
|
|
|
SourceColumn(
|
|
source=StagingFile,
|
|
label=_('Created'),
|
|
func=lambda context: context['object'].get_date_time_created()
|
|
)
|
|
|
|
html_widget = StagingFileThumbnailWidget()
|
|
SourceColumn(
|
|
source=StagingFile,
|
|
label=_('Thumbnail'),
|
|
func=lambda context: html_widget.render(
|
|
instance=context['object'],
|
|
)
|
|
)
|
|
|
|
SourceColumn(
|
|
source=SourceLog,
|
|
label=_('Date time'),
|
|
func=lambda context: context['object'].datetime
|
|
)
|
|
SourceColumn(
|
|
source=SourceLog,
|
|
label=_('Message'),
|
|
func=lambda context: context['object'].message
|
|
)
|
|
|
|
app.conf.CELERY_QUEUES.extend(
|
|
(
|
|
Queue(
|
|
'sources', Exchange('sources'), routing_key='sources'
|
|
),
|
|
Queue(
|
|
'sources_fast', Exchange('sources_fast'),
|
|
routing_key='sources_fast', delivery_mode=1
|
|
),
|
|
Queue(
|
|
'sources_periodic', Exchange('sources_periodic'),
|
|
routing_key='sources_periodic', delivery_mode=1
|
|
),
|
|
)
|
|
)
|
|
|
|
app.conf.CELERY_ROUTES.update(
|
|
{
|
|
'sources.tasks.task_check_interval_source': {
|
|
'queue': 'sources_periodic'
|
|
},
|
|
'sources.tasks.task_generate_staging_file_image': {
|
|
'queue': 'sources_fast'
|
|
},
|
|
'sources.tasks.task_source_handle_upload': {
|
|
'queue': 'sources'
|
|
},
|
|
'sources.tasks.task_upload_document': {
|
|
'queue': 'sources'
|
|
},
|
|
}
|
|
)
|
|
menu_documents.bind_links(links=(link_document_create_multiple,))
|
|
|
|
menu_list_facet.bind_links(
|
|
links=(
|
|
link_setup_source_logs, link_transformation_list,
|
|
), sources=(
|
|
POP3Email, IMAPEmail, SaneScanner, StagingFolderSource,
|
|
WatchFolderSource, WebFormSource
|
|
)
|
|
)
|
|
|
|
menu_object.bind_links(
|
|
links=(
|
|
link_setup_source_edit, link_setup_source_delete,
|
|
), sources=(
|
|
POP3Email, IMAPEmail, SaneScanner, StagingFolderSource,
|
|
WatchFolderSource, WebFormSource
|
|
)
|
|
)
|
|
menu_object.bind_links(
|
|
links=(link_staging_file_delete,), sources=(StagingFile,)
|
|
)
|
|
menu_object.bind_links(
|
|
links=(link_setup_source_check_now,),
|
|
sources=(IMAPEmail, POP3Email, WatchFolderSource,)
|
|
)
|
|
menu_secondary.bind_links(
|
|
links=(
|
|
link_setup_sources, link_setup_source_create_webform,
|
|
link_setup_source_create_sane_scanner,
|
|
link_setup_source_create_staging_folder,
|
|
link_setup_source_create_pop3_email,
|
|
link_setup_source_create_imap_email,
|
|
link_setup_source_create_watch_folder
|
|
), sources=(
|
|
POP3Email, IMAPEmail, StagingFolderSource, WatchFolderSource,
|
|
WebFormSource, 'sources:setup_source_list',
|
|
'sources:setup_source_create'
|
|
)
|
|
)
|
|
menu_setup.bind_links(links=(link_setup_sources,))
|
|
menu_sidebar.bind_links(
|
|
links=(link_upload_version,),
|
|
sources=(
|
|
'documents:document_version_list', 'documents:upload_version',
|
|
'documents:document_version_revert'
|
|
)
|
|
)
|
|
|
|
post_upgrade.connect(
|
|
initialize_periodic_tasks,
|
|
dispatch_uid='initialize_periodic_tasks'
|
|
)
|
|
post_initial_setup.connect(
|
|
create_default_document_source,
|
|
dispatch_uid='create_default_document_source'
|
|
)
|
|
post_version_upload.connect(
|
|
copy_transformations_to_version,
|
|
dispatch_uid='copy_transformations_to_version'
|
|
)
|