|
40 | 40 | from gramps.gen.dbstate import DbState
|
41 | 41 | from gramps.gen.errors import HandleError
|
42 | 42 | from gramps.gen.proxy import PrivateProxyDb
|
| 43 | +from gramps.gen.proxy.private import sanitize_media |
43 | 44 | from gramps.gen.utils.grampslocale import GrampsLocale
|
44 | 45 | from marshmallow import RAISE
|
45 | 46 | from webargs.flaskparser import FlaskParser
|
@@ -109,6 +110,36 @@ def set_name_group_mapping(self, name, group):
|
109 | 110 | """Set a name group mapping."""
|
110 | 111 | return self.db.set_name_group_mapping(name, group)
|
111 | 112 |
|
| 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 | + |
112 | 143 |
|
113 | 144 | def get_db_manager(tree: Optional[str]) -> WebDbManager:
|
114 | 145 | """Get an appropriate WebDbManager instance."""
|
|
0 commit comments