comparison libervia/pages/tickets/view/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/tickets/view/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 sat.core.i18n import _
6 from libervia.server.utils import SubPage
7 from libervia.server import session_iface
8 from twisted.internet import defer
9 from twisted.words.protocols.jabber import jid
10 from sat.tools.common import template_xmlui
11 from sat.tools.common import uri
12 from sat.tools.common import data_objects
13 from sat.core.log import getLogger
14
15 log = getLogger("pages/tickets/view")
16 """ticket handling pages"""
17
18 name = u"tickets_view"
19 access = C.PAGES_ACCESS_PUBLIC
20 template = u"ticket/item.html"
21
22
23 def parse_url(self, request):
24 try:
25 item_id = self.nextPath(request)
26 except IndexError:
27 log.warning(_(u"no ticket id specified"))
28 self.pageError(request, C.HTTP_BAD_REQUEST)
29
30 data = self.getRData(request)
31 data[u"ticket_id"] = item_id
32
33
34 @defer.inlineCallbacks
35 def prepare_render(self, request):
36 data = self.getRData(request)
37 template_data = request.template_data
38 session = self.host.getSessionData(request, session_iface.ISATSession)
39 service, node, ticket_id = (
40 data.get(u"service", u""),
41 data.get(u"node", u""),
42 data[u"ticket_id"],
43 )
44 profile = self.getProfile(request)
45
46 if profile is None:
47 profile = C.SERVICE_PROFILE
48
49 tickets = yield self.host.bridgeCall(
50 "ticketsGet",
51 service.full() if service else u"",
52 node,
53 C.NO_LIMIT,
54 [ticket_id],
55 "",
56 {"labels_as_list": C.BOOL_TRUE},
57 profile,
58 )
59 ticket = [template_xmlui.create(self.host, x) for x in tickets[0]][0]
60 template_data[u"item"] = ticket
61 comments_uri = ticket.widgets["comments_uri"].value
62 if comments_uri:
63 uri_data = uri.parseXMPPUri(comments_uri)
64 template_data["comments_node"] = comments_node = uri_data["node"]
65 template_data["comments_service"] = comments_service = uri_data["path"]
66 comments = yield self.host.bridgeCall(
67 "mbGet", comments_service, comments_node, C.NO_LIMIT, [], {}, profile
68 )
69
70 template_data[u"comments"] = data_objects.BlogItems(comments)
71 template_data[u"login_url"] = self.getPageRedirectURL(request)
72
73 if session.connected:
74 # we set edition URL only if user is the publisher or the node owner
75 publisher = jid.JID(ticket.widgets["publisher"].value)
76 is_publisher = publisher.userhostJID() == session.jid.userhostJID()
77 affiliation = None
78 if not is_publisher:
79 node = node or self.host.ns_map["tickets"]
80 affiliation = yield self.host.getAffiliation(request, service, node)
81 if is_publisher or affiliation == "owner":
82 template_data[u"url_ticket_edit"] = self.getURLByPath(
83 SubPage("tickets"),
84 service.full(),
85 node or u"@",
86 SubPage("tickets_edit"),
87 ticket_id,
88 )
89
90
91 @defer.inlineCallbacks
92 def on_data_post(self, request):
93 type_ = self.getPostedData(request, u"type")
94 if type_ == u"comment":
95 blog_page = self.getPageByName(u"blog_view")
96 yield blog_page.on_data_post(self, request)
97 else:
98 log.warning(_(u"Unhandled data type: {}").format(type_))