plone.app.discussion/plone/app/discussion/comment.py

78 lines
1.8 KiB
Python
Raw Normal View History

"""The default comment class and factory.
"""
import time
from datetime import datetime
from zope.interface import implements
from zope.component.factory import Factory
from Acquisition import Explicit
from OFS.Traversable import Traversable
from AccessControl.Role import RoleManager
from AccessControl.Owned import Owned
from plone.app.discussion.interfaces import IComment
class Comment(Explicit, Traversable, RoleManager, Owned):
"""A comment.
This object attempts to be as lightweight as possible. We implement a
number of standard methods instead of subclassing, to have total control
over what goes into the object.
"""
implements(IComment)
meta_type = portal_type = 'Discussion Item'
__parent__ = None
comment_id = None # int
in_reply_to = None # int
title = u""
mime_type = "text/plain"
text = u""
creator = None
creation_date = None
modification_date = None
author_username = None
author_name = None
author_email = None
def __init__(self, conversation=None, **kw):
self.comment_id = long(time.time() * 1e6)
self.__parent__ = conversation
self.creation_date = self.modification_date = datetime.now()
for k, v in kw.items():
setattr(self, k, v)
@property
def __name__(self):
return unicode(self.comment_id)
@property
def id(self):
return str(self.comment_id)
def getId(self):
"""The id of the comment, as a string
"""
return self.id
def Title(self):
"""The title of the comment
"""
return self.title
def Creator(self):
"""The name of the person who wrote the comment
"""
return self.creator
CommentFactory = Factory(Comment)