[12004] | 1 | ## $Id: document.py 12126 2014-12-03 18:06:27Z henrik $ |
---|
[11982] | 2 | ## |
---|
| 3 | ## Copyright (C) 2014 Uli Fouquet & Henrik Bettermann |
---|
| 4 | ## This program is free software; you can redistribute it and/or modify |
---|
| 5 | ## it under the terms of the GNU General Public License as published by |
---|
| 6 | ## the Free Software Foundation; either version 2 of the License, or |
---|
| 7 | ## (at your option) any later version. |
---|
| 8 | ## |
---|
| 9 | ## This program is distributed in the hope that it will be useful, |
---|
| 10 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 11 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 12 | ## GNU General Public License for more details. |
---|
| 13 | ## |
---|
| 14 | ## You should have received a copy of the GNU General Public License |
---|
| 15 | ## along with this program; if not, write to the Free Software |
---|
| 16 | ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
| 17 | ## |
---|
| 18 | """ |
---|
| 19 | These are the document tickets. |
---|
| 20 | """ |
---|
| 21 | import grok |
---|
[11990] | 22 | from time import time |
---|
[11982] | 23 | from grok import index |
---|
| 24 | from hurry.workflow.interfaces import IWorkflowInfo, IWorkflowState |
---|
| 25 | from zope.event import notify |
---|
| 26 | from zope.component import getUtility |
---|
| 27 | from zope.component.interfaces import IFactory |
---|
| 28 | from zope.interface import implementedBy |
---|
| 29 | from zope.i18n import translate |
---|
[11983] | 30 | from waeup.ikoba.interfaces import IIkobaUtils, IObjectHistory |
---|
[11982] | 31 | from waeup.ikoba.interfaces import MessageFactory as _ |
---|
| 32 | from waeup.ikoba.utils.helpers import attrs_to_fields, get_current_principal |
---|
[12032] | 33 | from waeup.ikoba.documents.interfaces import ( |
---|
| 34 | IDocument, IDocument, IDocumentsUtils) |
---|
[12005] | 35 | from waeup.ikoba.documents.utils import generate_document_id |
---|
[11982] | 36 | |
---|
[12063] | 37 | class Document(grok.Container): |
---|
[11982] | 38 | """This is a document. |
---|
| 39 | """ |
---|
| 40 | grok.implements(IDocument) |
---|
| 41 | grok.provides(IDocument) |
---|
| 42 | grok.baseclass() |
---|
| 43 | |
---|
[12126] | 44 | user_id = None |
---|
| 45 | |
---|
[11982] | 46 | def __init__(self): |
---|
| 47 | super(Document, self).__init__() |
---|
[12005] | 48 | # The site doesn't exist in unit tests |
---|
| 49 | try: |
---|
| 50 | self.document_id = generate_document_id() |
---|
| 51 | except AttributeError: |
---|
| 52 | self.document_id = u'd123' |
---|
[11982] | 53 | return |
---|
| 54 | |
---|
[11983] | 55 | @property |
---|
| 56 | def history(self): |
---|
| 57 | history = IObjectHistory(self) |
---|
| 58 | return history |
---|
| 59 | |
---|
[12017] | 60 | @property |
---|
| 61 | def state(self): |
---|
| 62 | state = IWorkflowState(self).getState() |
---|
| 63 | return state |
---|
| 64 | |
---|
[12032] | 65 | @property |
---|
| 66 | def translated_state(self): |
---|
| 67 | try: |
---|
[12087] | 68 | TRANSLATED_STATES = getUtility( |
---|
| 69 | IDocumentsUtils).TRANSLATED_DOCUMENT_STATES |
---|
[12053] | 70 | return TRANSLATED_STATES[self.state] |
---|
[12032] | 71 | except KeyError: |
---|
| 72 | return |
---|
| 73 | |
---|
[12053] | 74 | @property |
---|
[12056] | 75 | def class_name(self): |
---|
[12053] | 76 | return self.__class__.__name__ |
---|
| 77 | |
---|
| 78 | @property |
---|
| 79 | def formatted_transition_date(self): |
---|
| 80 | try: |
---|
| 81 | return self.last_transition_date.strftime('%Y-%m-%d %H:%M:%S') |
---|
| 82 | except AttributeError: |
---|
| 83 | return |
---|
| 84 | |
---|
| 85 | |
---|
[11982] | 86 | Document = attrs_to_fields(Document) |
---|
| 87 | |
---|
| 88 | class DocumentFactory(grok.GlobalUtility): |
---|
| 89 | """A factory for documents. |
---|
| 90 | """ |
---|
| 91 | grok.implements(IFactory) |
---|
| 92 | grok.name(u'waeup.Document') |
---|
| 93 | title = u"Create a new document.", |
---|
| 94 | description = u"This factory instantiates new documents." |
---|
| 95 | |
---|
| 96 | def __call__(self, *args, **kw): |
---|
| 97 | return Document(*args, **kw) |
---|
| 98 | |
---|
| 99 | def getInterfaces(self): |
---|
| 100 | return implementedBy(Document) |
---|
| 101 | |
---|
| 102 | @grok.subscribe(IDocument, grok.IObjectAddedEvent) |
---|
| 103 | def handle_document_added(document, event): |
---|
| 104 | """If a document is added the transition create is fired. |
---|
| 105 | The latter produces a logging message. |
---|
| 106 | """ |
---|
| 107 | if IWorkflowState(document).getState() is None: |
---|
| 108 | IWorkflowInfo(document).fireTransition('create') |
---|
| 109 | return |
---|