2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2014-10-14 09:54:26 -04:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2020-09-01 08:39:04 -04:00
|
|
|
from typing import Dict, Iterable, List, Tuple
|
|
|
|
|
2015-08-24 11:17:38 -04:00
|
|
|
from unpaddedbase64 import encode_base64
|
2018-07-09 02:09:20 -04:00
|
|
|
|
2019-10-21 07:56:42 -04:00
|
|
|
from synapse.storage._base import SQLBaseStore
|
2020-09-01 08:39:04 -04:00
|
|
|
from synapse.storage.types import Cursor
|
2016-05-31 10:32:32 -04:00
|
|
|
from synapse.util.caches.descriptors import cached, cachedList
|
2014-12-04 06:27:59 -05:00
|
|
|
|
2014-10-14 09:54:26 -04:00
|
|
|
|
2018-03-01 09:16:02 -05:00
|
|
|
class SignatureWorkerStore(SQLBaseStore):
|
2016-08-19 06:59:29 -04:00
|
|
|
@cached()
|
2016-05-31 10:32:32 -04:00
|
|
|
def get_event_reference_hash(self, event_id):
|
2018-03-01 11:40:27 -05:00
|
|
|
# This is a dummy function to allow get_event_reference_hashes
|
|
|
|
# to use its cache
|
|
|
|
raise NotImplementedError()
|
2016-05-31 10:32:32 -04:00
|
|
|
|
2019-04-03 05:07:29 -04:00
|
|
|
@cachedList(
|
|
|
|
cached_method_name="get_event_reference_hash", list_name="event_ids", num_args=1
|
|
|
|
)
|
2020-09-01 08:39:04 -04:00
|
|
|
async def get_event_reference_hashes(
|
|
|
|
self, event_ids: Iterable[str]
|
|
|
|
) -> Dict[str, Dict[str, bytes]]:
|
|
|
|
"""Get all hashes for given events.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
event_ids: The event IDs to get hashes for.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
A mapping of event ID to a mapping of algorithm to hash.
|
|
|
|
"""
|
|
|
|
|
2014-11-06 13:42:18 -05:00
|
|
|
def f(txn):
|
2016-05-31 10:32:32 -04:00
|
|
|
return {
|
|
|
|
event_id: self._get_event_reference_hashes_txn(txn, event_id)
|
|
|
|
for event_id in event_ids
|
|
|
|
}
|
2014-11-06 13:42:18 -05:00
|
|
|
|
2020-09-01 08:39:04 -04:00
|
|
|
return await self.db_pool.runInteraction("get_event_reference_hashes", f)
|
2014-11-06 13:42:18 -05:00
|
|
|
|
2020-09-01 08:39:04 -04:00
|
|
|
async def add_event_hashes(
|
|
|
|
self, event_ids: Iterable[str]
|
|
|
|
) -> List[Tuple[str, Dict[str, str]]]:
|
|
|
|
"""
|
|
|
|
|
|
|
|
Args:
|
|
|
|
event_ids: The event IDs
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
A list of tuples of event ID and a mapping of algorithm to base-64 encoded hash.
|
|
|
|
"""
|
2020-08-07 12:17:17 -04:00
|
|
|
hashes = await self.get_event_reference_hashes(event_ids)
|
2016-05-31 10:32:32 -04:00
|
|
|
hashes = {
|
2019-04-03 05:07:29 -04:00
|
|
|
e_id: {k: encode_base64(v) for k, v in h.items() if k == "sha256"}
|
2016-05-31 10:32:32 -04:00
|
|
|
for e_id, h in hashes.items()
|
|
|
|
}
|
2014-12-04 06:27:59 -05:00
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return list(hashes.items())
|
2014-12-04 06:27:59 -05:00
|
|
|
|
2020-09-01 08:39:04 -04:00
|
|
|
def _get_event_reference_hashes_txn(
|
|
|
|
self, txn: Cursor, event_id: str
|
|
|
|
) -> Dict[str, bytes]:
|
2014-10-28 12:42:35 -04:00
|
|
|
"""Get all the hashes for a given PDU.
|
|
|
|
Args:
|
2020-09-01 08:39:04 -04:00
|
|
|
txn:
|
|
|
|
event_id: Id for the Event.
|
2014-10-28 12:42:35 -04:00
|
|
|
Returns:
|
2020-09-01 08:39:04 -04:00
|
|
|
A mapping of algorithm -> hash.
|
2014-10-28 12:42:35 -04:00
|
|
|
"""
|
|
|
|
query = (
|
|
|
|
"SELECT algorithm, hash"
|
|
|
|
" FROM event_reference_hashes"
|
|
|
|
" WHERE event_id = ?"
|
|
|
|
)
|
2019-04-03 05:07:29 -04:00
|
|
|
txn.execute(query, (event_id,))
|
2017-03-23 13:53:49 -04:00
|
|
|
return {k: v for k, v in txn}
|
2014-10-28 12:42:35 -04:00
|
|
|
|
2018-03-01 09:16:02 -05:00
|
|
|
|
|
|
|
class SignatureStore(SignatureWorkerStore):
|
|
|
|
"""Persistence for event signatures and hashes"""
|