Skip to content

Commit ecbc835

Browse files
authored
Patch private proxy for media checksum (#408) (#409)
1 parent f26e6e8 commit ecbc835

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

gramps_webapi/api/util.py

+31
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
from gramps.gen.dbstate import DbState
4141
from gramps.gen.errors import HandleError
4242
from gramps.gen.proxy import PrivateProxyDb
43+
from gramps.gen.proxy.private import sanitize_media
4344
from gramps.gen.utils.grampslocale import GrampsLocale
4445
from marshmallow import RAISE
4546
from webargs.flaskparser import FlaskParser
@@ -109,6 +110,36 @@ def set_name_group_mapping(self, name, group):
109110
"""Set a name group mapping."""
110111
return self.db.set_name_group_mapping(name, group)
111112

113+
# the below methods are to fix a bug in Gramps.
114+
# can be removed once bug is fixed in Gramps and version
115+
# requirement is updated.
116+
def get_media_from_handle(self, handle):
117+
"""
118+
Finds an Object in the database from the passed Gramps ID.
119+
If no such Object exists, None is returned.
120+
"""
121+
media = self.db.get_media_from_handle(handle)
122+
if media and not media.get_privacy():
123+
return _sanitize_media_patched(self.db, media)
124+
return None
125+
126+
def get_media_from_gramps_id(self, val):
127+
"""
128+
Finds a Media in the database from the passed Gramps ID.
129+
If no such Media exists, None is returned.
130+
"""
131+
obj = self.db.get_media_from_gramps_id(val)
132+
if obj and not obj.get_privacy():
133+
return _sanitize_media_patched(self.db, obj)
134+
return None
135+
136+
137+
def _sanitize_media_patched(db, media):
138+
"""Patched sanitize_media function."""
139+
obj = sanitize_media(db, media)
140+
obj.set_checksum(media.get_checksum())
141+
return obj
142+
112143

113144
def get_db_manager(tree: Optional[str]) -> WebDbManager:
114145
"""Get an appropriate WebDbManager instance."""

0 commit comments

Comments
 (0)