Mercurial > libervia-web
comparison libervia/pages/forums/topics/page_meta.py @ 1124:28e3eb3bb217
files reorganisation and installation rework:
- files have been reorganised to follow other SàT projects and usual Python organisation (no more "/src" directory)
- VERSION file is now used, as for other SàT projects
- replace the overcomplicated setup.py be a more sane one. Pyjamas part is not compiled anymore by setup.py, it must be done separatly
- removed check for data_dir if it's empty
- installation tested working in virtual env
- libervia launching script is now in bin/libervia
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 25 Aug 2018 17:59:48 +0200 |
parents | src/pages/forums/topics/page_meta.py@cdd389ef97bc |
children | 29eb15062416 |
comparison
equal
deleted
inserted
replaced
1123:63a4b8fe9782 | 1124:28e3eb3bb217 |
---|---|
1 #!/usr/bin/env python2.7 | |
2 # -*- coding: utf-8 -*- | |
3 | |
4 from libervia.server.constants import Const as C | |
5 from twisted.internet import defer | |
6 from sat.core.i18n import _ | |
7 from sat.core.log import getLogger | |
8 from sat.tools.common import uri as xmpp_uri | |
9 | |
10 log = getLogger("pages/forums/topics") | |
11 | |
12 name = u"forum_topics" | |
13 access = C.PAGES_ACCESS_PUBLIC | |
14 template = u"forum/view_topics.html" | |
15 | |
16 | |
17 def parse_url(self, request): | |
18 self.getPathArgs(request, ["service", "node"], 2, service=u"jid") | |
19 | |
20 | |
21 @defer.inlineCallbacks | |
22 def prepare_render(self, request): | |
23 profile = self.getProfile(request) or C.SERVICE_PROFILE | |
24 data = self.getRData(request) | |
25 service, node = data[u"service"], data[u"node"] | |
26 request.template_data.update({u"service": service, u"node": node}) | |
27 template_data = request.template_data | |
28 topics, metadata = yield self.host.bridgeCall( | |
29 u"forumTopicsGet", service.full(), node, {}, profile | |
30 ) | |
31 template_data[u"identities"] = identities = {} | |
32 for topic in topics: | |
33 parsed_uri = xmpp_uri.parseXMPPUri(topic[u"uri"]) | |
34 author = topic[u"author"] | |
35 topic[u"http_uri"] = self.getPageByName(u"forum_view").getURL( | |
36 parsed_uri[u"path"], parsed_uri[u"node"] | |
37 ) | |
38 if author not in identities: | |
39 identities[topic[u"author"]] = yield self.host.bridgeCall( | |
40 u"identityGet", author, profile | |
41 ) | |
42 template_data[u"topics"] = topics | |
43 | |
44 | |
45 @defer.inlineCallbacks | |
46 def on_data_post(self, request): | |
47 profile = self.getProfile(request) | |
48 if profile is None: | |
49 self.pageError(request, C.HTTP_UNAUTHORIZED) | |
50 type_ = self.getPostedData(request, u"type") | |
51 if type_ == u"new_topic": | |
52 service, node, title, body = self.getPostedData( | |
53 request, (u"service", u"node", u"title", u"body") | |
54 ) | |
55 | |
56 if not title or not body: | |
57 self.pageError(request, C.HTTP_BAD_REQUEST) | |
58 topic_data = {u"title": title, u"content": body} | |
59 try: | |
60 yield self.host.bridgeCall( | |
61 u"forumTopicCreate", service, node, topic_data, profile | |
62 ) | |
63 except Exception as e: | |
64 if u"forbidden" in unicode(e): | |
65 self.pageError(request, 401) | |
66 else: | |
67 raise e | |
68 else: | |
69 log.warning(_(u"Unhandled data type: {}").format(type_)) |