Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Timo Ley
synapse
Commits
4bd0ab76
Commit
4bd0ab76
authored
10 years ago
by
Erik Johnston
Browse files
Options
Downloads
Patches
Plain Diff
We don't always want to Auth get_persisted_pdu
parent
a46e5ef6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
synapse/federation/replication.py
+12
-4
12 additions, 4 deletions
synapse/federation/replication.py
synapse/handlers/federation.py
+8
-7
8 additions, 7 deletions
synapse/handlers/federation.py
with
20 additions
and
11 deletions
synapse/federation/replication.py
+
12
−
4
View file @
4bd0ab76
...
...
@@ -504,13 +504,15 @@ class ReplicationLayer(object):
defer
.
returnValue
(
self
.
event_from_pdu_json
(
pdu_dict
))
@log_function
def
_get_persisted_pdu
(
self
,
origin
,
event_id
):
def
_get_persisted_pdu
(
self
,
origin
,
event_id
,
do_auth
=
True
):
"""
Get a PDU from the database with given origin and id.
Returns:
Deferred: Results in a `Pdu`.
"""
return
self
.
handler
.
get_persisted_pdu
(
origin
,
event_id
)
return
self
.
handler
.
get_persisted_pdu
(
origin
,
event_id
,
do_auth
=
do_auth
)
def
_transaction_from_pdus
(
self
,
pdu_list
):
"""
Returns a new Transaction containing the given PDUs suitable for
...
...
@@ -529,7 +531,9 @@ class ReplicationLayer(object):
@log_function
def
_handle_new_pdu
(
self
,
origin
,
pdu
,
backfilled
=
False
):
# We reprocess pdus when we have seen them only as outliers
existing
=
yield
self
.
_get_persisted_pdu
(
origin
,
pdu
.
event_id
)
existing
=
yield
self
.
_get_persisted_pdu
(
origin
,
pdu
.
event_id
,
do_auth
=
False
)
if
existing
and
(
not
existing
.
outlier
or
pdu
.
outlier
):
logger
.
debug
(
"
Already seen pdu %s
"
,
pdu
.
event_id
)
...
...
@@ -547,7 +551,11 @@ class ReplicationLayer(object):
if
min_depth
and
pdu
.
depth
>
min_depth
:
for
event_id
,
hashes
in
pdu
.
prev_events
:
exists
=
yield
self
.
_get_persisted_pdu
(
origin
,
event_id
)
exists
=
yield
self
.
_get_persisted_pdu
(
origin
,
event_id
,
do_auth
=
False
)
if
not
exists
:
logger
.
debug
(
"
Requesting pdu %s
"
,
event_id
)
...
...
This diff is collapsed.
Click to expand it.
synapse/handlers/federation.py
+
8
−
7
View file @
4bd0ab76
...
...
@@ -529,7 +529,7 @@ class FederationHandler(BaseHandler):
@defer.inlineCallbacks
@log_function
def
get_persisted_pdu
(
self
,
origin
,
event_id
):
def
get_persisted_pdu
(
self
,
origin
,
event_id
,
do_auth
=
True
):
"""
Get a PDU from the database with given origin and id.
Returns:
...
...
@@ -541,12 +541,13 @@ class FederationHandler(BaseHandler):
)
if
event
:
in_room
=
yield
self
.
auth
.
check_host_in_room
(
event
.
room_id
,
origin
)
if
not
in_room
:
raise
AuthError
(
403
,
"
Host not in room.
"
)
if
do_auth
:
in_room
=
yield
self
.
auth
.
check_host_in_room
(
event
.
room_id
,
origin
)
if
not
in_room
:
raise
AuthError
(
403
,
"
Host not in room.
"
)
defer
.
returnValue
(
event
)
else
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment