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
Container Registry
Model registry
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
Maunium
synapse
Commits
0ff8163e
Commit
0ff8163e
authored
6 years ago
by
Erik Johnston
Browse files
Options
Downloads
Patches
Plain Diff
Factor out soft fail checks
parent
4c473ba0
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
synapse/handlers/federation.py
+22
-5
22 additions, 5 deletions
synapse/handlers/federation.py
with
22 additions
and
5 deletions
synapse/handlers/federation.py
+
22
−
5
View file @
0ff8163e
...
@@ -1847,6 +1847,28 @@ class FederationHandler(BaseHandler):
...
@@ -1847,6 +1847,28 @@ class FederationHandler(BaseHandler):
context
.
rejected
=
RejectedReason
.
AUTH_ERROR
context
.
rejected
=
RejectedReason
.
AUTH_ERROR
if
not
context
.
rejected
:
yield
self
.
_check_for_soft_fail
(
event
,
state
,
backfilled
)
if
event
.
type
==
EventTypes
.
GuestAccess
and
not
context
.
rejected
:
yield
self
.
maybe_kick_guest_users
(
event
)
defer
.
returnValue
(
context
)
@defer.inlineCallbacks
def
_check_for_soft_fail
(
self
,
event
,
state
,
backfilled
):
"""
Checks if we should soft fail the event, if so marks the event as
such.
Args:
event (FrozenEvent)
state (dict|None): The state at the event if we don
'
t have all the
event
'
s prev events
backfilled (bool): Whether the event is from backfill
Returns:
Deferred
"""
# For new (non-backfilled and non-outlier) events we check if the event
# For new (non-backfilled and non-outlier) events we check if the event
# passes auth based on the current state. If it doesn't then we
# passes auth based on the current state. If it doesn't then we
# "soft-fail" the event.
# "soft-fail" the event.
...
@@ -1918,11 +1940,6 @@ class FederationHandler(BaseHandler):
...
@@ -1918,11 +1940,6 @@ class FederationHandler(BaseHandler):
)
)
event
.
internal_metadata
.
soft_failed
=
True
event
.
internal_metadata
.
soft_failed
=
True
if
event
.
type
==
EventTypes
.
GuestAccess
and
not
context
.
rejected
:
yield
self
.
maybe_kick_guest_users
(
event
)
defer
.
returnValue
(
context
)
@defer.inlineCallbacks
@defer.inlineCallbacks
def
on_query_auth
(
self
,
origin
,
event_id
,
room_id
,
remote_auth_chain
,
rejects
,
def
on_query_auth
(
self
,
origin
,
event_id
,
room_id
,
remote_auth_chain
,
rejects
,
missing
):
missing
):
...
...
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