1 | ## $Id: objecthistory.py 7690 2012-02-23 15:41:42Z henrik $ |
---|
2 | ## |
---|
3 | ## Copyright (C) 2011 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 | import grok |
---|
19 | from datetime import datetime |
---|
20 | from persistent.list import PersistentList |
---|
21 | from zope.component import getUtility |
---|
22 | from zope.i18n import translate |
---|
23 | from zope.annotation.interfaces import IAnnotations |
---|
24 | from waeup.sirp.interfaces import IObjectHistory, ISIRPObject, ISIRPUtils |
---|
25 | from waeup.sirp.utils.helpers import get_current_principal |
---|
26 | |
---|
27 | from waeup.sirp.interfaces import MessageFactory as _ |
---|
28 | |
---|
29 | class ObjectHistory(grok.Adapter): |
---|
30 | """A history for objects. |
---|
31 | |
---|
32 | For any object implementing `ISIRPObject` which is annotatable, |
---|
33 | we provide histories. A history for such an object can be obtained |
---|
34 | by adapting it to `IObjectHistory`. |
---|
35 | """ |
---|
36 | grok.context(ISIRPObject) |
---|
37 | grok.implements(IObjectHistory) |
---|
38 | |
---|
39 | history_key = 'waeup.history' |
---|
40 | |
---|
41 | def __init__(self, context): |
---|
42 | from zope.security.proxy import removeSecurityProxy |
---|
43 | self.context = removeSecurityProxy(context) |
---|
44 | self._annotations = IAnnotations(self.context) |
---|
45 | |
---|
46 | def _getMessages(self): |
---|
47 | return self._annotations.get(self.history_key, PersistentList()) |
---|
48 | |
---|
49 | @property |
---|
50 | def messages(self): |
---|
51 | """Get all messages as a persistent list of strings. |
---|
52 | """ |
---|
53 | return self._getMessages() |
---|
54 | |
---|
55 | def addMessage(self, msg): |
---|
56 | """Add the message (history entry) in msg. |
---|
57 | |
---|
58 | Any message will be stored with a timestamp and the current |
---|
59 | user (principal). |
---|
60 | """ |
---|
61 | msgs = self._getMessages() |
---|
62 | timestamp = datetime.now().strftime("%Y-%m-%d %H:%M:%S") |
---|
63 | user = get_current_principal() |
---|
64 | if user is None: |
---|
65 | user = 'system' |
---|
66 | elif user.id == 'zope.anybody': |
---|
67 | user = 'Anonymous' |
---|
68 | else: |
---|
69 | user = user.title |
---|
70 | portal_language = getUtility(ISIRPUtils).PORTAL_LANGUAGE |
---|
71 | by = 'by' |
---|
72 | if portal_language != 'en': |
---|
73 | by = translate(_('by'),'waeup.sirp',target_language=portal_language) |
---|
74 | msg = translate(msg,'waeup.sirp',target_language=portal_language) |
---|
75 | msg = u'%s - %s %s %s' % (timestamp, msg, by, user) |
---|
76 | msgs.append(msg) |
---|
77 | self._annotations[self.history_key] = msgs |
---|
78 | return |
---|