annotate libervia/pages/lists/view/page_meta.py @ 1483:595e7fef41f3

merge bookmark @
author Goffi <goffi@goffi.org>
date Fri, 12 Nov 2021 17:48:30 +0100
parents d62df81440c6 915c7c2f1729
children 106bae41f5c8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1216
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1145
diff changeset
1 #!/usr/bin/env python3
1239
f511f8fbbf8a fixed shebangs
Goffi <goffi@goffi.org>
parents: 1216
diff changeset
2
967
4d1dcf97740f pages (tickets): tickets first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
3 from sat.tools.common import template_xmlui
4d1dcf97740f pages (tickets): tickets first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
4 from sat.tools.common import data_objects
1302
04e7dd6b6f4d pages (blog, tickets, merge-requests): updated code to handle new serialisation, following backend changes
Goffi <goffi@goffi.org>
parents: 1239
diff changeset
5 from sat.tools.common import data_format
967
4d1dcf97740f pages (tickets): tickets first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
6 from sat.core.log import getLogger
1387
a84383c659b4 lists: creation, invitation, item deletion:
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
7 from sat_frontends.bridge.bridge_frontend import BridgeException
a84383c659b4 lists: creation, invitation, item deletion:
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
8 from libervia.server.constants import Const as C
1113
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1089
diff changeset
9
1145
29eb15062416 pages: set __name__ for imported pages
Goffi <goffi@goffi.org>
parents: 1142
diff changeset
10 log = getLogger(__name__)
967
4d1dcf97740f pages (tickets): tickets first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
11
1378
e3e303a30a74 pages (tickets): renamed "tickets" to "lists":
Goffi <goffi@goffi.org>
parents: 1377
diff changeset
12 name = "lists"
967
4d1dcf97740f pages (tickets): tickets first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
13 access = C.PAGES_ACCESS_PUBLIC
1378
e3e303a30a74 pages (tickets): renamed "tickets" to "lists":
Goffi <goffi@goffi.org>
parents: 1377
diff changeset
14 template = "list/overview.html"
967
4d1dcf97740f pages (tickets): tickets first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
15
4d1dcf97740f pages (tickets): tickets first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
16
4d1dcf97740f pages (tickets): tickets first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
17 def parse_url(self, request):
1113
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1089
diff changeset
18 self.getPathArgs(request, ["service", "node"], service="jid")
1078
296bda6b7ed0 pages (tickets): tickets discovery:
Goffi <goffi@goffi.org>
parents: 1043
diff changeset
19 data = self.getRData(request)
1216
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1145
diff changeset
20 service, node = data["service"], data["node"]
1078
296bda6b7ed0 pages (tickets): tickets discovery:
Goffi <goffi@goffi.org>
parents: 1043
diff changeset
21 if node is None:
1387
a84383c659b4 lists: creation, invitation, item deletion:
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
22 self.HTTPRedirect(request, self.getPageByName("lists_disco").url)
1216
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1145
diff changeset
23 if node == "@":
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1145
diff changeset
24 node = data["node"] = ""
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
25 template_data = request.template_data
1378
e3e303a30a74 pages (tickets): renamed "tickets" to "lists":
Goffi <goffi@goffi.org>
parents: 1377
diff changeset
26 template_data["url_list_items"] = self.getURL(service.full(), node or "@")
1387
a84383c659b4 lists: creation, invitation, item deletion:
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
27 template_data["url_list_new"] = self.getPageByName("list_new").getURL(
a84383c659b4 lists: creation, invitation, item deletion:
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
28 service.full(), node or "@")
1113
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1089
diff changeset
29
967
4d1dcf97740f pages (tickets): tickets first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
30
1302
04e7dd6b6f4d pages (blog, tickets, merge-requests): updated code to handle new serialisation, following backend changes
Goffi <goffi@goffi.org>
parents: 1239
diff changeset
31 async def prepare_render(self, request):
967
4d1dcf97740f pages (tickets): tickets first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
32 data = self.getRData(request)
4d1dcf97740f pages (tickets): tickets first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
33 template_data = request.template_data
1216
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1145
diff changeset
34 service, node = data["service"], data["node"]
1472
915c7c2f1729 pages (lists/view): fix node name following use of XEP-0346
Goffi <goffi@goffi.org>
parents: 1395
diff changeset
35 submitted_node = await self.host.bridgeCall(
915c7c2f1729 pages (lists/view): fix node name following use of XEP-0346
Goffi <goffi@goffi.org>
parents: 1395
diff changeset
36 "psSchemaSubmittedNodeGet",
915c7c2f1729 pages (lists/view): fix node name following use of XEP-0346
Goffi <goffi@goffi.org>
parents: 1395
diff changeset
37 node or self.host.ns_map["tickets"]
915c7c2f1729 pages (lists/view): fix node name following use of XEP-0346
Goffi <goffi@goffi.org>
parents: 1395
diff changeset
38 )
967
4d1dcf97740f pages (tickets): tickets first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
39 profile = self.getProfile(request) or C.SERVICE_PROFILE
4d1dcf97740f pages (tickets): tickets first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
40
1113
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1089
diff changeset
41 self.checkCache(request, C.CACHE_PUBSUB, service=service, node=node, short="tickets")
1021
b39c527f208c pages (tickets): check cache in prepare_render instead of parse_url
Goffi <goffi@goffi.org>
parents: 1007
diff changeset
42
1389
ac4173fff71d pages (lists/view): add `list_type` to `template_data`:
Goffi <goffi@goffi.org>
parents: 1387
diff changeset
43 try:
ac4173fff71d pages (lists/view): add `list_type` to `template_data`:
Goffi <goffi@goffi.org>
parents: 1387
diff changeset
44 lists_types = self.getPageData(request, "lists_types")
ac4173fff71d pages (lists/view): add `list_type` to `template_data`:
Goffi <goffi@goffi.org>
parents: 1387
diff changeset
45 if lists_types is None:
ac4173fff71d pages (lists/view): add `list_type` to `template_data`:
Goffi <goffi@goffi.org>
parents: 1387
diff changeset
46 lists_types = {}
ac4173fff71d pages (lists/view): add `list_type` to `template_data`:
Goffi <goffi@goffi.org>
parents: 1387
diff changeset
47 self.setPageData(request, "lists_types", lists_types)
ac4173fff71d pages (lists/view): add `list_type` to `template_data`:
Goffi <goffi@goffi.org>
parents: 1387
diff changeset
48 list_type = lists_types[(service, node)]
ac4173fff71d pages (lists/view): add `list_type` to `template_data`:
Goffi <goffi@goffi.org>
parents: 1387
diff changeset
49 except KeyError:
ac4173fff71d pages (lists/view): add `list_type` to `template_data`:
Goffi <goffi@goffi.org>
parents: 1387
diff changeset
50 ns_tickets_type = self.host.ns_map["tickets_type"]
ac4173fff71d pages (lists/view): add `list_type` to `template_data`:
Goffi <goffi@goffi.org>
parents: 1387
diff changeset
51 schema_raw = await self.host.bridgeCall(
ac4173fff71d pages (lists/view): add `list_type` to `template_data`:
Goffi <goffi@goffi.org>
parents: 1387
diff changeset
52 "psSchemaDictGet",
ac4173fff71d pages (lists/view): add `list_type` to `template_data`:
Goffi <goffi@goffi.org>
parents: 1387
diff changeset
53 service.full(),
1472
915c7c2f1729 pages (lists/view): fix node name following use of XEP-0346
Goffi <goffi@goffi.org>
parents: 1395
diff changeset
54 submitted_node,
1389
ac4173fff71d pages (lists/view): add `list_type` to `template_data`:
Goffi <goffi@goffi.org>
parents: 1387
diff changeset
55 profile
ac4173fff71d pages (lists/view): add `list_type` to `template_data`:
Goffi <goffi@goffi.org>
parents: 1387
diff changeset
56 )
ac4173fff71d pages (lists/view): add `list_type` to `template_data`:
Goffi <goffi@goffi.org>
parents: 1387
diff changeset
57 schema = data_format.deserialise(schema_raw)
ac4173fff71d pages (lists/view): add `list_type` to `template_data`:
Goffi <goffi@goffi.org>
parents: 1387
diff changeset
58 try:
ac4173fff71d pages (lists/view): add `list_type` to `template_data`:
Goffi <goffi@goffi.org>
parents: 1387
diff changeset
59 list_type_field = next(
ac4173fff71d pages (lists/view): add `list_type` to `template_data`:
Goffi <goffi@goffi.org>
parents: 1387
diff changeset
60 f for f in schema["fields"] if f["type"] == "hidden"
ac4173fff71d pages (lists/view): add `list_type` to `template_data`:
Goffi <goffi@goffi.org>
parents: 1387
diff changeset
61 and f.get("name") == ns_tickets_type
ac4173fff71d pages (lists/view): add `list_type` to `template_data`:
Goffi <goffi@goffi.org>
parents: 1387
diff changeset
62 )
ac4173fff71d pages (lists/view): add `list_type` to `template_data`:
Goffi <goffi@goffi.org>
parents: 1387
diff changeset
63 except StopIteration:
ac4173fff71d pages (lists/view): add `list_type` to `template_data`:
Goffi <goffi@goffi.org>
parents: 1387
diff changeset
64 list_type = lists_types[(service, node)] = None
ac4173fff71d pages (lists/view): add `list_type` to `template_data`:
Goffi <goffi@goffi.org>
parents: 1387
diff changeset
65 else:
ac4173fff71d pages (lists/view): add `list_type` to `template_data`:
Goffi <goffi@goffi.org>
parents: 1387
diff changeset
66 if list_type_field.get("value") is None:
ac4173fff71d pages (lists/view): add `list_type` to `template_data`:
Goffi <goffi@goffi.org>
parents: 1387
diff changeset
67 list_type = None
ac4173fff71d pages (lists/view): add `list_type` to `template_data`:
Goffi <goffi@goffi.org>
parents: 1387
diff changeset
68 else:
ac4173fff71d pages (lists/view): add `list_type` to `template_data`:
Goffi <goffi@goffi.org>
parents: 1387
diff changeset
69 list_type = list_type_field["value"].lower().strip()
ac4173fff71d pages (lists/view): add `list_type` to `template_data`:
Goffi <goffi@goffi.org>
parents: 1387
diff changeset
70 lists_types[(service, node)] = list_type
ac4173fff71d pages (lists/view): add `list_type` to `template_data`:
Goffi <goffi@goffi.org>
parents: 1387
diff changeset
71
ac4173fff71d pages (lists/view): add `list_type` to `template_data`:
Goffi <goffi@goffi.org>
parents: 1387
diff changeset
72 data["list_type"] = template_data["list_type"] = list_type
ac4173fff71d pages (lists/view): add `list_type` to `template_data`:
Goffi <goffi@goffi.org>
parents: 1387
diff changeset
73
1142
003597f895a0 pages (tickets): use the new getPubsubExtra and setPagination methods to handle pagination
Goffi <goffi@goffi.org>
parents: 1137
diff changeset
74 extra = self.getPubsubExtra(request)
1216
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1145
diff changeset
75 extra["labels_as_list"] = C.BOOL_TRUE
1377
46ce79eac754 pages(tickets): add Full-Text Search
Goffi <goffi@goffi.org>
parents: 1302
diff changeset
76 self.handleSearch(request, extra)
1142
003597f895a0 pages (tickets): use the new getPubsubExtra and setPagination methods to handle pagination
Goffi <goffi@goffi.org>
parents: 1137
diff changeset
77
1378
e3e303a30a74 pages (tickets): renamed "tickets" to "lists":
Goffi <goffi@goffi.org>
parents: 1377
diff changeset
78 list_raw = await self.host.bridgeCall(
e3e303a30a74 pages (tickets): renamed "tickets" to "lists":
Goffi <goffi@goffi.org>
parents: 1377
diff changeset
79 "listGet",
1216
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1145
diff changeset
80 service.full() if service else "",
1113
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1089
diff changeset
81 node,
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1089
diff changeset
82 C.NO_LIMIT,
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1089
diff changeset
83 [],
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1089
diff changeset
84 "",
1453
d62df81440c6 pages (lists/view): fix serialisation of `extra` when calling `listGet`
Goffi <goffi@goffi.org>
parents: 1395
diff changeset
85 data_format.serialise(extra),
1113
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1089
diff changeset
86 profile,
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1089
diff changeset
87 )
1387
a84383c659b4 lists: creation, invitation, item deletion:
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
88 if profile != C.SERVICE_PROFILE:
a84383c659b4 lists: creation, invitation, item deletion:
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
89 try:
a84383c659b4 lists: creation, invitation, item deletion:
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
90 affiliations = await self.host.bridgeCall(
a84383c659b4 lists: creation, invitation, item deletion:
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
91 "psNodeAffiliationsGet",
a84383c659b4 lists: creation, invitation, item deletion:
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
92 service.full() if service else "",
1472
915c7c2f1729 pages (lists/view): fix node name following use of XEP-0346
Goffi <goffi@goffi.org>
parents: 1395
diff changeset
93 submitted_node,
1387
a84383c659b4 lists: creation, invitation, item deletion:
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
94 profile
a84383c659b4 lists: creation, invitation, item deletion:
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
95 )
a84383c659b4 lists: creation, invitation, item deletion:
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
96 except BridgeException as e:
1472
915c7c2f1729 pages (lists/view): fix node name following use of XEP-0346
Goffi <goffi@goffi.org>
parents: 1395
diff changeset
97 log.warning(
915c7c2f1729 pages (lists/view): fix node name following use of XEP-0346
Goffi <goffi@goffi.org>
parents: 1395
diff changeset
98 f"Can't get affiliations for node {submitted_node!r} at {service}: {e}"
915c7c2f1729 pages (lists/view): fix node name following use of XEP-0346
Goffi <goffi@goffi.org>
parents: 1395
diff changeset
99 )
1387
a84383c659b4 lists: creation, invitation, item deletion:
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
100 template_data["owner"] = False
a84383c659b4 lists: creation, invitation, item deletion:
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
101 else:
a84383c659b4 lists: creation, invitation, item deletion:
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
102 is_owner = affiliations.get(self.getJid(request).userhost()) == 'owner'
a84383c659b4 lists: creation, invitation, item deletion:
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
103 template_data["owner"] = is_owner
a84383c659b4 lists: creation, invitation, item deletion:
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
104 if is_owner:
a84383c659b4 lists: creation, invitation, item deletion:
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
105 self.exposeToScripts(
a84383c659b4 lists: creation, invitation, item deletion:
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
106 request,
a84383c659b4 lists: creation, invitation, item deletion:
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
107 affiliations={str(e): str(a) for e, a in affiliations.items()}
a84383c659b4 lists: creation, invitation, item deletion:
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
108 )
a84383c659b4 lists: creation, invitation, item deletion:
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
109 else:
a84383c659b4 lists: creation, invitation, item deletion:
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
110 template_data["owner"] = False
a84383c659b4 lists: creation, invitation, item deletion:
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
111
1378
e3e303a30a74 pages (tickets): renamed "tickets" to "lists":
Goffi <goffi@goffi.org>
parents: 1377
diff changeset
112 list_items, metadata = data_format.deserialise(list_raw, type_check=list)
e3e303a30a74 pages (tickets): renamed "tickets" to "lists":
Goffi <goffi@goffi.org>
parents: 1377
diff changeset
113 template_data["list_items"] = [
e3e303a30a74 pages (tickets): renamed "tickets" to "lists":
Goffi <goffi@goffi.org>
parents: 1377
diff changeset
114 template_xmlui.create(self.host, x) for x in list_items
e3e303a30a74 pages (tickets): renamed "tickets" to "lists":
Goffi <goffi@goffi.org>
parents: 1377
diff changeset
115 ]
1387
a84383c659b4 lists: creation, invitation, item deletion:
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
116 view_url = self.getPageByName('list_view').getURL(service.full(), node or '@')
1378
e3e303a30a74 pages (tickets): renamed "tickets" to "lists":
Goffi <goffi@goffi.org>
parents: 1377
diff changeset
117 template_data["on_list_item_click"] = data_objects.OnClick(
1387
a84383c659b4 lists: creation, invitation, item deletion:
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
118 url=f"{view_url}/{{item.id}}"
1113
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1089
diff changeset
119 )
1142
003597f895a0 pages (tickets): use the new getPubsubExtra and setPagination methods to handle pagination
Goffi <goffi@goffi.org>
parents: 1137
diff changeset
120 self.setPagination(request, metadata)
1387
a84383c659b4 lists: creation, invitation, item deletion:
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
121 self.exposeToScripts(
a84383c659b4 lists: creation, invitation, item deletion:
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
122 request,
a84383c659b4 lists: creation, invitation, item deletion:
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
123 lists_ns=self.host.ns_map["tickets"],
a84383c659b4 lists: creation, invitation, item deletion:
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
124 pubsub_service=service.full(),
a84383c659b4 lists: creation, invitation, item deletion:
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
125 pubsub_node=node,
1389
ac4173fff71d pages (lists/view): add `list_type` to `template_data`:
Goffi <goffi@goffi.org>
parents: 1387
diff changeset
126 list_type=list_type,
1387
a84383c659b4 lists: creation, invitation, item deletion:
Goffi <goffi@goffi.org>
parents: 1378
diff changeset
127 )
1395
4ccf42d8aab7 browser (lists/view): `grocery` list specialised behaviour:
Goffi <goffi@goffi.org>
parents: 1389
diff changeset
128
4ccf42d8aab7 browser (lists/view): `grocery` list specialised behaviour:
Goffi <goffi@goffi.org>
parents: 1389
diff changeset
129
4ccf42d8aab7 browser (lists/view): `grocery` list specialised behaviour:
Goffi <goffi@goffi.org>
parents: 1389
diff changeset
130 async def on_data_post(self, request):
4ccf42d8aab7 browser (lists/view): `grocery` list specialised behaviour:
Goffi <goffi@goffi.org>
parents: 1389
diff changeset
131 data = self.getRData(request)
4ccf42d8aab7 browser (lists/view): `grocery` list specialised behaviour:
Goffi <goffi@goffi.org>
parents: 1389
diff changeset
132 profile = self.getProfile(request)
4ccf42d8aab7 browser (lists/view): `grocery` list specialised behaviour:
Goffi <goffi@goffi.org>
parents: 1389
diff changeset
133 service = data["service"]
4ccf42d8aab7 browser (lists/view): `grocery` list specialised behaviour:
Goffi <goffi@goffi.org>
parents: 1389
diff changeset
134 node = data["node"]
4ccf42d8aab7 browser (lists/view): `grocery` list specialised behaviour:
Goffi <goffi@goffi.org>
parents: 1389
diff changeset
135 list_type = self.getPostedData(request, ("type",))
4ccf42d8aab7 browser (lists/view): `grocery` list specialised behaviour:
Goffi <goffi@goffi.org>
parents: 1389
diff changeset
136 if list_type == "grocery":
4ccf42d8aab7 browser (lists/view): `grocery` list specialised behaviour:
Goffi <goffi@goffi.org>
parents: 1389
diff changeset
137 name, quantity = self.getPostedData(request, ("name", "quantity"))
4ccf42d8aab7 browser (lists/view): `grocery` list specialised behaviour:
Goffi <goffi@goffi.org>
parents: 1389
diff changeset
138 if not name:
4ccf42d8aab7 browser (lists/view): `grocery` list specialised behaviour:
Goffi <goffi@goffi.org>
parents: 1389
diff changeset
139 self.pageError(request, C.HTTP_BAD_REQUEST)
4ccf42d8aab7 browser (lists/view): `grocery` list specialised behaviour:
Goffi <goffi@goffi.org>
parents: 1389
diff changeset
140 item_data = {
4ccf42d8aab7 browser (lists/view): `grocery` list specialised behaviour:
Goffi <goffi@goffi.org>
parents: 1389
diff changeset
141 "name": [name],
4ccf42d8aab7 browser (lists/view): `grocery` list specialised behaviour:
Goffi <goffi@goffi.org>
parents: 1389
diff changeset
142 }
4ccf42d8aab7 browser (lists/view): `grocery` list specialised behaviour:
Goffi <goffi@goffi.org>
parents: 1389
diff changeset
143 if quantity:
4ccf42d8aab7 browser (lists/view): `grocery` list specialised behaviour:
Goffi <goffi@goffi.org>
parents: 1389
diff changeset
144 item_data["quantity"] = [quantity]
4ccf42d8aab7 browser (lists/view): `grocery` list specialised behaviour:
Goffi <goffi@goffi.org>
parents: 1389
diff changeset
145 await self.host.bridgeCall(
4ccf42d8aab7 browser (lists/view): `grocery` list specialised behaviour:
Goffi <goffi@goffi.org>
parents: 1389
diff changeset
146 "listSet", service.full(), node, item_data, "", "", "", profile
4ccf42d8aab7 browser (lists/view): `grocery` list specialised behaviour:
Goffi <goffi@goffi.org>
parents: 1389
diff changeset
147 )
4ccf42d8aab7 browser (lists/view): `grocery` list specialised behaviour:
Goffi <goffi@goffi.org>
parents: 1389
diff changeset
148 return C.POST_NO_CONFIRM
4ccf42d8aab7 browser (lists/view): `grocery` list specialised behaviour:
Goffi <goffi@goffi.org>
parents: 1389
diff changeset
149 else:
4ccf42d8aab7 browser (lists/view): `grocery` list specialised behaviour:
Goffi <goffi@goffi.org>
parents: 1389
diff changeset
150 raise NotImplementedError(
4ccf42d8aab7 browser (lists/view): `grocery` list specialised behaviour:
Goffi <goffi@goffi.org>
parents: 1389
diff changeset
151 f"Can't use quick list item set for list of type {list_type!r}"
4ccf42d8aab7 browser (lists/view): `grocery` list specialised behaviour:
Goffi <goffi@goffi.org>
parents: 1389
diff changeset
152 )