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
6b60f7dc
Commit
6b60f7dc
authored
7 years ago
by
Richard van der Hoff
Browse files
Options
Downloads
Patches
Plain Diff
Add more hooks to ModuleApi
add `get_user_by_req` and `invalidate_access_token`
parent
1189be43
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/module_api/__init__.py
+34
-0
34 additions, 0 deletions
synapse/module_api/__init__.py
with
34 additions
and
0 deletions
synapse/module_api/__init__.py
+
34
−
0
View file @
6b60f7dc
...
...
@@ -24,8 +24,26 @@ class ModuleApi(object):
self
.
hs
=
hs
self
.
_store
=
hs
.
get_datastore
()
self
.
_auth
=
hs
.
get_auth
()
self
.
_auth_handler
=
auth_handler
def
get_user_by_req
(
self
,
req
,
allow_guest
=
False
):
"""
Check the access_token provided for a request
Args:
req (twisted.web.server.Request): Incoming HTTP request
allow_guest (bool): True if guest users should be allowed. If this
is False, and the access token is for a guest user, an
AuthError will be thrown
Returns:
twisted.internet.defer.Deferred[synapse.types.Requester]:
the requester for this request
Raises:
synapse.api.errors.AuthError: if no user by that token exists,
or the token is invalid.
"""
return
self
.
_auth
.
get_user_by_req
(
req
,
allow_guest
)
def
get_qualified_user_id
(
self
,
username
):
"""
Qualify a user id, if necessary
...
...
@@ -63,6 +81,22 @@ class ModuleApi(object):
reg
=
self
.
hs
.
get_handlers
().
registration_handler
return
reg
.
register
(
localpart
=
localpart
)
def
invalidate_access_token
(
self
,
access_token
):
"""
Invalidate an access token for a user
Args:
access_token(str): access token
Returns:
twisted.internet.defer.Deferred - resolves once the access token
has been removed.
Raises:
synapse.api.errors.AuthError: the access token is invalid
"""
return
self
.
_auth_handler
.
delete_access_token
(
access_token
)
def
run_db_interaction
(
self
,
desc
,
func
,
*
args
,
**
kwargs
):
"""
Run a function with a database connection
...
...
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