188 lines
6.1 KiB
Python
188 lines
6.1 KiB
Python
from __future__ import absolute_import, unicode_literals
|
|
|
|
from django.contrib import messages
|
|
from django.core.exceptions import PermissionDenied
|
|
from django.core.urlresolvers import reverse
|
|
from django.http import HttpResponseRedirect
|
|
from django.shortcuts import get_object_or_404
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from documents.models import Document
|
|
from documents.views import DocumentListView
|
|
|
|
from acls.models import AccessControlList
|
|
from common.generics import (
|
|
ConfirmView, SingleObjectCreateView, SingleObjectDetailView
|
|
)
|
|
from common.utils import encapsulate
|
|
from permissions import Permission
|
|
|
|
from .exceptions import DocumentAlreadyCheckedOut, DocumentNotCheckedOut
|
|
from .forms import DocumentCheckoutForm, DocumentCheckoutDefailForm
|
|
from .models import DocumentCheckout
|
|
from .permissions import (
|
|
permission_document_checkin, permission_document_checkin_override,
|
|
permission_document_checkout, permission_document_checkout_detail_view
|
|
)
|
|
|
|
|
|
class CheckoutDocumentView(SingleObjectCreateView):
|
|
form_class = DocumentCheckoutForm
|
|
|
|
def dispatch(self, request, *args, **kwargs):
|
|
self.document = get_object_or_404(Document.on_organization, pk=self.kwargs['pk'])
|
|
|
|
try:
|
|
Permission.check_permissions(
|
|
request.user, (permission_document_checkout,)
|
|
)
|
|
except PermissionDenied:
|
|
AccessControlList.objects.check_access(
|
|
permission_document_checkout, request.user, self.document
|
|
)
|
|
|
|
return super(
|
|
CheckoutDocumentView, self
|
|
).dispatch(request, *args, **kwargs)
|
|
|
|
def form_valid(self, form):
|
|
try:
|
|
instance = form.save(commit=False)
|
|
instance.user = self.request.user
|
|
instance.document = self.document
|
|
instance.save()
|
|
except DocumentAlreadyCheckedOut:
|
|
messages.error(self.request, _('Document already checked out.'))
|
|
except Exception as exception:
|
|
messages.error(
|
|
self.request,
|
|
_('Error trying to check out document; %s') % exception
|
|
)
|
|
else:
|
|
messages.success(
|
|
self.request,
|
|
_('Document "%s" checked out successfully.') % self.document
|
|
)
|
|
|
|
return HttpResponseRedirect(self.get_success_url())
|
|
|
|
def get_extra_context(self):
|
|
return {
|
|
'object': self.document,
|
|
'title': _('Check out document: %s') % self.document
|
|
}
|
|
|
|
def get_post_action_redirect(self):
|
|
return reverse('checkouts:checkout_info', args=(self.document.pk,))
|
|
|
|
|
|
class CheckoutListView(DocumentListView):
|
|
extra_context = {
|
|
'title': _('Documents checked out'),
|
|
'hide_links': True,
|
|
'extra_columns': (
|
|
{
|
|
'name': _('User'),
|
|
'attribute': encapsulate(
|
|
lambda document: document.checkout_info().user.get_full_name() or document.checkout_info().user
|
|
)
|
|
},
|
|
{
|
|
'name': _('Checkout time and date'),
|
|
'attribute': encapsulate(
|
|
lambda document: document.checkout_info().checkout_datetime
|
|
)
|
|
},
|
|
{
|
|
'name': _('Checkout expiration'),
|
|
'attribute': encapsulate(
|
|
lambda document: document.checkout_info().expiration_datetime
|
|
)
|
|
},
|
|
),
|
|
}
|
|
|
|
def get_document_queryset(self):
|
|
return DocumentCheckout.on_organization.checked_out_documents()
|
|
|
|
|
|
class CheckoutDetailView(SingleObjectDetailView):
|
|
form_class = DocumentCheckoutDefailForm
|
|
object_permission = permission_document_checkout_detail_view
|
|
|
|
def get_extra_context(self):
|
|
return {
|
|
'object': self.get_object(),
|
|
'title': _(
|
|
'Check out details for document: %s'
|
|
) % self.get_object()
|
|
}
|
|
|
|
def get_object(self):
|
|
return get_object_or_404(Document.on_organization, pk=self.kwargs['pk'])
|
|
|
|
|
|
class DocumentCheckinView(ConfirmView):
|
|
def get_extra_context(self):
|
|
document = self.get_object()
|
|
|
|
context = {
|
|
'object': document,
|
|
}
|
|
|
|
if document.checkout_info().user != self.request.user:
|
|
context['title'] = _(
|
|
'You didn\'t originally checked out this document. '
|
|
'Forcefully check in the document: %s?'
|
|
) % document
|
|
else:
|
|
context['title'] = _('Check in the document: %s?') % document
|
|
|
|
return context
|
|
|
|
def get_object(self):
|
|
return get_object_or_404(Document.on_organization, pk=self.kwargs['pk'])
|
|
|
|
def get_post_action_redirect(self):
|
|
return reverse('checkouts:checkout_info', args=(self.get_object().pk,))
|
|
|
|
def view_action(self):
|
|
document = self.get_object()
|
|
|
|
if document.checkout_info().user == self.request.user:
|
|
try:
|
|
Permission.check_permissions(
|
|
self.request.user, (permission_document_checkin,)
|
|
)
|
|
except PermissionDenied:
|
|
AccessControlList.objects.check_access(
|
|
permission_document_checkin, self.request.user, document
|
|
)
|
|
else:
|
|
try:
|
|
Permission.check_permissions(
|
|
self.request.user, (permission_document_checkin_override,)
|
|
)
|
|
except PermissionDenied:
|
|
AccessControlList.objects.check_access(
|
|
permission_document_checkin_override, self.request.user,
|
|
document
|
|
)
|
|
|
|
try:
|
|
document.check_in(user=self.request.user)
|
|
except DocumentNotCheckedOut:
|
|
messages.error(
|
|
self.request, _('Document has not been checked out.')
|
|
)
|
|
except Exception as exception:
|
|
messages.error(
|
|
self.request,
|
|
_('Error trying to check in document; %s') % exception
|
|
)
|
|
else:
|
|
messages.success(
|
|
self.request,
|
|
_('Document "%s" checked in successfully.') % document
|
|
)
|