MatrixSynapse/synapse/config
Eric Eastwood 7b67e93d49
Provide more info why we don't have any thumbnails to serve (#13038)
Fix https://github.com/matrix-org/synapse/issues/13016

## New error code and status

### Before

Previously, we returned a `404` for `/thumbnail` which isn't even in the spec.

```json
{
  "errcode": "M_NOT_FOUND",
  "error": "Not found [b'hs1', b'tefQeZhmVxoiBfuFQUKRzJxc']"
}
```

### After

What does the spec say?

> 400: The request does not make sense to the server, or the server cannot thumbnail the content. For example, the client requested non-integer dimensions or asked for negatively-sized images.
>
> *-- https://spec.matrix.org/v1.1/client-server-api/#get_matrixmediav3thumbnailservernamemediaid*

Now with this PR, we respond with a `400` when we don't have thumbnails to serve and we explain why we might not have any thumbnails.

```json
{
    "errcode": "M_UNKNOWN",
    "error": "Cannot find any thumbnails for the requested media ([b'example.com', b'12345']). This might mean the media is not a supported_media_format=(image/jpeg, image/jpg, image/webp, image/gif, image/png) or that thumbnailing failed for some other reason. (Dynamic thumbnails are disabled on this server.)",
}
```

> Cannot find any thumbnails for the requested media ([b'example.com', b'12345']). This might mean the media is not a supported_media_format=(image/jpeg, image/jpg, image/webp, image/gif, image/png) or that thumbnailing failed for some other reason. (Dynamic thumbnails are disabled on this server.)


---

We still respond with a 404 in many other places. But we can iterate on those later and maybe keep some in some specific places after spec updates/clarification: https://github.com/matrix-org/matrix-spec/issues/1122

We can also iterate on the bugs where Synapse doesn't thumbnail when it should in other issues/PRs.
2022-07-15 11:42:21 -05:00
..
__init__.py
__main__.py
_base.py
_base.pyi
_util.py
account_validity.py
api.py
appservice.py
auth.py
background_updates.py
cache.py Allow dependency errors to pass through (#13113) 2022-06-30 19:48:04 +02:00
captcha.py
cas.py
consent.py
database.py
emailconfig.py Drop support for delegating email validation (#13192) 2022-07-12 19:18:53 +01:00
experimental.py Implement MSC3827: Filtering of `/publicRooms` by room type (#13031) 2022-06-29 17:12:45 +00:00
federation.py
groups.py
homeserver.py
jwt.py Allow dependency errors to pass through (#13113) 2022-06-30 19:48:04 +02:00
key.py
logger.py
metrics.py Allow dependency errors to pass through (#13113) 2022-06-30 19:48:04 +02:00
modules.py
oembed.py
oidc.py Allow dependency errors to pass through (#13113) 2022-06-30 19:48:04 +02:00
password_auth_providers.py
push.py
ratelimiting.py Rate limiting invites per issuer (#13125) 2022-06-30 09:44:47 +00:00
redis.py
registration.py Drop support for delegating email validation (#13192) 2022-07-12 19:18:53 +01:00
repository.py Provide more info why we don't have any thumbnails to serve (#13038) 2022-07-15 11:42:21 -05:00
retention.py
room.py
room_directory.py
saml2.py Allow dependency errors to pass through (#13113) 2022-06-30 19:48:04 +02:00
server.py Add custom well-known (#13035) 2022-06-16 11:48:18 +01:00
server_notices.py
spam_checker.py
sso.py
stats.py
third_party_event_rules.py
tls.py
tracer.py Allow dependency errors to pass through (#13113) 2022-06-30 19:48:04 +02:00
user_directory.py
voip.py
workers.py