Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Matrix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Operate
Environments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Matrix
Commits
1ef6084b
Commit
1ef6084b
authored
8 years ago
by
Patrik Oldsberg
Committed by
Mark Haines
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
handlers/room_member: fix guest access check when joining rooms
Signed-off-by:
Patrik Oldsberg
<
patrik.oldsberg@ericsson.com
>
parent
c18f7fc4
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/room_member.py
+6
-4
6 additions, 4 deletions
synapse/handlers/room_member.py
with
6 additions
and
4 deletions
synapse/handlers/room_member.py
+
6
−
4
View file @
1ef6084b
...
...
@@ -232,10 +232,12 @@ class RoomMemberHandler(BaseHandler):
is_host_in_room
=
yield
self
.
_is_host_in_room
(
current_state_ids
)
if
effective_membership_state
==
Membership
.
JOIN
:
if
requester
.
is_guest
and
not
self
.
_can_guest_join
(
current_state_ids
):
# This should be an auth check, but guests are a local concept,
# so don't really fit into the general auth process.
raise
AuthError
(
403
,
"
Guest access not allowed
"
)
if
requester
.
is_guest
:
guest_can_join
=
yield
self
.
_can_guest_join
(
current_state_ids
)
if
not
guest_can_join
:
# This should be an auth check, but guests are a local concept,
# so don't really fit into the general auth process.
raise
AuthError
(
403
,
"
Guest access not allowed
"
)
if
not
is_host_in_room
:
inviter
=
yield
self
.
get_inviter
(
target
.
to_string
(),
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