annotate src/pages/common/blog/atom.xml/page_meta.py @ 1017:8e7897b1008a

pages (blog/atom.xml, u/atom.xml): Atom feed implementation: - Content-Type is set to suitable value - common/blog is used, comments are disabled - request_uri, http_uri and xmpp_uri are set in template data - "updated" variable in template date is set with the "updated" value of first item (i.e. the most recent one), or to current time if there is not item yet. - u/atom.xml us a simple redirection to blog/atom.xml
author Goffi <goffi@goffi.org>
date Fri, 19 Jan 2018 18:14:28 +0100
parents
children 6dc90f109e57
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1017
8e7897b1008a pages (blog/atom.xml, u/atom.xml): Atom feed implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
1 #!/usr/bin/env python2.7
8e7897b1008a pages (blog/atom.xml, u/atom.xml): Atom feed implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
2 # -*- coding: utf-8 -*-
8e7897b1008a pages (blog/atom.xml, u/atom.xml): Atom feed implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
3
8e7897b1008a pages (blog/atom.xml, u/atom.xml): Atom feed implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
4 from libervia.server.constants import Const as C
8e7897b1008a pages (blog/atom.xml, u/atom.xml): Atom feed implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
5 from twisted.internet import defer
8e7897b1008a pages (blog/atom.xml, u/atom.xml): Atom feed implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
6 from sat.tools.common import uri
8e7897b1008a pages (blog/atom.xml, u/atom.xml): Atom feed implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
7 import time
8e7897b1008a pages (blog/atom.xml, u/atom.xml): Atom feed implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
8
8e7897b1008a pages (blog/atom.xml, u/atom.xml): Atom feed implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
9 name = u"blog_feed_atom"
8e7897b1008a pages (blog/atom.xml, u/atom.xml): Atom feed implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
10 access = C.PAGES_ACCESS_PUBLIC
8e7897b1008a pages (blog/atom.xml, u/atom.xml): Atom feed implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
11 template = u"blog/atom.xml"
8e7897b1008a pages (blog/atom.xml, u/atom.xml): Atom feed implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
12
8e7897b1008a pages (blog/atom.xml, u/atom.xml): Atom feed implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
13
8e7897b1008a pages (blog/atom.xml, u/atom.xml): Atom feed implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
14 @defer.inlineCallbacks
8e7897b1008a pages (blog/atom.xml, u/atom.xml): Atom feed implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
15 def prepare_render(self, request):
8e7897b1008a pages (blog/atom.xml, u/atom.xml): Atom feed implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
16 request.setHeader('Content-Type', 'application/atom+xml; charset=utf-8')
8e7897b1008a pages (blog/atom.xml, u/atom.xml): Atom feed implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
17 template_data = request.template_data
8e7897b1008a pages (blog/atom.xml, u/atom.xml): Atom feed implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
18 data = self.getRData(request)
8e7897b1008a pages (blog/atom.xml, u/atom.xml): Atom feed implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
19 data['show_comments'] = False
8e7897b1008a pages (blog/atom.xml, u/atom.xml): Atom feed implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
20 service, node = data[u'service'], data.get(u'node')
8e7897b1008a pages (blog/atom.xml, u/atom.xml): Atom feed implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
21 blog_page = self.getPageByName(u'blog')
8e7897b1008a pages (blog/atom.xml, u/atom.xml): Atom feed implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
22 yield blog_page.prepare_render(self, request)
8e7897b1008a pages (blog/atom.xml, u/atom.xml): Atom feed implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
23 items = data[u'items']
8e7897b1008a pages (blog/atom.xml, u/atom.xml): Atom feed implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
24
8e7897b1008a pages (blog/atom.xml, u/atom.xml): Atom feed implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
25 template_data[u'request_uri'] = self.host.getExtBaseURL(request, request.uri.decode('utf-8'))
8e7897b1008a pages (blog/atom.xml, u/atom.xml): Atom feed implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
26 template_data[u'xmpp_uri'] = uri.buildXMPPUri(u'pubsub',
8e7897b1008a pages (blog/atom.xml, u/atom.xml): Atom feed implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
27 subtype=u'microblog',
8e7897b1008a pages (blog/atom.xml, u/atom.xml): Atom feed implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
28 path=service.full(),
8e7897b1008a pages (blog/atom.xml, u/atom.xml): Atom feed implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
29 node=node)
8e7897b1008a pages (blog/atom.xml, u/atom.xml): Atom feed implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
30 blog_view = self.getPageByName(u'blog_view')
8e7897b1008a pages (blog/atom.xml, u/atom.xml): Atom feed implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
31 template_data[u'http_uri'] = self.host.getExtBaseURL(request, blog_view.getURL(service.full(), node))
8e7897b1008a pages (blog/atom.xml, u/atom.xml): Atom feed implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
32 if items:
8e7897b1008a pages (blog/atom.xml, u/atom.xml): Atom feed implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
33 template_data[u'updated'] = items[0].updated
8e7897b1008a pages (blog/atom.xml, u/atom.xml): Atom feed implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
34 else:
8e7897b1008a pages (blog/atom.xml, u/atom.xml): Atom feed implementation:
Goffi <goffi@goffi.org>
parents:
diff changeset
35 template_data[u'updated'] = time.time()