This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Reject receipt requests with empty room or event IDs #14632
Merged
clokep
merged 6 commits into
matrix-org:develop
from
beeper:reject-invalid-receipt-requests
Dec 7, 2022
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
70e49fd
Reject receipt requests with empty room or event IDs
Fizzadar 97416c6
Add changelog file
Fizzadar b523536
Validate room/event ID are valid
Fizzadar 9f46969
Add quick receipts rest test
Fizzadar 15ff27b
Fix copyright notice
Fizzadar fbb7b16
Rename changelog file to bugfix
Fizzadar File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Reject invalid read receipt requests with empty room or event IDs. Contributed by Nick @ Beeper (@fizzadar). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
# Copyright 2022 The Matrix.org Foundation C.I.C. | ||
# | ||
# 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. | ||
from twisted.test.proto_helpers import MemoryReactor | ||
|
||
import synapse.rest.admin | ||
from synapse.rest.client import login, receipts, register | ||
from synapse.server import HomeServer | ||
from synapse.util import Clock | ||
|
||
from tests import unittest | ||
|
||
|
||
class ReceiptsTestCase(unittest.HomeserverTestCase): | ||
servlets = [ | ||
login.register_servlets, | ||
register.register_servlets, | ||
receipts.register_servlets, | ||
synapse.rest.admin.register_servlets, | ||
] | ||
|
||
def prepare(self, reactor: MemoryReactor, clock: Clock, hs: HomeServer) -> None: | ||
self.owner = self.register_user("owner", "pass") | ||
self.owner_tok = self.login("owner", "pass") | ||
|
||
def test_send_receipt(self) -> None: | ||
channel = self.make_request( | ||
"POST", | ||
"/rooms/!abc:beep/receipt/m.read/$def", | ||
content={}, | ||
access_token=self.owner_tok, | ||
) | ||
self.assertEqual(channel.code, 200, channel.result) | ||
|
||
def test_send_receipt_invalid_room_id(self) -> None: | ||
channel = self.make_request( | ||
"POST", | ||
"/rooms/not-a-room-id/receipt/m.read/$def", | ||
content={}, | ||
access_token=self.owner_tok, | ||
) | ||
self.assertEqual(channel.code, 400, channel.result) | ||
self.assertEqual( | ||
channel.json_body["error"], "A valid room ID and event ID must be specified" | ||
) | ||
|
||
def test_send_receipt_invalid_event_id(self) -> None: | ||
channel = self.make_request( | ||
"POST", | ||
"/rooms/!abc:beep/receipt/m.read/not-an-event-id", | ||
content={}, | ||
access_token=self.owner_tok, | ||
) | ||
self.assertEqual(channel.code, 400, channel.result) | ||
self.assertEqual( | ||
channel.json_body["error"], "A valid room ID and event ID must be specified" | ||
) | ||
|
||
def test_send_receipt_invalid_receipt_type(self) -> None: | ||
channel = self.make_request( | ||
"POST", | ||
"/rooms/!abc:beep/receipt/invalid-receipt-type/$def", | ||
content={}, | ||
access_token=self.owner_tok, | ||
) | ||
self.assertEqual(channel.code, 400, channel.result) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not super happy with the
startswith
butEventID.is_valid
is broken for non-V1/2 event IDs so unsure how to proceed.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Filed #14638.