Mercurial > libervia-web
annotate libervia_server/blog.py @ 331:06a48d805547
server side: make Libervia a Twisted plugin, and add it the --port argument + add a config file for the port.
==> NOTE from Goffi: it's a fixed version of Link Mauve's patch c144b603fb93
Fixes bug 16.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Tue, 04 Feb 2014 17:09:00 +0100 |
parents | server_side/blog.py@bbadd490e63c |
children | 2067d6241927 |
rev | line source |
---|---|
10 | 1 #!/usr/bin/python |
2 # -*- coding: utf-8 -*- | |
3 | |
4 """ | |
5 Libervia: a Salut à Toi frontend | |
165 | 6 Copyright (C) 2011, 2012, 2013 Jérôme Poisson <goffi@goffi.org> |
10 | 7 |
8 This program is free software: you can redistribute it and/or modify | |
9 it under the terms of the GNU Affero General Public License as published by | |
10 the Free Software Foundation, either version 3 of the License, or | |
11 (at your option) any later version. | |
12 | |
13 This program is distributed in the hope that it will be useful, | |
14 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 GNU Affero General Public License for more details. | |
17 | |
18 You should have received a copy of the GNU Affero General Public License | |
19 along with this program. If not, see <http://www.gnu.org/licenses/>. | |
20 """ | |
21 | |
306
52b1afd7ac3f
server_side: display rich text in blogs (addURLToText is now in sat_frontends/tools/strings)
souliane <souliane@mailoo.org>
parents:
243
diff
changeset
|
22 from sat_frontends.tools.strings import addURLToText |
331
06a48d805547
server side: make Libervia a Twisted plugin, and add it the --port argument + add a config file for the port.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
317
diff
changeset
|
23 from libervia_server.html_tools import sanitizeHtml |
10 | 24 from twisted.internet import reactor, defer |
25 from twisted.web import server | |
26 from twisted.web.resource import Resource | |
27 from twisted.words.protocols.jabber.jid import JID | |
28 from datetime import datetime | |
317
bbadd490e63c
misc: gather the constants in a single file, as it is done for other frontends
souliane <souliane@mailoo.org>
parents:
306
diff
changeset
|
29 from constants import Const |
229
e632f77c4219
bridge: asyncGetParamA takes a security_limit argument
souliane <souliane@mailoo.org>
parents:
228
diff
changeset
|
30 |
e632f77c4219
bridge: asyncGetParamA takes a security_limit argument
souliane <souliane@mailoo.org>
parents:
228
diff
changeset
|
31 |
10 | 32 class MicroBlog(Resource): |
33 isLeaf = True | |
34 | |
35 ERROR_TEMPLATE = """ | |
36 <html> | |
37 <head> | |
38 <title>MICROBLOG ERROR</title> | |
39 </head> | |
40 <body> | |
41 <h1 style='text-align: center; color: red;'>%s</h1> | |
42 </body> | |
43 </html> | |
44 """ | |
45 | |
243
63e9b680d3e7
browser_side, blog: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
229
diff
changeset
|
46 def __init__(self, host): |
10 | 47 self.host = host |
48 Resource.__init__(self) | |
243
63e9b680d3e7
browser_side, blog: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
229
diff
changeset
|
49 if not host.bridge.isConnected("libervia"): # FIXME: hard coded value for test |
10 | 50 host.bridge.connect("libervia") |
51 | |
52 def render_GET(self, request): | |
53 if not request.postpath: | |
54 return MicroBlog.ERROR_TEMPLATE % "You must indicate a nickname" | |
55 else: | |
56 prof_requested = request.postpath[0] | |
57 #TODO: char check: only use alphanumerical chars + some extra(_,-,...) here | |
58 prof_found = self.host.bridge.getProfileName(prof_requested) | |
243
63e9b680d3e7
browser_side, blog: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
229
diff
changeset
|
59 if not prof_found or prof_found == 'libervia': |
10 | 60 return MicroBlog.ERROR_TEMPLATE % "Invalid nickname" |
61 else: | |
149
f78761e1be8e
server side: fixed public microblog
Goffi <goffi@goffi.org>
parents:
131
diff
changeset
|
62 def got_jid(pub_jid_s): |
f78761e1be8e
server side: fixed public microblog
Goffi <goffi@goffi.org>
parents:
131
diff
changeset
|
63 pub_jid = JID(pub_jid_s) |
f78761e1be8e
server side: fixed public microblog
Goffi <goffi@goffi.org>
parents:
131
diff
changeset
|
64 d2 = defer.Deferred() |
f78761e1be8e
server side: fixed public microblog
Goffi <goffi@goffi.org>
parents:
131
diff
changeset
|
65 d2.addCallbacks(self.render_html_blog, self.render_error_blog, [request, prof_found], None, [request, prof_found], None) |
f78761e1be8e
server side: fixed public microblog
Goffi <goffi@goffi.org>
parents:
131
diff
changeset
|
66 self.host.bridge.getLastGroupBlogs(pub_jid.userhost(), 10, 'libervia', d2.callback, d2.errback) |
229
e632f77c4219
bridge: asyncGetParamA takes a security_limit argument
souliane <souliane@mailoo.org>
parents:
228
diff
changeset
|
67 |
149
f78761e1be8e
server side: fixed public microblog
Goffi <goffi@goffi.org>
parents:
131
diff
changeset
|
68 d1 = defer.Deferred() |
317
bbadd490e63c
misc: gather the constants in a single file, as it is done for other frontends
souliane <souliane@mailoo.org>
parents:
306
diff
changeset
|
69 JID(self.host.bridge.asyncGetParamA('JabberID', 'Connection', 'value', Const.SERVER_SECURITY_LIMIT, prof_found, callback=d1.callback, errback=d1.errback)) |
149
f78761e1be8e
server side: fixed public microblog
Goffi <goffi@goffi.org>
parents:
131
diff
changeset
|
70 d1.addCallbacks(got_jid) |
10 | 71 |
72 return server.NOT_DONE_YET | |
73 | |
74 def render_html_blog(self, mblog_data, request, profile): | |
75 user = sanitizeHtml(profile).encode('utf-8') | |
76 request.write(""" | |
77 <html> | |
78 <head> | |
175
764ca916e56e
browser side: fixed charset in public blog page
Goffi <goffi@goffi.org>
parents:
165
diff
changeset
|
79 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
10 | 80 <link rel="stylesheet" type="text/css" href="../css/blog.css" /> |
81 <title>%(user)s's microblog</title> | |
82 </head> | |
83 <body> | |
84 <div class='mblog_title'>%(user)s</div> | |
243
63e9b680d3e7
browser_side, blog: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
229
diff
changeset
|
85 """ % {'user': user}) |
176
b9edfa058786
server side: fixed public blog items order
Goffi <goffi@goffi.org>
parents:
175
diff
changeset
|
86 #mblog_data.reverse() |
10 | 87 for entry in mblog_data: |
243
63e9b680d3e7
browser_side, blog: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
229
diff
changeset
|
88 timestamp = float(entry.get('timestamp', 0)) |
10 | 89 _datetime = datetime.fromtimestamp(timestamp) |
306
52b1afd7ac3f
server_side: display rich text in blogs (addURLToText is now in sat_frontends/tools/strings)
souliane <souliane@mailoo.org>
parents:
243
diff
changeset
|
90 body = addURLToText(sanitizeHtml(entry['content'])).encode('utf-8') if 'xhtml' not in entry else entry['xhtml'].encode() |
228
6efd189e8d78
server_side: put the blog entry content in its own span + CSS customization
souliane <souliane@mailoo.org>
parents:
176
diff
changeset
|
91 request.write("""<div class='mblog_entry'><span class='mblog_timestamp'>%(date)s</span> |
6efd189e8d78
server_side: put the blog entry content in its own span + CSS customization
souliane <souliane@mailoo.org>
parents:
176
diff
changeset
|
92 <span class='mblog_content'>%(content)s</span></div>""" % { |
243
63e9b680d3e7
browser_side, blog: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
229
diff
changeset
|
93 'date': _datetime, |
306
52b1afd7ac3f
server_side: display rich text in blogs (addURLToText is now in sat_frontends/tools/strings)
souliane <souliane@mailoo.org>
parents:
243
diff
changeset
|
94 'content': body}) |
10 | 95 request.write('</body></html>') |
96 request.finish() | |
243
63e9b680d3e7
browser_side, blog: better PEP8 compliance
souliane <souliane@mailoo.org>
parents:
229
diff
changeset
|
97 |
12
513fe9bd0665
server: fixed wrong parameter number in blog resource
Goffi <goffi@goffi.org>
parents:
10
diff
changeset
|
98 def render_error_blog(self, error, request, profile): |
10 | 99 request.write(MicroBlog.ERROR_TEMPLATE % "Can't access requested data") |
100 request.finish() |