annotate libervia/pages/files/list/page_meta.py @ 1313:12aa95eeb409

pages (files/list): set `directory_affiliation` template data: Directory affiliation is checked by listing parent directory, then added to template_data
author Goffi <goffi@goffi.org>
date Sat, 01 Aug 2020 16:47:24 +0200
parents ee984eefc787
children d0575e9abf7d
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
1290
ee984eefc787 pages (files/list): return empty list of files when `item-not-found` is received
Goffi <goffi@goffi.org>
parents: 1289
diff changeset
3 import json
ee984eefc787 pages (files/list): return empty list of files when `item-not-found` is received
Goffi <goffi@goffi.org>
parents: 1289
diff changeset
4 import os
1313
12aa95eeb409 pages (files/list): set `directory_affiliation` template data:
Goffi <goffi@goffi.org>
parents: 1290
diff changeset
5 from pathlib import Path
1290
ee984eefc787 pages (files/list): return empty list of files when `item-not-found` is received
Goffi <goffi@goffi.org>
parents: 1289
diff changeset
6 from sat.core.i18n import _
ee984eefc787 pages (files/list): return empty list of files when `item-not-found` is received
Goffi <goffi@goffi.org>
parents: 1289
diff changeset
7 from sat.core.log import getLogger
ee984eefc787 pages (files/list): return empty list of files when `item-not-found` is received
Goffi <goffi@goffi.org>
parents: 1289
diff changeset
8 from sat.tools.common import uri
ee984eefc787 pages (files/list): return empty list of files when `item-not-found` is received
Goffi <goffi@goffi.org>
parents: 1289
diff changeset
9 from sat_frontends.bridge.bridge_frontend import BridgeException
1064
abc5d545dbaa pages (files): files sharing first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
10 from libervia.server.constants import Const as C
1067
808ec98de8b3 pages (files/list): retrieve thumbnail:
Goffi <goffi@goffi.org>
parents: 1064
diff changeset
11 from libervia.server import session_iface
1069
2dab7692eae7 pages (files/list): comments handling + size parameters:
Goffi <goffi@goffi.org>
parents: 1067
diff changeset
12 from libervia.server import pages_tools
1113
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1069
diff changeset
13
1145
29eb15062416 pages: set __name__ for imported pages
Goffi <goffi@goffi.org>
parents: 1124
diff changeset
14 log = getLogger(__name__)
1064
abc5d545dbaa pages (files): files sharing first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
15 """files handling pages"""
abc5d545dbaa pages (files): files sharing first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
16
1216
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1145
diff changeset
17 name = "files_list"
1064
abc5d545dbaa pages (files): files sharing first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
18 access = C.PAGES_ACCESS_PROFILE
1216
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1145
diff changeset
19 template = "file/overview.html"
1064
abc5d545dbaa pages (files): files sharing first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
20
1113
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1069
diff changeset
21
1064
abc5d545dbaa pages (files): files sharing first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
22 def parse_url(self, request):
1113
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1069
diff changeset
23 self.getPathArgs(request, ["service", "*path"], min_args=1, service="jid", path="")
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1069
diff changeset
24
1064
abc5d545dbaa pages (files): files sharing first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
25
1290
ee984eefc787 pages (files/list): return empty list of files when `item-not-found` is received
Goffi <goffi@goffi.org>
parents: 1289
diff changeset
26 async def prepare_render(self, request):
1064
abc5d545dbaa pages (files): files sharing first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
27 data = self.getRData(request)
1113
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1069
diff changeset
28 thumb_limit = data.get("thumb_limit", 300)
1064
abc5d545dbaa pages (files): files sharing first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
29 template_data = request.template_data
1216
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1145
diff changeset
30 service, path_elts = data["service"], data["path"]
1313
12aa95eeb409 pages (files/list): set `directory_affiliation` template data:
Goffi <goffi@goffi.org>
parents: 1290
diff changeset
31 path = Path('/', *path_elts)
1064
abc5d545dbaa pages (files): files sharing first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
32 profile = self.getProfile(request) or C.SERVICE_PROFILE
abc5d545dbaa pages (files): files sharing first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
33
1290
ee984eefc787 pages (files/list): return empty list of files when `item-not-found` is received
Goffi <goffi@goffi.org>
parents: 1289
diff changeset
34 try:
1313
12aa95eeb409 pages (files/list): set `directory_affiliation` template data:
Goffi <goffi@goffi.org>
parents: 1290
diff changeset
35 files_data = await self.host.bridgeCall(
12aa95eeb409 pages (files/list): set `directory_affiliation` template data:
Goffi <goffi@goffi.org>
parents: 1290
diff changeset
36 "FISList", service.full(), str(path), {}, profile)
1290
ee984eefc787 pages (files/list): return empty list of files when `item-not-found` is received
Goffi <goffi@goffi.org>
parents: 1289
diff changeset
37 except BridgeException as e:
ee984eefc787 pages (files/list): return empty list of files when `item-not-found` is received
Goffi <goffi@goffi.org>
parents: 1289
diff changeset
38 if e.condition == 'item-not-found':
ee984eefc787 pages (files/list): return empty list of files when `item-not-found` is received
Goffi <goffi@goffi.org>
parents: 1289
diff changeset
39 log.debug(
ee984eefc787 pages (files/list): return empty list of files when `item-not-found` is received
Goffi <goffi@goffi.org>
parents: 1289
diff changeset
40 f'"item-not-found" received for {path} at {service}, this may indicate '
ee984eefc787 pages (files/list): return empty list of files when `item-not-found` is received
Goffi <goffi@goffi.org>
parents: 1289
diff changeset
41 f'that the location is new')
ee984eefc787 pages (files/list): return empty list of files when `item-not-found` is received
Goffi <goffi@goffi.org>
parents: 1289
diff changeset
42 files_data = []
ee984eefc787 pages (files/list): return empty list of files when `item-not-found` is received
Goffi <goffi@goffi.org>
parents: 1289
diff changeset
43 else:
ee984eefc787 pages (files/list): return empty list of files when `item-not-found` is received
Goffi <goffi@goffi.org>
parents: 1289
diff changeset
44 raise e
1064
abc5d545dbaa pages (files): files sharing first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
45 for file_data in files_data:
1067
808ec98de8b3 pages (files/list): retrieve thumbnail:
Goffi <goffi@goffi.org>
parents: 1064
diff changeset
46 try:
1216
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1145
diff changeset
47 extra_raw = file_data["extra"]
1067
808ec98de8b3 pages (files/list): retrieve thumbnail:
Goffi <goffi@goffi.org>
parents: 1064
diff changeset
48 except KeyError:
808ec98de8b3 pages (files/list): retrieve thumbnail:
Goffi <goffi@goffi.org>
parents: 1064
diff changeset
49 pass
808ec98de8b3 pages (files/list): retrieve thumbnail:
Goffi <goffi@goffi.org>
parents: 1064
diff changeset
50 else:
1216
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1145
diff changeset
51 file_data["extra"] = json.loads(extra_raw) if extra_raw else {}
1113
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1069
diff changeset
52 dir_path = path_elts + [file_data["name"]]
1216
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1145
diff changeset
53 if file_data["type"] == C.FILE_TYPE_DIRECTORY:
1064
abc5d545dbaa pages (files): files sharing first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
54 page = self
1216
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1145
diff changeset
55 elif file_data["type"] == C.FILE_TYPE_FILE:
1113
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1069
diff changeset
56 page = self.getPageByName("files_view")
1069
2dab7692eae7 pages (files/list): comments handling + size parameters:
Goffi <goffi@goffi.org>
parents: 1067
diff changeset
57
2dab7692eae7 pages (files/list): comments handling + size parameters:
Goffi <goffi@goffi.org>
parents: 1067
diff changeset
58 ## thumbnails ##
1067
808ec98de8b3 pages (files/list): retrieve thumbnail:
Goffi <goffi@goffi.org>
parents: 1064
diff changeset
59 try:
1216
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1145
diff changeset
60 thumbnails = file_data["extra"]["thumbnails"]
1067
808ec98de8b3 pages (files/list): retrieve thumbnail:
Goffi <goffi@goffi.org>
parents: 1064
diff changeset
61 if not thumbnails:
808ec98de8b3 pages (files/list): retrieve thumbnail:
Goffi <goffi@goffi.org>
parents: 1064
diff changeset
62 raise KeyError
808ec98de8b3 pages (files/list): retrieve thumbnail:
Goffi <goffi@goffi.org>
parents: 1064
diff changeset
63 except KeyError:
808ec98de8b3 pages (files/list): retrieve thumbnail:
Goffi <goffi@goffi.org>
parents: 1064
diff changeset
64 pass
808ec98de8b3 pages (files/list): retrieve thumbnail:
Goffi <goffi@goffi.org>
parents: 1064
diff changeset
65 else:
1113
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1069
diff changeset
66 thumbnails.sort(key=lambda t: t["size"])
1067
808ec98de8b3 pages (files/list): retrieve thumbnail:
Goffi <goffi@goffi.org>
parents: 1064
diff changeset
67 thumb = thumbnails[0]
808ec98de8b3 pages (files/list): retrieve thumbnail:
Goffi <goffi@goffi.org>
parents: 1064
diff changeset
68 for thumb_data in thumbnails:
1113
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1069
diff changeset
69 if thumb_data["size"][0] > thumb_limit:
1067
808ec98de8b3 pages (files/list): retrieve thumbnail:
Goffi <goffi@goffi.org>
parents: 1064
diff changeset
70 break
808ec98de8b3 pages (files/list): retrieve thumbnail:
Goffi <goffi@goffi.org>
parents: 1064
diff changeset
71 thumb = thumb_data
1216
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1145
diff changeset
72 if "url" in thumb:
1113
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1069
diff changeset
73 file_data["thumb_url"] = thumb["url"]
1216
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1145
diff changeset
74 elif "id" in thumb:
1067
808ec98de8b3 pages (files/list): retrieve thumbnail:
Goffi <goffi@goffi.org>
parents: 1064
diff changeset
75 try:
1290
ee984eefc787 pages (files/list): return empty list of files when `item-not-found` is received
Goffi <goffi@goffi.org>
parents: 1289
diff changeset
76 thumb_path = await self.host.bridgeCall(
1216
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1145
diff changeset
77 "bobGetFile", service.full(), thumb["id"], profile
1113
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1069
diff changeset
78 )
1067
808ec98de8b3 pages (files/list): retrieve thumbnail:
Goffi <goffi@goffi.org>
parents: 1064
diff changeset
79 except Exception as e:
1113
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1069
diff changeset
80 log.warning(
1216
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1145
diff changeset
81 _("Can't retrieve thumbnail: {reason}").format(reason=e)
1113
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1069
diff changeset
82 )
1067
808ec98de8b3 pages (files/list): retrieve thumbnail:
Goffi <goffi@goffi.org>
parents: 1064
diff changeset
83 else:
808ec98de8b3 pages (files/list): retrieve thumbnail:
Goffi <goffi@goffi.org>
parents: 1064
diff changeset
84 filename = os.path.basename(thumb_path)
1113
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1069
diff changeset
85 session_data = self.host.getSessionData(
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1069
diff changeset
86 request, session_iface.ISATSession
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1069
diff changeset
87 )
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1069
diff changeset
88 file_data["thumb_url"] = os.path.join(
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1069
diff changeset
89 session_data.cache_dir, filename
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1069
diff changeset
90 )
1064
abc5d545dbaa pages (files): files sharing first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
91 else:
1113
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1069
diff changeset
92 raise ValueError(
1216
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1145
diff changeset
93 "unexpected file type: {file_type}".format(file_type=file_data["type"])
1113
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1069
diff changeset
94 )
1216
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1145
diff changeset
95 file_data["url"] = page.getURL(service.full(), *dir_path)
1069
2dab7692eae7 pages (files/list): comments handling + size parameters:
Goffi <goffi@goffi.org>
parents: 1067
diff changeset
96
2dab7692eae7 pages (files/list): comments handling + size parameters:
Goffi <goffi@goffi.org>
parents: 1067
diff changeset
97 ## comments ##
1216
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1145
diff changeset
98 comments_url = file_data.get("comments_url")
1069
2dab7692eae7 pages (files/list): comments handling + size parameters:
Goffi <goffi@goffi.org>
parents: 1067
diff changeset
99 if comments_url:
2dab7692eae7 pages (files/list): comments handling + size parameters:
Goffi <goffi@goffi.org>
parents: 1067
diff changeset
100 parsed_url = uri.parseXMPPUri(comments_url)
1216
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1145
diff changeset
101 comments_service = file_data["comments_service"] = parsed_url["path"]
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1145
diff changeset
102 comments_node = file_data["comments_node"] = parsed_url["node"]
1069
2dab7692eae7 pages (files/list): comments handling + size parameters:
Goffi <goffi@goffi.org>
parents: 1067
diff changeset
103 try:
1216
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1145
diff changeset
104 comments_count = file_data["comments_count"] = int(
1113
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1069
diff changeset
105 file_data["comments_count"]
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1069
diff changeset
106 )
1069
2dab7692eae7 pages (files/list): comments handling + size parameters:
Goffi <goffi@goffi.org>
parents: 1067
diff changeset
107 except KeyError:
2dab7692eae7 pages (files/list): comments handling + size parameters:
Goffi <goffi@goffi.org>
parents: 1067
diff changeset
108 comments_count = None
1113
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1069
diff changeset
109 if comments_count and data.get("retrieve_comments", False):
1290
ee984eefc787 pages (files/list): return empty list of files when `item-not-found` is received
Goffi <goffi@goffi.org>
parents: 1289
diff changeset
110 file_data["comments"] = await pages_tools.retrieveComments(
1113
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1069
diff changeset
111 self, comments_service, comments_node, profile=profile
cdd389ef97bc server: code style reformatting using black
Goffi <goffi@goffi.org>
parents: 1069
diff changeset
112 )
1069
2dab7692eae7 pages (files/list): comments handling + size parameters:
Goffi <goffi@goffi.org>
parents: 1067
diff changeset
113
1313
12aa95eeb409 pages (files/list): set `directory_affiliation` template data:
Goffi <goffi@goffi.org>
parents: 1290
diff changeset
114 # parent dir affiliation
12aa95eeb409 pages (files/list): set `directory_affiliation` template data:
Goffi <goffi@goffi.org>
parents: 1290
diff changeset
115 # for the moment the only way to get affiliation of current directory is to check
12aa95eeb409 pages (files/list): set `directory_affiliation` template data:
Goffi <goffi@goffi.org>
parents: 1290
diff changeset
116 # it from parent's list
12aa95eeb409 pages (files/list): set `directory_affiliation` template data:
Goffi <goffi@goffi.org>
parents: 1290
diff changeset
117 # TODO: some caching? What if affiliation changes?
12aa95eeb409 pages (files/list): set `directory_affiliation` template data:
Goffi <goffi@goffi.org>
parents: 1290
diff changeset
118 if path.parent != path:
12aa95eeb409 pages (files/list): set `directory_affiliation` template data:
Goffi <goffi@goffi.org>
parents: 1290
diff changeset
119 try:
12aa95eeb409 pages (files/list): set `directory_affiliation` template data:
Goffi <goffi@goffi.org>
parents: 1290
diff changeset
120 parent_files_data = await self.host.bridgeCall(
12aa95eeb409 pages (files/list): set `directory_affiliation` template data:
Goffi <goffi@goffi.org>
parents: 1290
diff changeset
121 "FISList", service.full(), str(path.parent), {}, profile)
12aa95eeb409 pages (files/list): set `directory_affiliation` template data:
Goffi <goffi@goffi.org>
parents: 1290
diff changeset
122 except BridgeException as e:
12aa95eeb409 pages (files/list): set `directory_affiliation` template data:
Goffi <goffi@goffi.org>
parents: 1290
diff changeset
123 if e.condition == 'item-not-found':
12aa95eeb409 pages (files/list): set `directory_affiliation` template data:
Goffi <goffi@goffi.org>
parents: 1290
diff changeset
124 pass
12aa95eeb409 pages (files/list): set `directory_affiliation` template data:
Goffi <goffi@goffi.org>
parents: 1290
diff changeset
125 else:
12aa95eeb409 pages (files/list): set `directory_affiliation` template data:
Goffi <goffi@goffi.org>
parents: 1290
diff changeset
126 raise e
12aa95eeb409 pages (files/list): set `directory_affiliation` template data:
Goffi <goffi@goffi.org>
parents: 1290
diff changeset
127 else:
12aa95eeb409 pages (files/list): set `directory_affiliation` template data:
Goffi <goffi@goffi.org>
parents: 1290
diff changeset
128 directory_data = next(f for f in parent_files_data if f['name'] == path.name)
12aa95eeb409 pages (files/list): set `directory_affiliation` template data:
Goffi <goffi@goffi.org>
parents: 1290
diff changeset
129 template_data['directory_affiliation'] = directory_data.get('affiliation')
12aa95eeb409 pages (files/list): set `directory_affiliation` template data:
Goffi <goffi@goffi.org>
parents: 1290
diff changeset
130
12aa95eeb409 pages (files/list): set `directory_affiliation` template data:
Goffi <goffi@goffi.org>
parents: 1290
diff changeset
131
1216
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1145
diff changeset
132 template_data["files_data"] = files_data
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1145
diff changeset
133 template_data["path"] = path
1289
c14ac2502011 pages (files/list): export `service` and `path` to scripts
Goffi <goffi@goffi.org>
parents: 1239
diff changeset
134 # we make the service and path accessible from scripts
1313
12aa95eeb409 pages (files/list): set `directory_affiliation` template data:
Goffi <goffi@goffi.org>
parents: 1290
diff changeset
135 self.exposeToScripts(request, files_service=service.full(), files_path=str(path))
1064
abc5d545dbaa pages (files): files sharing first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
136 if path_elts:
1216
b2d067339de3 python 3 port:
Goffi <goffi@goffi.org>
parents: 1145
diff changeset
137 template_data["parent_url"] = self.getURL(service.full(), *path_elts[:-1])