1 | ## $Id: document.py 12235 2014-12-14 22:15:37Z henrik $ |
---|
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 os |
---|
22 | import grok |
---|
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 |
---|
30 | |
---|
31 | from waeup.ikoba.image import IkobaImageFile |
---|
32 | from waeup.ikoba.imagestorage import DefaultFileStoreHandler |
---|
33 | from waeup.ikoba.interfaces import ( |
---|
34 | IIkobaUtils, IObjectHistory, |
---|
35 | IFileStoreNameChooser, IFileStoreHandler, IExtFileStore) |
---|
36 | from waeup.ikoba.interfaces import MessageFactory as _ |
---|
37 | from waeup.ikoba.utils.helpers import attrs_to_fields, get_current_principal |
---|
38 | from waeup.ikoba.documents.interfaces import ( |
---|
39 | IDocument, IPublicDocument, IDocumentsUtils, |
---|
40 | IPDFDocument, IHTMLDocument) |
---|
41 | from waeup.ikoba.documents.utils import generate_document_id |
---|
42 | |
---|
43 | class Document(grok.Container): |
---|
44 | """This is a document. |
---|
45 | """ |
---|
46 | grok.implements(IDocument) |
---|
47 | grok.provides(IDocument) |
---|
48 | grok.baseclass() |
---|
49 | |
---|
50 | form_fields_interface = None |
---|
51 | |
---|
52 | local_roles = [ |
---|
53 | 'waeup.local.DocumentManager', |
---|
54 | ] |
---|
55 | |
---|
56 | user_id = None |
---|
57 | state = None |
---|
58 | translated_state = None |
---|
59 | translated_class_name = None |
---|
60 | |
---|
61 | def __init__(self): |
---|
62 | super(Document, self).__init__() |
---|
63 | # The site doesn't exist in unit tests |
---|
64 | try: |
---|
65 | self.document_id = generate_document_id() |
---|
66 | except AttributeError: |
---|
67 | self.document_id = u'd123' |
---|
68 | return |
---|
69 | |
---|
70 | @property |
---|
71 | def history(self): |
---|
72 | history = IObjectHistory(self) |
---|
73 | return history |
---|
74 | |
---|
75 | @property |
---|
76 | def class_name(self): |
---|
77 | return self.__class__.__name__ |
---|
78 | |
---|
79 | @property |
---|
80 | def formatted_transition_date(self): |
---|
81 | try: |
---|
82 | return self.history.messages[-1].split(' - ')[0] |
---|
83 | except IndexError: |
---|
84 | return |
---|
85 | |
---|
86 | @property |
---|
87 | def connected_files(self): |
---|
88 | return |
---|
89 | |
---|
90 | @property |
---|
91 | def is_verifiable(self): |
---|
92 | return True, None |
---|
93 | |
---|
94 | def setMD5(self): |
---|
95 | """Determine md5 checksum of all files and store checksums as |
---|
96 | document attributes. |
---|
97 | """ |
---|
98 | return |
---|
99 | |
---|
100 | class PublicDocumentBase(Document): |
---|
101 | """This is a customer document baseclass. |
---|
102 | """ |
---|
103 | grok.implements(IPublicDocument) |
---|
104 | grok.provides(IPublicDocument) |
---|
105 | grok.baseclass() |
---|
106 | |
---|
107 | @property |
---|
108 | def state(self): |
---|
109 | state = IWorkflowState(self).getState() |
---|
110 | return state |
---|
111 | |
---|
112 | @property |
---|
113 | def translated_state(self): |
---|
114 | try: |
---|
115 | TRANSLATED_STATES = getUtility( |
---|
116 | IDocumentsUtils).TRANSLATED_DOCUMENT_STATES |
---|
117 | return TRANSLATED_STATES[self.state] |
---|
118 | except KeyError: |
---|
119 | return |
---|
120 | |
---|
121 | @property |
---|
122 | def translated_class_name(self): |
---|
123 | try: |
---|
124 | DOCTYPES_DICT = getUtility(IDocumentsUtils).DOCTYPES_DICT |
---|
125 | return DOCTYPES_DICT[self.class_name] |
---|
126 | except KeyError: |
---|
127 | return |
---|
128 | |
---|
129 | def writeLogMessage(self, view, message): |
---|
130 | ob_class = view.__implemented__.__name__.replace('waeup.ikoba.','') |
---|
131 | self.__parent__.__parent__.logger.info( |
---|
132 | '%s - %s - %s' % (ob_class, self.__name__, message)) |
---|
133 | return |
---|
134 | |
---|
135 | |
---|
136 | class PDFDocument(PublicDocumentBase): |
---|
137 | """This is a document for a single pdf upload file. |
---|
138 | """ |
---|
139 | grok.implements(IPDFDocument) |
---|
140 | grok.provides(IPDFDocument) |
---|
141 | |
---|
142 | form_fields_interface = IPDFDocument |
---|
143 | |
---|
144 | PDFDocument = attrs_to_fields(PDFDocument) |
---|
145 | |
---|
146 | |
---|
147 | class HTMLDocument(PublicDocumentBase): |
---|
148 | """This is a document to render html-coded text. |
---|
149 | """ |
---|
150 | grok.implements(IHTMLDocument) |
---|
151 | grok.provides(IHTMLDocument) |
---|
152 | |
---|
153 | form_fields_interface = IHTMLDocument |
---|
154 | |
---|
155 | def __init__(self, *args, **kw): |
---|
156 | super(HTMLDocument, self).__init__(*args, **kw) |
---|
157 | self.html_dict = {} |
---|
158 | |
---|
159 | HTMLDocument = attrs_to_fields(HTMLDocument) |
---|
160 | |
---|
161 | |
---|
162 | class PDFDocumentFactory(grok.GlobalUtility): |
---|
163 | """A factory for documents. |
---|
164 | """ |
---|
165 | grok.implements(IFactory) |
---|
166 | grok.name(u'waeup.PDFDocument') |
---|
167 | title = u"Create a new PDF document.", |
---|
168 | description = u"This factory instantiates new PDF documents." |
---|
169 | |
---|
170 | def __call__(self, *args, **kw): |
---|
171 | return PDFDocument(*args, **kw) |
---|
172 | |
---|
173 | def getInterfaces(self): |
---|
174 | return implementedBy(PDFDocument) |
---|
175 | |
---|
176 | |
---|
177 | class HTMLDocumentFactory(grok.GlobalUtility): |
---|
178 | """A factory for HTML documents. |
---|
179 | """ |
---|
180 | grok.implements(IFactory) |
---|
181 | grok.name(u'waeup.HTMLDocument') |
---|
182 | title = u"Create a new HTML document.", |
---|
183 | description = u"This factory instantiates new HTML documents." |
---|
184 | |
---|
185 | def __call__(self, *args, **kw): |
---|
186 | return HTMLDocument(*args, **kw) |
---|
187 | |
---|
188 | def getInterfaces(self): |
---|
189 | return implementedBy(HTMLDocument) |
---|
190 | |
---|
191 | #: The file id marker for files |
---|
192 | DOCUMENT_FILE_STORE_NAME = 'file-document' |
---|
193 | |
---|
194 | |
---|
195 | class DocumentFileNameChooser(grok.Adapter): |
---|
196 | """A file id chooser for :class:`Document` objects. |
---|
197 | |
---|
198 | `context` is an :class:`Document` instance. |
---|
199 | |
---|
200 | The delivered file_id contains the file id marker for |
---|
201 | :class:`Document` objects in the central :class:`DocumentsContainer`. |
---|
202 | |
---|
203 | This chooser is registered as an adapter providing |
---|
204 | :class:`waeup.ikoba.interfaces.IFileStoreNameChooser`. |
---|
205 | |
---|
206 | File store name choosers like this one are only convenience |
---|
207 | components to ease the task of creating file ids for customer document |
---|
208 | objects. You are nevertheless encouraged to use them instead of |
---|
209 | manually setting up filenames for customer documents. |
---|
210 | |
---|
211 | .. seealso:: :mod:`waeup.ikoba.imagestorage` |
---|
212 | |
---|
213 | """ |
---|
214 | |
---|
215 | grok.context(IDocument) |
---|
216 | grok.implements(IFileStoreNameChooser) |
---|
217 | |
---|
218 | def checkName(self, name=None, attr=None): |
---|
219 | """Check whether the given name is a valid file id for the context. |
---|
220 | |
---|
221 | Returns ``True`` only if `name` equals the result of |
---|
222 | :meth:`chooseName`. |
---|
223 | |
---|
224 | """ |
---|
225 | return name == self.chooseName() |
---|
226 | |
---|
227 | def chooseName(self, attr, name=None): |
---|
228 | """Get a valid file id for customer document context. |
---|
229 | |
---|
230 | *Example:* |
---|
231 | |
---|
232 | For document with id 'd123' |
---|
233 | with attr ``'nice_image.jpeg'`` stored in |
---|
234 | the documents container this chooser would create: |
---|
235 | |
---|
236 | ``'__file-document__documents/nice_image_d123.jpeg'`` |
---|
237 | |
---|
238 | meaning that the nice image of this document would be |
---|
239 | stored in the site-wide file storage in path: |
---|
240 | |
---|
241 | ``documents/nice_image_d123.jpeg`` |
---|
242 | |
---|
243 | """ |
---|
244 | basename, ext = os.path.splitext(attr) |
---|
245 | doc_id = self.context.document_id |
---|
246 | marked_filename = '__%s__documents/%s_%s%s' % ( |
---|
247 | DOCUMENT_FILE_STORE_NAME, |
---|
248 | basename, doc_id, ext) |
---|
249 | return marked_filename |
---|
250 | |
---|
251 | |
---|
252 | class DocumentFileStoreHandler(DefaultFileStoreHandler, grok.GlobalUtility): |
---|
253 | """ Document specific file handling. |
---|
254 | |
---|
255 | This handler knows in which path in a filestore to store document |
---|
256 | files and how to turn this kind of data into some (browsable) |
---|
257 | file object. |
---|
258 | |
---|
259 | It is called from the global file storage, when it wants to |
---|
260 | get/store a file with a file id starting with |
---|
261 | ``__file-document__`` (the marker string for customer files). |
---|
262 | |
---|
263 | Like each other file store handler it does not handle the files |
---|
264 | really (this is done by the global file store) but only computes |
---|
265 | paths and things like this. |
---|
266 | """ |
---|
267 | grok.implements(IFileStoreHandler) |
---|
268 | grok.name(DOCUMENT_FILE_STORE_NAME) |
---|
269 | |
---|
270 | def pathFromFileID(self, store, root, file_id): |
---|
271 | """All document files are put in directory ``documents``. |
---|
272 | """ |
---|
273 | marker, filename, basename, ext = store.extractMarker(file_id) |
---|
274 | sub_root = os.path.join(root, 'documents') |
---|
275 | return super(DocumentFileStoreHandler, self).pathFromFileID( |
---|
276 | store, sub_root, basename) |
---|
277 | |
---|
278 | def createFile(self, store, root, filename, file_id, file): |
---|
279 | """Create a browsable file-like object. |
---|
280 | """ |
---|
281 | # call super method to ensure that any old files with |
---|
282 | # different filename extension are deleted. |
---|
283 | file, path, file_obj = super( |
---|
284 | DocumentFileStoreHandler, self).createFile( |
---|
285 | store, root, filename, file_id, file) |
---|
286 | return file, path, IkobaImageFile( |
---|
287 | file_obj.filename, file_obj.data) |
---|
288 | |
---|
289 | |
---|
290 | @grok.subscribe(IDocument, grok.IObjectAddedEvent) |
---|
291 | def handle_document_added(document, event): |
---|
292 | """If a document is added the transition create is fired. |
---|
293 | The latter produces a logging message. |
---|
294 | """ |
---|
295 | if IWorkflowState(document).getState() is None: |
---|
296 | IWorkflowInfo(document).fireTransition('create') |
---|
297 | return |
---|