Skip to content
Snippets Groups Projects
entities.py 3.65 KiB
Newer Older
Nicolas Chauvat's avatar
Nicolas Chauvat committed
"""entity classes for Blog entities

:organization: Logilab
sylvain thenault's avatar
sylvain thenault committed
:copyright: 2003-2009 LOGILAB S.A. (Paris, FRANCE)
Nicolas Chauvat's avatar
Nicolas Chauvat committed
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
Nicolas Chauvat's avatar
Nicolas Chauvat committed
:license: Lesser General Public License version 2 or above - http://www.gnu.org/
Nicolas Chauvat's avatar
Nicolas Chauvat committed
"""
__docformat__ = "restructuredtext en"

Sylvain Thénault's avatar
Sylvain Thénault committed
from logilab.common.date import todate

Nicolas Chauvat's avatar
Nicolas Chauvat committed
from cubicweb.entities import AnyEntity, fetch_config
from cubicweb.interfaces import (ICalendarViews, ICalendarable,


class Blog(AnyEntity):
    """customized class for Blog entities"""

Sandrine Ribeau's avatar
Sandrine Ribeau committed
    __regid__ = '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'
Sylvain Thénault's avatar
Sylvain Thénault committed
               )
Sandrine Ribeau's avatar
Sandrine Ribeau committed
        return self._cw.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

Nicolas Chauvat's avatar
Nicolas Chauvat committed

class BlogEntry(AnyEntity):
    """customized class for BlogEntry entities"""
Sandrine Ribeau's avatar
Sandrine Ribeau committed
    __regid__ = 'BlogEntry'
Nicolas Chauvat's avatar
Nicolas Chauvat committed
    fetch_attrs, fetch_order = fetch_config(['creation_date', 'title'], order='DESC')
    __implements__ = AnyEntity.__implements__ + (
        ICalendarViews, ICalendarable, ISiocItem, IPrevNext)
Nicolas Chauvat's avatar
Nicolas Chauvat committed

    def dc_title(self):
        return self.title

    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 ######################################################

Nicolas Chauvat's avatar
Nicolas Chauvat committed
    @property
    def start(self):
        return self.creation_date

    @property
    def stop(self):
        return self.creation_date
Nicolas Chauvat's avatar
Nicolas Chauvat committed
    def matching_dates(self, begin, end):
        """calendar views interface"""
        mydate = self.creation_date
        if not mydate:
            return []
        mydate = todate(mydate)
        if begin < mydate < end:
Nicolas Chauvat's avatar
Nicolas Chauvat committed
            return [mydate]
        return []

    def postinfo_description(self):
Sandrine Ribeau's avatar
Sandrine Ribeau committed
        _ = self._cw._
Sandrine Ribeau's avatar
Sandrine Ribeau committed
        descr = u'%s %s' % (_('posted on'), self._cw.format_date(self.creation_date))
Nicolas Chauvat's avatar
Nicolas Chauvat committed
        return descr

    # isioc interface ##########################################################

        return self.parent()

    def isioc_type(self):
        return 'BlogPost'
    def isioc_replies(self):
        # XXX link to comments
        return []
        # XXX link to tags, folders?

    # IPrevNext interface #####################################################
            rql = ('Any B ORDERBY B %s LIMIT 1 '
                   'WHERE B is BlogEntry, B entry_of BL, BL eid %%(blog)s, '
                   'B eid %s %%(eid)s')
Sandrine Ribeau's avatar
Sandrine Ribeau committed
            rset = self._cw.execute(rql % (order, operator),
            rql = ('Any B ORDERBY B %s LIMIT 1 '
                   'WHERE B is BlogEntry, B eid %s %%(eid)s')
Sandrine Ribeau's avatar
Sandrine Ribeau committed
            rset = self._cw.execute(rql % (order, operator), {'eid': self.eid})
    def next_entity(self):
        return self._sibling_entry('ASC', '>')