2016-11-11 18:47:03 +01:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
"""This module contains logic for storing HTTP PUT transactions. This is used
|
|
|
|
to ensure idempotency when performing PUTs using the REST API."""
|
|
|
|
import logging
|
2022-05-09 12:27:39 +02:00
|
|
|
from typing import TYPE_CHECKING, Awaitable, Callable, Dict, Tuple
|
|
|
|
|
|
|
|
from typing_extensions import ParamSpec
|
2021-09-03 15:22:22 +02:00
|
|
|
|
2023-01-26 20:45:24 +01:00
|
|
|
from twisted.internet.defer import Deferred
|
2021-09-03 15:22:22 +02:00
|
|
|
from twisted.python.failure import Failure
|
|
|
|
from twisted.web.server import Request
|
2016-11-11 18:47:03 +01:00
|
|
|
|
2019-07-03 16:07:04 +02:00
|
|
|
from synapse.logging.context import make_deferred_yieldable, run_in_background
|
2021-09-03 15:22:22 +02:00
|
|
|
from synapse.types import JsonDict
|
2018-08-10 15:50:21 +02:00
|
|
|
from synapse.util.async_helpers import ObservableDeferred
|
2016-11-11 18:47:03 +01:00
|
|
|
|
2021-09-03 15:22:22 +02:00
|
|
|
if TYPE_CHECKING:
|
|
|
|
from synapse.server import HomeServer
|
|
|
|
|
2016-11-11 18:47:03 +01:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2016-11-14 12:19:24 +01:00
|
|
|
CLEANUP_PERIOD_MS = 1000 * 60 * 30 # 30 mins
|
|
|
|
|
|
|
|
|
2022-05-09 12:27:39 +02:00
|
|
|
P = ParamSpec("P")
|
|
|
|
|
|
|
|
|
2020-09-04 12:54:56 +02:00
|
|
|
class HttpTransactionCache:
|
2021-09-03 15:22:22 +02:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2018-07-13 23:34:49 +02:00
|
|
|
self.hs = hs
|
|
|
|
self.auth = self.hs.get_auth()
|
|
|
|
self.clock = self.hs.get_clock()
|
2021-09-03 15:22:22 +02:00
|
|
|
# $txn_key: (ObservableDeferred<(res_code, res_json_body)>, timestamp)
|
|
|
|
self.transactions: Dict[
|
|
|
|
str, Tuple[ObservableDeferred[Tuple[int, JsonDict]], int]
|
|
|
|
] = {}
|
2016-11-14 12:19:24 +01:00
|
|
|
# Try to clean entries every 30 mins. This means entries will exist
|
|
|
|
# for at *LEAST* 30 mins, and at *MOST* 60 mins.
|
|
|
|
self.cleaner = self.clock.looping_call(self._cleanup, CLEANUP_PERIOD_MS)
|
2016-11-11 18:47:03 +01:00
|
|
|
|
2021-09-03 15:22:22 +02:00
|
|
|
def _get_transaction_key(self, request: Request) -> str:
|
2018-07-13 23:34:49 +02:00
|
|
|
"""A helper function which returns a transaction key that can be used
|
|
|
|
with TransactionCache for idempotent requests.
|
|
|
|
|
|
|
|
Idempotency is based on the returned key being the same for separate
|
|
|
|
requests to the same endpoint. The key is formed from the HTTP request
|
|
|
|
path and the access_token for the requesting user.
|
|
|
|
|
|
|
|
Args:
|
2021-09-03 15:22:22 +02:00
|
|
|
request: The incoming request. Must contain an access_token.
|
2018-07-13 23:34:49 +02:00
|
|
|
Returns:
|
2021-09-03 15:22:22 +02:00
|
|
|
A transaction key
|
2018-07-13 23:34:49 +02:00
|
|
|
"""
|
2021-09-03 15:22:22 +02:00
|
|
|
assert request.path is not None
|
2018-07-13 23:34:49 +02:00
|
|
|
token = self.auth.get_access_token_from_request(request)
|
2019-06-20 11:32:02 +02:00
|
|
|
return request.path.decode("utf8") + "/" + token
|
2018-07-13 23:34:49 +02:00
|
|
|
|
2021-09-03 15:22:22 +02:00
|
|
|
def fetch_or_execute_request(
|
|
|
|
self,
|
|
|
|
request: Request,
|
2022-05-09 12:27:39 +02:00
|
|
|
fn: Callable[P, Awaitable[Tuple[int, JsonDict]]],
|
|
|
|
*args: P.args,
|
|
|
|
**kwargs: P.kwargs,
|
2021-09-03 15:22:22 +02:00
|
|
|
) -> Awaitable[Tuple[int, JsonDict]]:
|
2016-11-11 18:47:03 +01:00
|
|
|
"""A helper function for fetch_or_execute which extracts
|
|
|
|
a transaction key from the given request.
|
|
|
|
|
|
|
|
See:
|
|
|
|
fetch_or_execute
|
|
|
|
"""
|
|
|
|
return self.fetch_or_execute(
|
2018-07-13 23:34:49 +02:00
|
|
|
self._get_transaction_key(request), fn, *args, **kwargs
|
2016-11-11 18:47:03 +01:00
|
|
|
)
|
|
|
|
|
2021-09-03 15:22:22 +02:00
|
|
|
def fetch_or_execute(
|
|
|
|
self,
|
|
|
|
txn_key: str,
|
2022-05-09 12:27:39 +02:00
|
|
|
fn: Callable[P, Awaitable[Tuple[int, JsonDict]]],
|
|
|
|
*args: P.args,
|
|
|
|
**kwargs: P.kwargs,
|
2023-01-26 20:45:24 +01:00
|
|
|
) -> "Deferred[Tuple[int, JsonDict]]":
|
2016-11-11 18:47:03 +01:00
|
|
|
"""Fetches the response for this transaction, or executes the given function
|
|
|
|
to produce a response for this transaction.
|
|
|
|
|
|
|
|
Args:
|
2021-09-03 15:22:22 +02:00
|
|
|
txn_key: A key to ensure idempotency should fetch_or_execute be
|
|
|
|
called again at a later point in time.
|
|
|
|
fn: A function which returns a tuple of (response_code, response_dict).
|
2016-11-11 18:47:03 +01:00
|
|
|
*args: Arguments to pass to fn.
|
|
|
|
**kwargs: Keyword arguments to pass to fn.
|
|
|
|
Returns:
|
2016-11-14 10:52:41 +01:00
|
|
|
Deferred which resolves to a tuple of (response_code, response_dict).
|
2016-11-11 18:47:03 +01:00
|
|
|
"""
|
2018-05-21 17:58:20 +02:00
|
|
|
if txn_key in self.transactions:
|
|
|
|
observable = self.transactions[txn_key][0]
|
|
|
|
else:
|
|
|
|
# execute the function instead.
|
|
|
|
deferred = run_in_background(fn, *args, **kwargs)
|
|
|
|
|
|
|
|
observable = ObservableDeferred(deferred)
|
|
|
|
self.transactions[txn_key] = (observable, self.clock.time_msec())
|
|
|
|
|
|
|
|
# if the request fails with an exception, remove it
|
|
|
|
# from the transaction map. This is done to ensure that we don't
|
|
|
|
# cache transient errors like rate-limiting errors, etc.
|
2021-09-03 15:22:22 +02:00
|
|
|
def remove_from_map(err: Failure) -> None:
|
2018-05-21 17:58:20 +02:00
|
|
|
self.transactions.pop(txn_key, None)
|
|
|
|
# we deliberately do not propagate the error any further, as we
|
|
|
|
# expect the observers to have reported it.
|
|
|
|
|
|
|
|
deferred.addErrback(remove_from_map)
|
|
|
|
|
|
|
|
return make_deferred_yieldable(observable.observe())
|
2016-11-14 12:19:24 +01:00
|
|
|
|
2021-09-03 15:22:22 +02:00
|
|
|
def _cleanup(self) -> None:
|
2016-11-14 12:19:24 +01:00
|
|
|
now = self.clock.time_msec()
|
2018-05-31 11:03:47 +02:00
|
|
|
for key in list(self.transactions):
|
2016-11-14 12:19:24 +01:00
|
|
|
ts = self.transactions[key][1]
|
|
|
|
if now > (ts + CLEANUP_PERIOD_MS): # after cleanup period
|
|
|
|
del self.transactions[key]
|