Newer
Older
"""entity classes for Blog entities
:organization: Logilab
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:license: Lesser General Public License version 2 or above - http://www.gnu.org/
from cubicweb.utils import todate
from cubicweb.entities import AnyEntity, fetch_config
from cubicweb.interfaces import (ICalendarViews, ICalendarable,
Sandrine Ribeau
committed
ISiocItem, ISiocContainer, IPrevNext)
class Blog(AnyEntity):
"""customized class for Blog entities"""
id = 'Blog'
__implements__ = AnyEntity.__implements__ + (ISiocContainer,)
def rss_feed_url(self):
if self.rss_url:
return self.rss_url
rql = ('Any E ORDERBY D DESC '
'WHERE E is BlogEntry, E entry_of X, X eid %s, E creation_date D'
return self.build_url(rql=rql % self.eid, vid='rss',
vtitle=self.dc_title())
# isioc interface ##########################################################
def isioc_type(self):
return 'Weblog'
def isioc_items(self):
return self.reverse_entry_of
class BlogEntry(AnyEntity):
"""customized class for BlogEntry entities"""
id = 'BlogEntry'
fetch_attrs, fetch_order = fetch_config(['creation_date', 'title'], order='DESC')
__implements__ = AnyEntity.__implements__ + (
Sandrine Ribeau
committed
ICalendarViews, ICalendarable, ISiocItem, IPrevNext)
def dc_description(self, format='text/plain'):
return self.printable_value('content', format=format)
def parent(self):
return self.entry_of and self.entry_of[0] or None
# calendar interfaces ######################################################
@property
def start(self):
return self.creation_date
@property
def stop(self):
return self.creation_date
def matching_dates(self, begin, end):
"""calendar views interface"""
mydate = self.creation_date
if not mydate:
return []
mydate = todate(mydate)
if begin < mydate < end:
return [mydate]
return []
def postinfo_description(self):
_ = self.req._
descr = u'%s %s' % (_('posted on'), self.format_date(self.creation_date))
return descr
# isioc interface ##########################################################
Laure Bourgois
committed
def isioc_content(self):
return self.content
Laure Bourgois
committed
def isioc_container(self):
def isioc_type(self):
return 'BlogPost'
def isioc_replies(self):
def isioc_topics(self):
Sandrine Ribeau
committed
# IPrevNext interface #####################################################
def next_entity(self):
rql = ('Any B ORDERBY B ASC LIMIT 1 '
'WHERE B is BlogEntry, B entry_of BL, BL eid %(blog)s, '
'B eid > %(eid)s')
rset = self.req.execute(rql, {'blog': self.entry_of[0].eid, 'eid': self.eid})
if rset:
return rset.get_entity(0,0)
def previous_entity(self):
rql = ('Any B ORDERBY B DESC LIMIT 1 '
'WHERE B is BlogEntry, B entry_of BL, BL eid %(blog)s, '
'B eid < %(eid)s')
rset = self.req.execute(rql, {'blog': self.entry_of[0].eid, 'eid': self.eid})
if rset:
return rset.get_entity(0,0)