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>
143 lines
4.0 KiB
Python
143 lines
4.0 KiB
Python
from __future__ import unicode_literals
|
|
|
|
import logging
|
|
|
|
from django import forms
|
|
from django.utils.encoding import force_text
|
|
from django.utils.translation import ugettext
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from mayan.apps.documents.forms import DocumentForm
|
|
|
|
from .models import (
|
|
IMAPEmail, POP3Email, SaneScanner, StagingFolderSource, WebFormSource,
|
|
WatchFolderSource
|
|
)
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class NewDocumentForm(DocumentForm):
|
|
class Meta(DocumentForm.Meta):
|
|
exclude = ('label', 'description')
|
|
|
|
|
|
class NewVersionForm(forms.Form):
|
|
def __init__(self, *args, **kwargs):
|
|
super(NewVersionForm, self).__init__(*args, **kwargs)
|
|
|
|
self.fields['comment'] = forms.CharField(
|
|
label=_('Comment'),
|
|
required=False,
|
|
widget=forms.widgets.Textarea(attrs={'rows': 4}),
|
|
)
|
|
|
|
|
|
class UploadBaseForm(forms.Form):
|
|
def __init__(self, *args, **kwargs):
|
|
show_expand = kwargs.pop('show_expand', False)
|
|
self.source = kwargs.pop('source')
|
|
|
|
super(UploadBaseForm, self).__init__(*args, **kwargs)
|
|
|
|
if show_expand:
|
|
self.fields['expand'] = forms.BooleanField(
|
|
label=_('Expand compressed files'), required=False,
|
|
help_text=ugettext(
|
|
'Upload a compressed file\'s contained files as '
|
|
'individual documents'
|
|
)
|
|
)
|
|
|
|
|
|
class StagingUploadForm(UploadBaseForm):
|
|
"""
|
|
Form that show all the files in the staging folder specified by the
|
|
StagingFile class passed as 'cls' argument
|
|
"""
|
|
def __init__(self, *args, **kwargs):
|
|
super(StagingUploadForm, self).__init__(*args, **kwargs)
|
|
|
|
try:
|
|
self.fields['staging_file_id'].choices = [
|
|
(staging_file.encoded_filename, force_text(staging_file)) for staging_file in self.source.get_files()
|
|
]
|
|
except Exception as exception:
|
|
logger.error('exception: %s', exception)
|
|
|
|
staging_file_id = forms.ChoiceField(label=_('Staging file'))
|
|
|
|
|
|
class WebFormUploadForm(UploadBaseForm):
|
|
file = forms.FileField(label=_('File'))
|
|
|
|
|
|
class WebFormUploadFormHTML5(WebFormUploadForm):
|
|
file = forms.FileField(
|
|
label=_('File'), widget=forms.widgets.FileInput(
|
|
attrs={'class': 'hidden', 'hidden': True}
|
|
)
|
|
)
|
|
|
|
|
|
class SaneScannerUploadForm(UploadBaseForm):
|
|
pass
|
|
|
|
|
|
class SaneScannerSetupForm(forms.ModelForm):
|
|
class Meta:
|
|
fields = (
|
|
'label', 'device_name', 'mode', 'resolution', 'source',
|
|
'adf_mode', 'enabled'
|
|
)
|
|
model = SaneScanner
|
|
|
|
|
|
class WebFormSetupForm(forms.ModelForm):
|
|
class Meta:
|
|
fields = ('label', 'enabled', 'uncompress')
|
|
model = WebFormSource
|
|
|
|
|
|
class StagingFolderSetupForm(forms.ModelForm):
|
|
class Meta:
|
|
fields = (
|
|
'label', 'enabled', 'folder_path', 'preview_width',
|
|
'preview_height', 'uncompress', 'delete_after_upload'
|
|
)
|
|
model = StagingFolderSource
|
|
|
|
|
|
class EmailSetupBaseForm(forms.ModelForm):
|
|
class Meta:
|
|
fields = (
|
|
'label', 'enabled', 'interval', 'document_type', 'uncompress',
|
|
'host', 'ssl', 'port', 'username', 'password',
|
|
'metadata_attachment_name', 'subject_metadata_type',
|
|
'from_metadata_type', 'store_body'
|
|
)
|
|
widgets = {
|
|
'password': forms.widgets.PasswordInput(render_value=True)
|
|
}
|
|
|
|
|
|
class IMAPEmailSetupForm(EmailSetupBaseForm):
|
|
class Meta(EmailSetupBaseForm.Meta):
|
|
fields = EmailSetupBaseForm.Meta.fields + ('mailbox',)
|
|
model = IMAPEmail
|
|
|
|
|
|
class POP3EmailSetupForm(EmailSetupBaseForm):
|
|
class Meta(EmailSetupBaseForm.Meta):
|
|
fields = EmailSetupBaseForm.Meta.fields + ('timeout',)
|
|
model = POP3Email
|
|
|
|
|
|
class WatchFolderSetupForm(forms.ModelForm):
|
|
class Meta:
|
|
fields = (
|
|
'label', 'enabled', 'interval', 'document_type', 'uncompress',
|
|
'folder_path', 'include_subdirectories'
|
|
)
|
|
model = WatchFolderSource
|