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
dc59ad53
Commit
dc59ad53
authored
6 years ago
by
Erik Johnston
Browse files
Options
Downloads
Patches
Plain Diff
Remove hack to support rejoining rooms
parent
30dd27af
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
synapse/handlers/federation.py
+42
-74
42 additions, 74 deletions
synapse/handlers/federation.py
with
42 additions
and
74 deletions
synapse/handlers/federation.py
+
42
−
74
View file @
dc59ad53
...
...
@@ -552,86 +552,54 @@ class FederationHandler(BaseHandler):
room_id
,
event_id
,
event
,
)
# FIXME (erikj): Awful hack to make the case where we are not currently
# in the room work
# If state and auth_chain are None, then we don't need to do this check
# as we already know we have enough state in the DB to handle this
# event.
if
state
and
auth_chain
and
not
event
.
internal_metadata
.
is_outlier
():
is_in_room
=
yield
self
.
auth
.
check_host_in_room
(
room_id
,
self
.
server_name
)
else
:
is_in_room
=
True
if
not
is_in_room
:
logger
.
info
(
"
[%s %s] Got event for room we
'
re not in
"
,
room_id
,
event_id
,
)
try
:
yield
self
.
_persist_auth_tree
(
origin
,
auth_chain
,
state
,
event
)
except
AuthError
as
e
:
raise
FederationError
(
"
ERROR
"
,
e
.
code
,
e
.
msg
,
affected
=
event_id
,
)
else
:
event_ids
=
set
()
if
state
:
event_ids
|=
{
e
.
event_id
for
e
in
state
}
if
auth_chain
:
event_ids
|=
{
e
.
event_id
for
e
in
auth_chain
}
event_ids
=
set
()
if
state
:
event_ids
|=
{
e
.
event_id
for
e
in
state
}
if
auth_chain
:
event_ids
|=
{
e
.
event_id
for
e
in
auth_chain
}
seen_ids
=
yield
self
.
store
.
have_seen_events
(
event_ids
)
seen_ids
=
yield
self
.
store
.
have_seen_events
(
event_ids
)
if
state
and
auth_chain
is
not
None
:
# If we have any state or auth_chain given to us by the replication
# layer, then we should handle them (if we haven't before.)
if
state
and
auth_chain
is
not
None
:
# If we have any state or auth_chain given to us by the replication
# layer, then we should handle them (if we haven't before.)
event_infos
=
[]
event_infos
=
[]
for
e
in
itertools
.
chain
(
auth_chain
,
state
):
if
e
.
event_id
in
seen_ids
:
continue
e
.
internal_metadata
.
outlier
=
True
auth_ids
=
e
.
auth_event_ids
()
auth
=
{
(
e
.
type
,
e
.
state_key
):
e
for
e
in
auth_chain
if
e
.
event_id
in
auth_ids
or
e
.
type
==
EventTypes
.
Create
}
event_infos
.
append
({
"
event
"
:
e
,
"
auth_events
"
:
auth
,
})
seen_ids
.
add
(
e
.
event_id
)
for
e
in
itertools
.
chain
(
auth_chain
,
state
):
if
e
.
event_id
in
seen_ids
:
continue
e
.
internal_metadata
.
outlier
=
True
auth_ids
=
e
.
auth_event_ids
()
auth
=
{
(
e
.
type
,
e
.
state_key
):
e
for
e
in
auth_chain
if
e
.
event_id
in
auth_ids
or
e
.
type
==
EventTypes
.
Create
}
event_infos
.
append
({
"
event
"
:
e
,
"
auth_events
"
:
auth
,
})
seen_ids
.
add
(
e
.
event_id
)
logger
.
info
(
"
[%s %s] persisting newly-received auth/state events %s
"
,
room_id
,
event_id
,
[
e
[
"
event
"
].
event_id
for
e
in
event_infos
]
)
yield
self
.
_handle_new_events
(
origin
,
event_infos
)
logger
.
info
(
"
[%s %s] persisting newly-received auth/state events %s
"
,
room_id
,
event_id
,
[
e
[
"
event
"
].
event_id
for
e
in
event_infos
]
)
yield
self
.
_handle_new_events
(
origin
,
event_infos
)
try
:
context
=
yield
self
.
_handle_new_event
(
origin
,
event
,
state
=
state
,
)
except
AuthError
as
e
:
raise
FederationError
(
"
ERROR
"
,
e
.
code
,
e
.
msg
,
affected
=
event
.
event_id
,
)
try
:
context
=
yield
self
.
_handle_new_event
(
origin
,
event
,
state
=
state
,
)
except
AuthError
as
e
:
raise
FederationError
(
"
ERROR
"
,
e
.
code
,
e
.
msg
,
affected
=
event
.
event_id
,
)
room
=
yield
self
.
store
.
get_room
(
room_id
)
...
...
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