Mercurial > libervia-web
annotate src/pages/tickets/page_meta.py @ 995:f88325b56a6a
server: dynamic pages first draft:
/!\ new dependency: autobahn
This patch introduce server part of dynamic pages.
Dynamic pages use websockets to establish constant connection with a Libervia page, allowing to receive real time data or update it.
The feature is activated by specifying "dynamic = true" in the page.
Once activated, page can implement "on_data" method which will be called when data are sent by the page.
To send data the other way, the page can use request.sendData.
The new "registerSignal" method allows to use an "on_signal" method to be called each time given signal is received, with automatic (and optional) filtering on profile.
New renderPartial and renderAndUpdate method allow to append new HTML elements to the dynamic page.
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 03 Jan 2018 01:10:12 +0100 |
parents | 7fdd24014aa4 |
children | c1c74d97a691 |
rev | line source |
---|---|
967 | 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 twisted.internet import defer | |
7 from twisted.words.protocols.jabber import jid | |
8 from sat.tools.common import template_xmlui | |
9 from sat.tools.common import data_objects | |
10 from sat.core.log import getLogger | |
11 log = getLogger('pages/ticket') | |
12 """ticket handling pages""" | |
13 | |
14 name = u'tickets_list' | |
15 access = C.PAGES_ACCESS_PUBLIC | |
16 template = u"ticket/overview.html" | |
17 | |
18 | |
19 def parse_url(self, request): | |
981
97cce8c1e96a
pages(tickets): better URL handling:
Goffi <goffi@goffi.org>
parents:
978
diff
changeset
|
20 # check the service and node to use |
967 | 21 try: |
22 service = self.nextPath(request) | |
981
97cce8c1e96a
pages(tickets): better URL handling:
Goffi <goffi@goffi.org>
parents:
978
diff
changeset
|
23 node = self.nextPath(request) |
967 | 24 except IndexError: |
981
97cce8c1e96a
pages(tickets): better URL handling:
Goffi <goffi@goffi.org>
parents:
978
diff
changeset
|
25 log.warning(_(u"missing service and node")) |
97cce8c1e96a
pages(tickets): better URL handling:
Goffi <goffi@goffi.org>
parents:
978
diff
changeset
|
26 self.pageError(request, C.HTTP_BAD_REQUEST) |
97cce8c1e96a
pages(tickets): better URL handling:
Goffi <goffi@goffi.org>
parents:
978
diff
changeset
|
27 |
97cce8c1e96a
pages(tickets): better URL handling:
Goffi <goffi@goffi.org>
parents:
978
diff
changeset
|
28 if not service or service == u'@': |
967 | 29 service = u'' |
30 | |
31 if service: | |
32 try: | |
33 service = jid.JID(service) | |
34 except Exception: | |
35 log.warning(_(u"bad service entered: {}").format(service)) | |
36 self.pageError(request, C.HTTP_BAD_REQUEST) | |
37 | |
981
97cce8c1e96a
pages(tickets): better URL handling:
Goffi <goffi@goffi.org>
parents:
978
diff
changeset
|
38 if not node or node == u'@': |
967 | 39 node = u'' |
40 | |
986
7fdd24014aa4
pages(tickets): use new cache mechanism for tickets list
Goffi <goffi@goffi.org>
parents:
981
diff
changeset
|
41 |
7fdd24014aa4
pages(tickets): use new cache mechanism for tickets list
Goffi <goffi@goffi.org>
parents:
981
diff
changeset
|
42 self.checkCache(request, C.CACHE_PUBSUB, service=service, node=node, short='tickets') |
7fdd24014aa4
pages(tickets): use new cache mechanism for tickets list
Goffi <goffi@goffi.org>
parents:
981
diff
changeset
|
43 |
967 | 44 data = self.getRData(request) |
45 data['service'] = service | |
46 data['node'] = node | |
47 | |
973
2e75dc986e03
pages (tickets): URLs for list and new are set in the template for the whole subhierarchy
Goffi <goffi@goffi.org>
parents:
967
diff
changeset
|
48 template_data = request.template_data |
2e75dc986e03
pages (tickets): URLs for list and new are set in the template for the whole subhierarchy
Goffi <goffi@goffi.org>
parents:
967
diff
changeset
|
49 template_data[u'url_tickets_list'] = self.getPageByName('tickets_list').getURL(service.full(), node or u'@') |
981
97cce8c1e96a
pages(tickets): better URL handling:
Goffi <goffi@goffi.org>
parents:
978
diff
changeset
|
50 template_data[u'url_tickets_new'] = self.getSubPageURL(request, 'tickets_new') |
967 | 51 |
52 @defer.inlineCallbacks | |
53 def prepare_render(self, request): | |
54 data = self.getRData(request) | |
55 template_data = request.template_data | |
981
97cce8c1e96a
pages(tickets): better URL handling:
Goffi <goffi@goffi.org>
parents:
978
diff
changeset
|
56 service, node = data[u'service'], data[u'node'] |
967 | 57 profile = self.getProfile(request) or C.SERVICE_PROFILE |
58 | |
59 tickets = yield self.host.bridge.ticketsGet(service.full() if service else u'', node, C.NO_LIMIT, [], '', {}, profile) | |
981
97cce8c1e96a
pages(tickets): better URL handling:
Goffi <goffi@goffi.org>
parents:
978
diff
changeset
|
60 template_data[u'tickets'] = [template_xmlui.create(self.host, x) for x in tickets[0]] |
97cce8c1e96a
pages(tickets): better URL handling:
Goffi <goffi@goffi.org>
parents:
978
diff
changeset
|
61 template_data[u'on_ticket_click'] = data_objects.OnClick(url=self.getSubPageURL(request, 'tickets_view', '{item.id}')) |