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